/* =============================================
   VajraMoves Studio - Main Stylesheet
   Mobile-first design
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;500;600;700&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;1,300&display=swap');

:root {
  /* Brand Colors - Inspired by VajraMoves dark, energetic aesthetic */
  --color-bg:           #0a0a0c;
  --color-surface:      #111116;
  --color-surface-2:    #18181f;
  --color-surface-3:    #22222c;
  --color-border:       #2a2a38;
  --color-border-light: #353547;

  --color-primary:      #e8c840;   /* Golden/saffron - Vajra lightning */
  --color-primary-dim:  #c4a830;
  --color-primary-glow: rgba(232, 200, 64, 0.15);
  --color-accent:       #ff5a36;   /* Energy red-orange */
  --color-accent-dim:   rgba(255, 90, 54, 0.15);

  --color-text:         #f0f0f0;
  --color-text-2:       #a0a0b8;
  --color-text-3:       #6060780;

  --color-success:      #34d399;
  --color-error:        #f87171;

  /* Typography */
  --font-display: 'Rajdhani', sans-serif;
  --font-body:    'DM Sans', sans-serif;

  /* Spacing */
  --nav-height: 60px;
  --bottom-bar-height: 64px;
  --border-radius: 12px;
  --border-radius-sm: 8px;
  --border-radius-lg: 20px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ---- Utility ---- */
.hidden { display: none !important; }
.page { display: none; min-height: 100vh; padding-top: var(--nav-height); padding-bottom: calc(var(--bottom-bar-height) + 16px); }
.page.active { display: block; }
.auth-page { padding-top: 0; padding-bottom: 0; }

/* ---- Top Nav ---- */
.top-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  background: rgba(10, 10, 12, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  z-index: 100;
  gap: 8px;
}
.top-nav .logo img { height: 20px; width: auto; flex-shrink: 0; }
.top-nav .logo .logo-text {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--color-primary);
}
.top-nav .logo .logo-text span { color: var(--color-text); }
/* Greeting in nav */
.nav-greeting {
  flex: 1;
  text-align: right;
  line-height: 1.2;
  padding-right: 4px;
  overflow: hidden;
}
.nav-greeting-text {
  display: block;
  font-size: 10px;
  color: var(--color-text-2);
  font-weight: 400;
  white-space: nowrap;
}
.nav-greeting-name {
  display: block;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--color-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.top-nav .nav-actions { display: flex; gap: 8px; align-items: center; flex-shrink: 0; }
.nav-icon-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--color-text-2);
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
}
.nav-icon-btn:hover { background: var(--color-surface-2); color: var(--color-text); }
/* WhatsApp icon green tint */
.nav-icon-btn.wa-btn { color: #25d366; }
.nav-icon-btn.wa-btn:hover { background: rgba(37,211,102,0.15); color: #25d366; }

/* ---- Bottom Navigation ---- */
.bottom-nav {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  height: var(--bottom-bar-height);
  background: rgba(17, 17, 22, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: space-around;
  z-index: 100;
  padding-bottom: env(safe-area-inset-bottom);
}
.nav-tab {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 8px 0;
  color: var(--color-text-2);
  transition: color 0.2s;
  position: relative;
}
.nav-tab svg { width: 22px; height: 22px; }
.nav-tab .tab-label { font-size: 11px; font-weight: 500; letter-spacing: 0.3px; }
.nav-tab.active { color: var(--color-primary); }
.nav-tab.active::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 32px; height: 2px;
  background: var(--color-primary);
  border-radius: 0 0 2px 2px;
}
/* WhatsApp tab — same style as other nav tabs, no special color */
.wa-tab {
  text-decoration: none;
  color: inherit;
}
.wa-tab:hover { color: var(--color-primary); }

/* ---- Auth Pages ---- */
.auth-container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 20px;
  background: var(--color-bg);
  position: relative;
  overflow: hidden;
}
.auth-container::before {
  content: '';
  position: absolute;
  top: -150px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(232,200,64,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.auth-container::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(255,90,54,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.auth-logo {
  margin-bottom: 36px;
  text-align: center;
}
.auth-logo img { height: 40px; margin: 0 auto 12px; }
.auth-logo .brand-name {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--color-primary);
}
.auth-logo .brand-name span { color: var(--color-text); }
.auth-logo .tagline { font-size: 13px; color: var(--color-text-2); margin-top: 4px; }
.auth-card {
  width: 100%;
  max-width: 400px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-lg);
  padding: 28px 24px;
  position: relative;
  z-index: 1;
}
.auth-card h2 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 6px;
}
.auth-card p.sub { font-size: 14px; color: var(--color-text-2); margin-bottom: 24px; }

/* ---- Form Elements ---- */
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text-2);
  margin-bottom: 6px;
  letter-spacing: 0.3px;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-sm);
  padding: 12px 14px;
  color: var(--color-text);
  font-size: 15px;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  appearance: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px var(--color-primary-glow);
}
.form-group input::placeholder { color: #555568; }
.form-group textarea { resize: vertical; min-height: 90px; }

/* Password toggle */
.input-wrap { position: relative; }
.input-wrap input { padding-right: 44px; }
.toggle-pw {
  position: absolute;
  right: 12px; top: 50%;
  transform: translateY(-50%);
  color: var(--color-text-2);
  padding: 4px;
}
.toggle-pw:hover { color: var(--color-text); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: var(--border-radius-sm);
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  transition: all 0.2s;
  width: 100%;
}
.btn-primary {
  background: var(--color-primary);
  color: #0a0a0c;
}
.btn-primary:hover { background: #f0d050; transform: translateY(-1px); }
.btn-primary:active { transform: translateY(0); }
.btn-outline {
  background: transparent;
  border: 1px solid var(--color-border);
  color: var(--color-text);
}
.btn-outline:hover { border-color: var(--color-primary); color: var(--color-primary); }
.btn-ghost {
  background: var(--color-surface-2);
  color: var(--color-text);
  border: 1px solid var(--color-border);
}
.btn-danger { background: var(--color-error); color: #fff; }
.btn-sm { padding: 8px 16px; font-size: 13px; width: auto; }

/* ---- Auth links ---- */
.auth-footer {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
  color: var(--color-text-2);
}
.auth-footer a { color: var(--color-primary); font-weight: 500; }
.auth-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 20px 0;
  color: var(--color-text-2);
  font-size: 12px;
}
.auth-divider::before, .auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--color-border);
}

/* ---- Alert / Toast ---- */
.alert {
  padding: 12px 14px;
  border-radius: var(--border-radius-sm);
  font-size: 14px;
  margin-bottom: 16px;
}
.alert-error { background: rgba(248,113,113,0.1); border: 1px solid rgba(248,113,113,0.3); color: #f87171; }
.alert-success { background: rgba(52,211,153,0.1); border: 1px solid rgba(52,211,153,0.3); color: #34d399; }

.toast {
  position: fixed;
  bottom: calc(var(--bottom-bar-height) + 16px);
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--color-surface-3);
  border: 1px solid var(--color-border);
  border-radius: 100px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
  white-space: nowrap;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ---- Section Header ---- */
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  padding: 0 16px;
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-primary);
}
.section-header a { font-size: 13px; color: var(--color-primary); font-weight: 500; }

/* ---- HOME PAGE ---- */
.home-hero { display: none; } /* removed - greeting moved to nav */

/* Metrics section label */
.metrics-section-label {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-primary);
  padding: 16px 16px 8px;
}

/* Metrics Cards */
.metrics-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 0 16px;
  margin-bottom: 20px;
}
.metrics-row-3 {
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
}
.metrics-row-3 .metric-card {
  padding: 12px 10px;
}
.metrics-row-3 .metric-value {
  font-size: 22px !important;
}
.metrics-row-3 .metric-label {
  font-size: 9px !important;
  letter-spacing: 0.3px;
}
.metrics-row-3 .metric-unit {
  font-size: 10px !important;
}
.metrics-row-3 .metric-icon {
  width: 26px !important;
  height: 26px !important;
  margin-bottom: 7px !important;
}
.activity-card {
  display: flex;
  flex-direction: column;
}
.weekly-bars-mini {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  height: 36px;
  flex: 1;
}
.weekly-bars-mini .day-bar { gap: 2px; }
.weekly-bars-mini .day-label { font-size: 7px; }
/* Browse category buttons */
.browse-section-btns {
  display: flex;
  gap: 6px;
  padding: 0 16px 16px;
  overflow-x: auto;
  scrollbar-width: none;
  flex-wrap: nowrap;
}
.browse-section-btns::-webkit-scrollbar { display: none; }
.browse-btn {
  flex: 0 0 auto;
  background: transparent;
  border: 1.5px solid var(--color-primary);
  border-radius: 20px;
  padding: 7px 12px;
  font-size: 11px;
  font-weight: 700;
  color: var(--color-primary);
  cursor: pointer;
  text-align: center;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
  letter-spacing: 0.3px;
}
.browse-btn:hover, .browse-btn:active,
.browse-btn.browse-btn-active {
  background: var(--color-primary);
  color: #0a0a0c;
}
/* Browse panels */
.browse-panel { }

/* What is VajraMoves intro card */
.vajra-intro-card {
  margin: 0 16px 24px;
  background: var(--color-surface);
  border: 1.5px solid var(--color-border-light);
  border-radius: var(--border-radius);
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.2s, transform 0.2s;
}
.vajra-intro-card:hover { border-color: var(--color-primary); transform: scale(1.01); }
.vajra-intro-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--color-surface-2);
  overflow: hidden;
}
.vajra-intro-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.vajra-play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 60px; height: 60px;
  background: rgba(0,0,0,0.65);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(4px);
  border: 2px solid rgba(255,255,255,0.3);
}
.vajra-intro-info {
  padding: 14px 16px;
}
.vajra-intro-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 4px;
}
.vajra-intro-sub {
  font-size: 13px;
  color: var(--color-text-2);
  line-height: 1.4;
}

.metric-card {
  background: var(--color-surface);
  border: 1.5px solid var(--color-border-light);
  border-radius: var(--border-radius);
  padding: 16px;
  transition: border-color 0.2s;
}
.metric-card:hover { border-color: var(--color-primary); }
.metric-card .metric-label {
  font-size: 11px;
  font-weight: 500;
  color: var(--color-text-2);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.metric-card .metric-value {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
}
.metric-card .metric-unit { font-size: 13px; color: var(--color-text-2); margin-top: 4px; }
.metric-card .metric-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: var(--color-primary-glow);
  display: flex; align-items: center; justify-content: center;
  color: var(--color-primary);
  margin-bottom: 10px;
}

/* Weekly activity chart */
.activity-chart {
  padding: 0 16px;
  margin-bottom: 24px;
}
.activity-chart .chart-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 14px;
}
.weekly-bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 80px;
}
.day-bar { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 6px; }
.day-bar .bar-wrap {
  flex: 1;
  width: 100%;
  background: var(--color-surface-2);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.day-bar .bar-fill {
  width: 100%;
  background: linear-gradient(180deg, var(--color-primary) 0%, var(--color-primary-dim) 100%);
  border-radius: 4px;
  transition: height 0.5s ease;
  min-height: 4px;
}
.day-bar .bar-fill.accent { background: linear-gradient(180deg, var(--color-accent) 0%, #c04020 100%); }
.day-bar .day-label { font-size: 10px; color: var(--color-text-2); font-weight: 500; }

/* ---- VIDEO CARDS ---- */
.videos-scroll {
  display: flex;
  gap: 12px;
  padding: 0 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  margin-bottom: 24px;
}
.videos-scroll::-webkit-scrollbar { display: none; }

.video-card-h {
  flex: 0 0 220px;
  scroll-snap-align: start;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: transform 0.2s, border-color 0.2s;
  cursor: pointer;
}
.video-card-h:hover { transform: scale(1.02); border-color: var(--color-border-light); }
.video-card-h .thumb {
  position: relative;
  aspect-ratio: 16/9;
  background: var(--color-surface-2);
  overflow: hidden;
}
.video-card-h .thumb img { width: 100%; height: 100%; object-fit: cover; }
.video-card-h .thumb .play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 40px; height: 40px;
  background: rgba(0,0,0,0.6);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  backdrop-filter: blur(4px);
}
.video-card-h .thumb .duration-badge {
  position: absolute;
  bottom: 6px; right: 6px;
  background: rgba(0,0,0,0.75);
  color: #fff;
  font-size: 11px;
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 500;
}
.video-card-h .card-info { padding: 10px 12px; }
.video-card-h .card-info .card-title {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.video-card-h .card-info .card-tags {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}
.tag {
  font-size: 10px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 100px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}
.tag-breathwork { background: rgba(52,211,153,0.15); color: #34d399; }
.tag-movement   { background: rgba(232,200,64,0.15);  color: var(--color-primary); }
.tag-hiit       { background: rgba(255,90,54,0.15);   color: var(--color-accent); }
.tag-cle        { background: rgba(139,92,246,0.15);  color: #a78bfa; }
.tag-meditation { background: rgba(56,189,248,0.15);  color: #38bdf8; }
.tag-default    { background: var(--color-surface-2); color: var(--color-text-2); }

/* ---- MOVES / Library page ---- */
.search-bar {
  padding: 12px 16px;
  position: sticky;
  top: var(--nav-height);
  background: var(--color-bg);
  z-index: 10;
  border-bottom: 1px solid var(--color-border);
}
.search-input-wrap {
  position: relative;
}
.search-input-wrap svg {
  position: absolute;
  left: 12px; top: 50%;
  transform: translateY(-50%);
  color: var(--color-text-2);
  width: 18px; height: 18px;
}
.search-input-wrap input {
  width: 100%;
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: 100px;
  padding: 10px 14px 10px 40px;
  color: var(--color-text);
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
}
.search-input-wrap input:focus { border-color: var(--color-primary); }

.filter-chips {
  display: flex;
  gap: 6px;
  padding: 12px 16px;
  overflow-x: auto;
  scrollbar-width: none;
  flex-wrap: nowrap;
}
.filter-chips::-webkit-scrollbar { display: none; }
/* Legacy chip style kept for compatibility */
.chip {
  flex: 0 0 auto;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  border: 1px solid var(--color-border);
  color: var(--color-text-2);
  background: var(--color-surface);
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.chip.active {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: var(--color-primary-glow);
}

.video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 0 12px 16px;
}

.video-card-v {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.2s, border-color 0.2s;
}
.video-card-v:hover { transform: scale(1.02); border-color: var(--color-border-light); }
.video-card-v .thumb {
  position: relative;
  aspect-ratio: 16/9;
  background: var(--color-surface-2);
  overflow: hidden;
}
.video-card-v .thumb img { width: 100%; height: 100%; object-fit: cover; }
.video-card-v .thumb .play-icon {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  color: rgba(255,255,255,0.85);
}
.video-card-v .thumb .duration-badge {
  position: absolute;
  bottom: 4px; right: 4px;
  background: rgba(0,0,0,0.75);
  color: #fff;
  font-size: 10px;
  padding: 1px 5px;
  border-radius: 3px;
}
.video-card-v .card-info { padding: 8px 10px; }
.video-card-v .card-info .card-title {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 5px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.video-card-v .card-info .card-tags { display: flex; gap: 3px; flex-wrap: wrap; }

/* ---- VIDEO PLAYER MODAL ---- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 0;
  overflow-y: auto;
  animation: fadeIn 0.2s ease;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.modal-close {
  position: fixed;
  top: 16px; right: 16px;
  z-index: 201;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(8px);
  transition: background 0.2s;
}
.modal-close:hover { background: rgba(255,255,255,0.2); }

.video-player-wrap {
  width: 100%;
  max-width: 700px;
  background: #000;
}
.video-player-wrap iframe {
  width: 100%;
  aspect-ratio: 16/9;
  border: none;
  display: block;
}
.video-modal-info {
  width: 100%;
  max-width: 700px;
  padding: 20px 16px;
}
.video-modal-info h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.3;
}
.video-modal-info .meta {
  display: flex;
  gap: 12px;
  align-items: center;
  color: var(--color-text-2);
  font-size: 13px;
  margin-bottom: 12px;
}
.video-modal-info .description { font-size: 14px; color: var(--color-text-2); line-height: 1.6; }

/* ---- PROFILE PAGE ---- */
.profile-header {
  padding: 24px 16px 20px;
  text-align: center;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 16px;
}
.avatar-wrap {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 12px;
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 700;
  color: #0a0a0c;
}
.profile-header h2 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
}
.profile-header .profile-email { font-size: 13px; color: var(--color-text-2); margin-top: 4px; }

.profile-section {
  padding: 0 16px;
  margin-bottom: 20px;
}
.profile-section h3 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--color-text-2);
  text-transform: uppercase;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--color-border);
}
.profile-form { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.profile-form .full-width { grid-column: 1 / -1; }

.stat-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--color-border);
}
.stat-row:last-child { border-bottom: none; }
.stat-row .stat-label { font-size: 14px; color: var(--color-text-2); }
.stat-row .stat-value { font-size: 14px; font-weight: 600; }

.profile-actions { padding: 0 16px 24px; display: flex; flex-direction: column; gap: 10px; }

/* ---- CONTRIBUTE VIDEO ---- */
.contribute-section { padding: 20px 16px; }
.contribute-section h2 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 6px;
}
.contribute-section p { font-size: 14px; color: var(--color-text-2); margin-bottom: 20px; line-height: 1.6; }

/* ---- EMPTY STATE ---- */
.empty-state {
  text-align: center;
  padding: 48px 24px;
  color: var(--color-text-2);
}
.empty-state svg { margin: 0 auto 16px; opacity: 0.4; }
.empty-state h3 { font-size: 16px; font-weight: 600; margin-bottom: 8px; color: var(--color-text); }
.empty-state p { font-size: 14px; }

/* ---- Scrollbar ---- */
::-webkit-scrollbar { width: 4px; height: 4px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--color-border); border-radius: 2px; }

/* ---- Animations ---- */
@keyframes slideUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate-up { animation: slideUp 0.4s ease both; }
.animate-up:nth-child(2) { animation-delay: 0.06s; }
.animate-up:nth-child(3) { animation-delay: 0.12s; }
.animate-up:nth-child(4) { animation-delay: 0.18s; }
