/* ============================================================
   TIKCLONE STYLESHEET
   Vanilla CSS Design System & Layout Rules
   ============================================================ */

/* ─── CSS Variables & Reset ───────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg-primary: #121212;
  --bg-secondary: #1a1a1a;
  --bg-card: #1e1e1e;
  --bg-card-hover: #252525;
  --bg-elevated: #2a2a2a;
  --bg-input: #2d2d2d;
  --border: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(255, 255, 255, 0.15);

  --text-primary: #f0f0f0;
  --text-secondary: #a0a0a0;
  --text-muted: #666666;

  --tiktok-red: #EE1D52;
  --tiktok-cyan: #69C9D0;
  --accent-gradient: linear-gradient(135deg, #EE1D52, #ff6b9d);
  --cyan-gradient: linear-gradient(135deg, #20d5ec, #69C9D0);

  --nav-height: 60px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.6);
  --shadow-glow-red: 0 0 20px rgba(238, 29, 82, 0.35);

  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 14px;
  line-height: 1.5;
  min-height: 100vh;
  overflow-x: hidden;
}

.hidden {
  display: none !important;
}

/* ─── Custom Scrollbar ─────────────────────────────────────── */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: var(--bg-elevated);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--text-muted);
}

/* ─── Navbar ──────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-height);
  background: rgba(18, 18, 18, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  user-select: none;
}

.logo-icon {
  width: 32px;
  height: 32px;
  filter: drop-shadow(0 0 6px rgba(238, 29, 82, 0.4));
}

.logo-text {
  font-size: 20px;
  font-weight: 800;
  background: linear-gradient(135deg, #69C9D0, #fff, #EE1D52);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.5px;
}

.nav-search {
  flex: 1;
  max-width: 380px;
  margin-left: 20px;
}

.search-form {
  display: flex;
  align-items: center;
  background: var(--bg-input);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.search-form:focus-within {
  border-color: var(--tiktok-cyan);
  box-shadow: 0 0 0 3px rgba(105, 201, 208, 0.15);
}

.search-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--text-primary);
  font-size: 14px;
  padding: 8px 16px;
  font-family: inherit;
}

.search-input::placeholder {
  color: var(--text-muted);
}

.search-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px 14px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  transition: color var(--transition);
}

.search-btn svg {
  width: 18px;
  height: 18px;
}

.search-btn:hover {
  color: var(--tiktok-cyan);
}

.nav-actions {
  margin-left: auto;
}

.api-key-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  color: var(--text-secondary);
  font-size: 13px;
  padding: 8px 16px;
  cursor: pointer;
  transition: all var(--transition);
}

.api-key-btn svg {
  width: 15px;
  height: 15px;
}

.api-key-btn:hover {
  border-color: var(--tiktok-cyan);
  color: var(--tiktok-cyan);
}

.api-key-btn.has-key {
  border-color: #22c55e;
  color: #22c55e;
  background: rgba(34, 197, 94, 0.05);
}

/* ─── Main Layout ─────────────────────────────────────────── */
.main-content {
  padding-top: var(--nav-height);
  min-height: 100vh;
}

/* ─── Hero Section ────────────────────────────────────────── */
.hero-section {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - var(--nav-height));
  position: relative;
  overflow: hidden;
  padding: 40px 24px;
}

.hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(238, 29, 82, 0.06) 0%, rgba(105, 201, 208, 0.04) 50%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 640px;
}

.hero-logo-big {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  animation: float 3s ease-in-out infinite;
}

.hero-logo-big svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 16px rgba(238, 29, 82, 0.35));
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.hero-title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  letter-spacing: -1.5px;
  background: linear-gradient(135deg, #fff 0%, #d0d0d0 50%, #EE1D52 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
  line-height: 1.15;
}

.hero-subtitle {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 32px;
  line-height: 1.6;
}

.hero-search {
  display: flex;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.hero-search:focus-within {
  border-color: var(--tiktok-cyan);
  box-shadow: var(--shadow-lg), 0 0 0 3px rgba(105, 201, 208, 0.15);
}

.hero-search-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--text-primary);
  font-size: 15px;
  padding: 14px 20px;
  font-family: inherit;
  min-width: 0;
}

.hero-search-input::placeholder {
  color: var(--text-muted);
}

.hero-search-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-gradient);
  border: none;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  padding: 0 24px;
  cursor: pointer;
  transition: opacity var(--transition);
}

.hero-search-btn:hover {
  opacity: 0.9;
}

.hero-search-btn svg {
  width: 18px;
  height: 18px;
}

.hero-examples {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
  flex-wrap: wrap;
  color: var(--text-muted);
  font-size: 13px;
}

.example-chip {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  color: var(--text-secondary);
  font-size: 13px;
  padding: 4px 12px;
  cursor: pointer;
  transition: all var(--transition);
}

.example-chip:hover {
  border-color: var(--tiktok-cyan);
  color: var(--tiktok-cyan);
  background: rgba(105, 201, 208, 0.08);
}

/* ─── Profile Header ──────────────────────────────────────── */
.profile-section {
  max-width: 1000px;
  margin: 0 auto;
  padding: 24px 24px 80px;
}

.profile-header {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-bottom: 24px;
  box-shadow: var(--shadow-md);
}

.profile-cover {
  height: 140px;
  background: linear-gradient(135deg, #180d12, #0d151c, #09121a);
  position: relative;
}

.profile-info-wrap {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 0 32px 24px;
  flex-wrap: wrap;
}

.profile-avatar-wrap {
  position: relative;
  margin-top: -50px;
  flex-shrink: 0;
  cursor: pointer;
}

.avatar-download-overlay {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
  color: #fff;
  z-index: 2;
}

.profile-avatar-wrap:hover .avatar-download-overlay {
  opacity: 1;
}

.avatar-download-overlay svg {
  width: 24px;
  height: 24px;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
}

.profile-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 4px solid var(--bg-secondary);
  object-fit: cover;
  background: var(--bg-elevated);
}

.avatar-ring {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid transparent;
  background: linear-gradient(135deg, #EE1D52, #69C9D0) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  pointer-events: none;
}

.profile-details {
  flex: 1;
  padding-top: 12px;
  min-width: 280px;
}

.profile-names {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.profile-nickname {
  font-size: 24px;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.5px;
}

.profile-username {
  font-size: 15px;
  color: var(--text-secondary);
}

.verified-badge {
  display: flex;
  align-items: center;
}

.verified-badge svg {
  width: 18px;
  height: 18px;
}

.profile-stats {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  align-items: baseline;
  gap: 6px;
  padding: 4px 0;
  transition: opacity var(--transition);
}

.stat-item.clickable {
  cursor: pointer;
}

.stat-item.clickable:hover .stat-num {
  color: var(--tiktok-cyan);
  text-shadow: 0 0 8px rgba(105, 201, 208, 0.3);
}

.stat-item.clickable:hover .stat-label {
  color: #fff;
}

.stat-num {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  transition: color var(--transition);
}

.stat-label {
  font-size: 13px;
  color: var(--text-secondary);
  transition: color var(--transition);
}

.stat-divider {
  width: 1px;
  height: 16px;
  background: var(--border);
  margin: 0 16px;
}

.profile-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.btn-follow {
  background: var(--accent-gradient);
  border: none;
  border-radius: var(--radius-full);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 8px 24px;
  cursor: pointer;
  box-shadow: var(--shadow-glow-red);
  transition: all var(--transition);
}

.btn-follow:hover {
  opacity: 0.95;
  transform: translateY(-1px);
}

.btn-message {
  background: var(--bg-elevated);
  border: 1px solid var(--border-hover);
  border-radius: var(--radius-full);
  color: var(--text-primary);
  font-size: 14px;
  font-weight: 600;
  padding: 8px 20px;
  cursor: pointer;
  transition: all var(--transition);
}

.btn-message:hover {
  background: var(--bg-card);
  border-color: var(--text-secondary);
}

.btn-icon-round {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-elevated);
  border: 1px solid var(--border-hover);
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.btn-icon-round svg {
  width: 16px;
  height: 16px;
}

.btn-icon-round:hover {
  background: var(--bg-card);
  border-color: var(--text-secondary);
}

.profile-bio {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
  max-width: 540px;
  word-break: break-word;
}

/* ─── Profile Tabs ────────────────────────────────────────── */
.profile-tabs {
  display: flex;
  border-top: 1px solid var(--border);
  padding: 0 24px;
}

.tab-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 600;
  padding: 14px 20px;
  cursor: pointer;
  transition: all var(--transition);
  margin-bottom: -1px;
}

.tab-btn svg {
  width: 16px;
  height: 16px;
}

.tab-btn:hover {
  color: var(--text-primary);
}

.tab-btn.active {
  color: var(--text-primary);
  border-bottom-color: var(--text-primary);
}

/* ─── Videos Grid ─────────────────────────────────────────── */
.videos-section {
  position: relative;
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 6px;
  margin-bottom: 24px;
}

/* Video Card */
.video-card {
  position: relative;
  aspect-ratio: 9/16;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  background: var(--bg-card);
  transition: transform var(--transition);
}

.video-card:hover {
  transform: translateY(-2px);
  z-index: 1;
}

.video-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.video-card:hover .video-thumb {
  transform: scale(1.04);
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-card:hover .video-overlay {
  opacity: 1;
}

.play-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0.9);
  transition: transform var(--transition);
}

.video-card:hover .play-icon {
  transform: scale(1);
}

.play-icon svg {
  width: 20px;
  height: 20px;
  fill: #fff;
  margin-left: 2px;
}

.video-views {
  position: absolute;
  bottom: 8px;
  left: 8px;
  display: flex;
  align-items: center;
  gap: 4px;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
}

.video-views svg {
  width: 13px;
  height: 13px;
}

.video-pinned-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: rgba(238, 29, 82, 0.95);
  border-radius: 4px;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ─── Video Count & Load Buttons ─────────────────────────── */
.videos-count-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 16px;
  background: rgba(105, 201, 208, 0.08);
  border: 1px solid rgba(105, 201, 208, 0.15);
  border-radius: var(--radius-md);
  max-width: fit-content;
  margin: 0 auto 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--tiktok-cyan);
}

.load-more-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 24px 0;
}

.load-more-btn {
  background: var(--bg-elevated);
  border: 1px solid var(--border-hover);
  border-radius: var(--radius-full);
  color: var(--text-primary);
  font-size: 14px;
  font-weight: 600;
  padding: 10px 28px;
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.load-more-btn:hover {
  background: var(--bg-card-hover);
  border-color: var(--tiktok-cyan);
  color: var(--tiktok-cyan);
}

.load-all-btn {
  background: var(--cyan-gradient);
  border: none;
  border-radius: var(--radius-full);
  color: #121212;
  font-size: 14px;
  font-weight: 700;
  padding: 11px 28px;
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.load-all-btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

/* ─── Empty & Loading Skeleton ────────────────────────────── */
.empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
  color: var(--text-secondary);
  gap: 12px;
}

.empty-state svg {
  width: 44px;
  height: 44px;
  color: var(--text-muted);
}

.skeleton {
  background: linear-gradient(90deg, var(--bg-card) 25%, var(--bg-elevated) 50%, var(--bg-card) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--radius-sm);
}

.skeleton-card {
  aspect-ratio: 9/16;
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.lm-spin {
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 2px solid currentColor;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

/* ─── Video Modal ─────────────────────────────────────────── */
.vm-backdrop {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: modal-fade var(--transition);
}

@keyframes modal-fade {
  from { opacity: 0; }
  to { opacity: 1; }
}

.vm-container {
  display: flex;
  width: 100%;
  max-width: 1000px;
  height: calc(100vh - 60px);
  max-height: 800px;
  background: var(--bg-secondary);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  animation: modal-slide var(--transition-slow) cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes modal-slide {
  from { transform: scale(0.95) translateY(12px); }
  to { transform: scale(1) translateY(0); }
}

/* Left side - Player */
.vm-player-side {
  position: relative;
  width: 55%;
  height: 100%;
  background: #000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.vm-topbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 60px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 10;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.85) 0%, transparent 100%);
}

.vm-close-btn, .vm-more-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
}

.vm-close-btn:hover {
  background: var(--tiktok-red);
  transform: scale(1.05);
}

.vm-more-btn:hover {
  background: rgba(255, 255, 255, 0.15);
}

.vm-close-btn svg, .vm-more-btn svg {
  width: 18px;
  height: 18px;
}

.vm-search-bar {
  flex: 1;
  margin: 0 16px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  padding: 0 16px;
  gap: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  user-select: none;
}

.vm-search-bar svg {
  width: 14px;
  height: 14px;
}

.vm-video-wrap {
  position: relative;
  flex: 1;
  width: 100%;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  will-change: transform;
  backface-visibility: hidden;
  perspective: 1000px;
  transform: translate3d(0, 0, 0);
}

.vm-video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  cursor: pointer;
}

.vm-play-overlay {
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transform: scale(1.2);
  transition: all 0.2s ease;
  z-index: 5;
}

.vm-play-overlay.show {
  opacity: 1;
  transform: scale(1);
}

.vm-play-overlay svg {
  width: 24px;
  height: 24px;
  fill: #fff;
  margin-left: 3px;
}

.vm-nav-btn {
  position: absolute;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 15;
  transition: all var(--transition);
}

.vm-nav-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--tiktok-cyan);
  border-color: var(--tiktok-cyan);
  transform: scale(1.05);
}

.vm-nav-prev {
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
}

.vm-nav-next {
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
}

.vm-scroll-hint {
  display: none;
}

/* Custom progress bar & controls */
.vm-controls {
  width: 100%;
  background: rgba(18, 18, 18, 0.95);
  border-top: 1px solid var(--border);
  padding: 12px 20px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.vm-progress-wrap {
  padding: 6px 0;
  cursor: pointer;
}

.vm-progress-bg {
  position: relative;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  transition: height 0.15s ease;
}

.vm-progress-wrap:hover .vm-progress-bg {
  height: 6px;
}

.vm-progress-fill {
  height: 100%;
  width: 0%;
  background: var(--tiktok-red);
  border-radius: 2px;
  transition: width 0.05s linear;
}

.vm-progress-thumb {
  position: absolute;
  top: 50%;
  left: 0%;
  width: 12px;
  height: 12px;
  background: #fff;
  border-radius: 50%;
  border: 2px solid var(--tiktok-red);
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.15s ease, left 0.05s linear;
}

.vm-progress-wrap:hover .vm-progress-thumb {
  transform: translate(-50%, -50%) scale(1);
}

.vm-controls-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.vm-ctrl-btn {
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  border-radius: 50%;
  transition: all var(--transition);
}

.vm-ctrl-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--tiktok-cyan);
}

.vm-ctrl-btn svg {
  width: 20px;
  height: 20px;
}

.vm-time {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  margin-left: 12px;
  font-variant-numeric: tabular-nums;
  flex: 1;
}

.vm-ctrl-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Right side - Info */
.vm-info-side {
  width: 45%;
  height: 100%;
  background: var(--bg-secondary);
  border-left: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.vm-user-row {
  display: flex;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
}

.vm-user-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 12px;
  border: 1px solid var(--border);
}

.vm-user-meta {
  flex: 1;
  min-width: 0;
}

.vm-user-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.vm-user-sub {
  font-size: 12px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 4px;
}

.vm-dot {
  color: var(--text-muted);
}

.vm-follow-btn {
  background: var(--tiktok-red);
  border: none;
  border-radius: var(--radius-sm);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 16px;
  cursor: pointer;
  transition: opacity var(--transition);
}

.vm-follow-btn:hover {
  opacity: 0.9;
}

.vm-follow-btn.following {
  background: var(--bg-elevated);
  border: 1px solid var(--border-hover);
  color: var(--text-primary);
}

.vm-desc {
  padding: 16px 24px 8px;
  font-size: 14px;
  color: var(--text-primary);
  line-height: 1.5;
  margin: 0;
  word-break: break-word;
}

.vm-music-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 24px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
}

.vm-music-row svg {
  width: 14px;
  height: 14px;
  color: var(--text-secondary);
}

.vm-music-row:hover {
  text-decoration: underline;
}

.vm-stats-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
}

.vm-stat-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
}

.vm-stat-chip svg {
  width: 16px;
  height: 16px;
  color: rgba(255, 255, 255, 0.65);
}

.vm-link-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 16px 24px;
  background: var(--bg-input);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
}

.vm-link-text {
  font-size: 12px;
  color: var(--text-secondary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
  margin-right: 12px;
}

.vm-copy-btn {
  background: none;
  border: none;
  color: var(--tiktok-cyan);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: color var(--transition);
}

.vm-copy-btn:hover {
  color: #fff;
}

.vm-tabs {
  display: flex;
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
}

.vm-tab {
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 13.5px;
  font-weight: 600;
  padding: 12px 16px 10px;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: all var(--transition);
}

.vm-tab:hover {
  color: var(--text-primary);
}

.vm-tab.active {
  color: var(--text-primary);
  border-bottom-color: var(--text-primary);
}

.vm-tab-count {
  font-size: 11.5px;
  color: var(--text-muted);
  font-weight: 400;
  margin-left: 2px;
}

.vm-comments-wrap, .vm-creator-wrap {
  flex: 1;
  overflow-y: auto;
  padding: 16px 24px;
}

.vm-comments-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cm-placeholder {
  color: var(--text-secondary);
  font-size: 13.5px;
  text-align: center;
  padding: 40px 0;
}

.cm-spin {
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 2px solid var(--border);
  border-top-color: var(--tiktok-cyan);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin-right: 6px;
  vertical-align: middle;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.comment-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.comment-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--bg-elevated);
  flex-shrink: 0;
  border: 1px solid var(--border);
}

.comment-content {
  flex: 1;
  min-width: 0;
}

.comment-name {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}

.comment-text {
  font-size: 13px;
  color: var(--text-primary);
  line-height: 1.4;
  word-break: break-word;
}

.comment-likes {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  color: var(--text-secondary);
  margin-top: 6px;
}

.comment-likes svg {
  width: 11px;
  height: 11px;
}

.vm-creator-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}

.vm-creator-card {
  position: relative;
  aspect-ratio: 9/16;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  background: var(--bg-card);
}

.vm-creator-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.vm-comment-footer {
  padding: 16px 24px;
  border-top: 1px solid var(--border);
  background: var(--bg-secondary);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-secondary);
  cursor: pointer;
}

.vm-comment-footer:hover {
  background: var(--bg-card-hover);
}

.vm-comment-footer svg {
  width: 16px;
  height: 16px;
}

/* ─── Connections Modal (Followers/Following) ─────────────── */
.conn-backdrop {
  position: fixed;
  inset: 0;
  z-index: 250;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.conn-container {
  width: 100%;
  max-width: 440px;
  background: var(--bg-secondary);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  max-height: calc(100vh - 120px);
  animation: modal-slide var(--transition) ease;
}

.conn-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
}

.conn-header h2 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}

.conn-close-btn {
  background: none;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  transition: all var(--transition);
}

.conn-close-btn:hover {
  background: var(--bg-elevated);
  color: #fff;
}

.conn-close-btn svg {
  width: 18px;
  height: 18px;
}

.conn-search-wrap {
  position: relative;
  padding: 12px 20px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
}

.conn-search-icon {
  position: absolute;
  left: 32px;
  width: 16px;
  height: 16px;
  color: var(--text-secondary);
  pointer-events: none;
}

.conn-search-input {
  width: 100%;
  background: var(--bg-input);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 8px 12px 8px 36px;
  color: #fff;
  font-size: 14px;
  outline: none;
  transition: border-color var(--transition);
  font-family: inherit;
}

.conn-search-input:focus {
  border-color: var(--tiktok-cyan);
}

.conn-list-wrap {
  flex: 1;
  overflow-y: auto;
  padding: 8px 0;
}

.conn-list {
  display: flex;
  flex-direction: column;
}

.conn-user-row {
  display: flex;
  align-items: center;
  padding: 10px 20px;
  transition: background var(--transition);
  cursor: pointer;
  text-decoration: none;
}

.conn-user-row:hover {
  background: var(--bg-card-hover);
}

.conn-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 12px;
  border: 1px solid var(--border);
}

.conn-info {
  flex: 1;
  min-width: 0;
  margin-right: 12px;
}

.conn-name-row {
  display: flex;
  align-items: center;
  gap: 4px;
}

.conn-name {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.conn-handle {
  font-size: 12px;
  color: var(--text-secondary);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.conn-follow-btn {
  background: var(--tiktok-red);
  border: none;
  border-radius: var(--radius-sm);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  cursor: pointer;
  transition: all var(--transition);
}

.conn-follow-btn.following {
  background: var(--bg-elevated);
  border: 1px solid var(--border-hover);
  color: #fff;
}

.conn-placeholder {
  padding: 40px 20px;
  text-align: center;
  color: var(--text-secondary);
  font-size: 14px;
}

/* ─── Toast Alert ─────────────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  color: var(--text-primary);
  font-size: 14px;
  font-weight: 500;
  padding: 12px 24px;
  z-index: 400;
  opacity: 0;
  transition: all var(--transition);
  pointer-events: none;
  white-space: nowrap;
  box-shadow: var(--shadow-lg);
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ─── Loading Overlay ─────────────────────────────────────── */
.loading-overlay {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(18, 18, 18, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.loading-spinner {
  width: 48px;
  height: 48px;
  border: 3px solid var(--border);
  border-top-color: var(--tiktok-red);
  border-right-color: var(--tiktok-cyan);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

/* Mobile actions and details overlays hidden on desktop */
.vm-mobile-actions,
.vm-mobile-details,
.vm-sheet-header {
  display: none !important;
}

/* ─── Responsive Media Queries ────────────────────────────── */
@media (max-width: 768px) {
  .nav-search {
    display: none;
  }
  .nav-inner {
    padding: 0 16px;
  }

  .hero-search {
    flex-direction: column;
    border-radius: var(--radius-lg);
  }
  .hero-search-input {
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
  }
  .hero-search-btn {
    padding: 12px 20px;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    justify-content: center;
  }

  .profile-info-wrap {
    gap: 16px;
    padding: 0 16px 16px;
  }
  .profile-avatar {
    width: 80px;
    height: 80px;
  }
  .profile-details {
    padding-top: 8px;
  }
  .profile-nickname {
    font-size: 20px;
  }

  .videos-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
  }

  .load-more-wrap {
    flex-direction: column;
    gap: 10px;
  }
  .load-all-btn, .load-more-btn {
    width: 100%;
    justify-content: center;
  }

  /* Dual Layout Stack: Mobile Full Screen (Stacked with overlay controls) */
  .vm-backdrop {
    padding: 0;
  }
  .vm-container {
    flex-direction: column;
    width: 100vw;
    height: 100dvh;
    max-height: 100dvh;
    border-radius: 0;
    border: none;
    position: relative;
  }
  .vm-player-side {
    width: 100%;
    height: 100%;
    flex: 1;
    position: relative;
  }
  
  /* Comments Bottom Sheet sliding up from bottom on mobile */
  .vm-info-side {
    display: flex !important;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 65%;
    border-left: none;
    border-top: 1px solid var(--border);
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    transform: translateY(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 30;
    background: var(--bg-secondary);
  }
  
  .vm-info-side.open {
    transform: translateY(0);
  }

  .vm-nav-btn {
    display: none !important;
  }
  
  .vm-scroll-hint {
    display: none !important; /* Hide scroll hint to allow actions view */
  }

  /* Absolute overlays on mobile */
  .vm-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
    border-top: none;
    z-index: 11;
    padding: 12px 16px 24px;
  }

  /* Mobile Actions Column overlay */
  .vm-mobile-actions {
    display: flex !important;
    position: absolute;
    right: 12px;
    bottom: 110px;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    z-index: 12;
  }
  .vma-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    cursor: pointer;
  }
  .vma-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition);
  }
  .vma-btn:active {
    transform: scale(0.9);
    background: rgba(255, 255, 255, 0.2);
  }
  .vma-btn svg {
    width: 22px;
    height: 22px;
  }
  .vma-count {
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
  }
  .vma-avatar-wrap {
    position: relative;
    width: 44px;
    height: 44px;
    margin-bottom: 6px;
  }
  .vma-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid #fff;
    object-fit: cover;
  }
  .vma-plus-icon {
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--tiktok-red);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
  }
  .vma-plus-icon svg {
    width: 10px;
    height: 10px;
  }

  /* Mobile bottom left details */
  .vm-mobile-details {
    display: flex !important;
    position: absolute;
    left: 16px;
    bottom: 100px;
    right: 80px;
    flex-direction: column;
    gap: 6px;
    z-index: 12;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
    pointer-events: none;
  }
  .vmd-username {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    pointer-events: auto;
    cursor: pointer;
  }
  .vmd-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    pointer-events: auto;
  }
  .vmd-music {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    pointer-events: auto;
    cursor: pointer;
  }
  .vmd-music svg {
    width: 14px;
    height: 14px;
  }

  /* Mobile Sheet close header */
  .vm-sheet-header {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px 10px;
    border-bottom: 1px solid var(--border);
    position: relative;
    background: var(--bg-secondary);
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    flex-shrink: 0;
  }
  .vm-sheet-handle {
    width: 36px;
    height: 4px;
    background: var(--border-hover);
    border-radius: 2px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 6px;
  }
  .vm-sheet-title {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    width: 100%;
  }
  .vm-sheet-close {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    transition: all var(--transition);
  }
  .vm-sheet-close svg {
    width: 16px;
    height: 16px;
  }

  .vm-user-row {
    padding: 12px 16px;
  }
  .vm-desc {
    padding: 8px 16px 4px;
  }
  .vm-music-row {
    padding: 0 16px 12px;
  }
  .vm-stats-row {
    padding: 8px 16px;
  }
  .vm-link-row {
    margin: 10px 16px;
  }
  .vm-tabs {
    padding: 0 16px;
  }
  .vm-comments-wrap, .vm-creator-wrap {
    padding: 12px 16px;
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-6px); }
  60% { transform: translateX(-50%) translateY(-3px); }
}

@media (max-width: 480px) {
  .videos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .profile-stats {
    gap: 8px;
  }
  .stat-divider {
    margin: 0 4px;
  }
  .tab-btn {
    padding: 12px 10px;
    font-size: 13px;
  }
}

/* ─── Video modal sliding transition animations ────────────── */
@keyframes slideUpOut {
  0% { transform: translate3d(0, 0, 0); opacity: 0.9; }
  100% { transform: translate3d(0, -100%, 0); opacity: 0; }
}
@keyframes slideUpIn {
  0% { transform: translate3d(0, 100%, 0); opacity: 0; }
  100% { transform: translate3d(0, 0, 0); opacity: 1; }
}
@keyframes slideDownOut {
  0% { transform: translate3d(0, 0, 0); opacity: 0.9; }
  100% { transform: translate3d(0, 100%, 0); opacity: 0; }
}
@keyframes slideDownIn {
  0% { transform: translate3d(0, -100%, 0); opacity: 0; }
  100% { transform: translate3d(0, 0, 0); opacity: 1; }
}

.slide-up-out {
  animation: slideUpOut 0.32s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}
.slide-up-in {
  animation: slideUpIn 0.32s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}
.slide-down-out {
  animation: slideDownOut 0.32s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}
.slide-down-in {
  animation: slideDownIn 0.32s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.vm-video {
  /* No transitions to prevent rendering engine conflicts during keyframe animations */
}

/* ─── Search History Dropdown (Navbar) ─────────────────────── */
.search-history-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  z-index: 110;
  overflow: hidden;
}

.search-history-dropdown.hidden {
  display: none !important;
}

.sh-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
}

.sh-clear {
  background: none;
  border: none;
  color: var(--tiktok-red);
  cursor: pointer;
  font-weight: 700;
  font-size: 11px;
  transition: opacity var(--transition);
}

.sh-clear:hover {
  opacity: 0.8;
}

.sh-list {
  max-height: 200px;
  overflow-y: auto;
}

.sh-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 14px;
  cursor: pointer;
  transition: background var(--transition);
  color: var(--text-primary);
  font-size: 13.5px;
}

.sh-item:hover {
  background: var(--bg-card-hover);
}

.sh-item-name {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.sh-item-name span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sh-item-name svg {
  width: 14px;
  height: 14px;
  color: var(--text-muted);
  flex-shrink: 0;
}

.sh-remove {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all var(--transition);
}

.sh-remove:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--tiktok-red);
}

.sh-remove svg {
  width: 12px;
  height: 12px;
}

/* ─── Search History Chips (Hero Page) ─────────────────────── */
.hero-history {
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-secondary);
}

.history-chips {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  align-items: center;
}

.clear-history-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  padding: 4px;
  border-radius: 50%;
  transition: all var(--transition);
}

.clear-history-btn:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--tiktok-red);
}

.clear-history-btn svg {
  width: 14px;
  height: 14px;
}
