@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  --bg-primary:    #0a0a0f;
  --bg-secondary:  #111118;
  --bg-card:       #16161f;
  --bg-elevated:   #1e1e2a;
  --accent:        #e50914;
  --accent-hover:  #ff0f1a;
  --accent-dim:    rgba(229,9,20,0.15);
  --gold:          #f5c518;
  --text-primary:  #f0f0f5;
  --text-secondary:#9999b3;
  --text-muted:    #55556a;
  --border:        rgba(255,255,255,0.07);
  --border-hover:  rgba(255,255,255,0.15);
  --shadow-lg:     0 20px 60px rgba(0,0,0,0.8);
  --shadow-card:   0 4px 24px rgba(0,0,0,0.5);
  --radius-sm:     6px;
  --radius-md:     12px;
  --radius-lg:     20px;
  --font-display:  'Bebas Neue', sans-serif;
  --font-body:     'Outfit', sans-serif;
  --transition:    all 0.25s cubic-bezier(0.4,0,0.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.6;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }

/* ── NAVBAR ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 40px;
  height: 68px;
  display: flex; align-items: center; justify-content: space-between;
  background: linear-gradient(to bottom, rgba(10,10,15,0.98) 0%, rgba(10,10,15,0) 100%);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(10,10,15,0.98);
  border-bottom-color: var(--border);
}
.navbar-brand {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 3px;
  color: var(--accent);
  text-decoration: none;
  text-transform: uppercase;
}
.navbar-brand span { color: var(--text-primary); }
.navbar-nav {
  display: flex; align-items: center; gap: 8px;
  list-style: none;
}
.navbar-nav a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.navbar-nav a:hover, .navbar-nav a.active {
  color: var(--text-primary);
  background: var(--border);
}
.navbar-actions { display: flex; align-items: center; gap: 12px; }
.btn-login {
  color: var(--text-primary);
  background: transparent;
  border: 1px solid var(--border-hover);
  padding: 8px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
}
.btn-login:hover { border-color: var(--accent); color: var(--accent); }
.btn-subscribe {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 8px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
}
.btn-subscribe:hover { background: var(--accent-hover); transform: translateY(-1px); }

.user-menu { position: relative; }
.user-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.9rem; cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  overflow: hidden;
}
.user-avatar:hover { border-color: var(--accent); }
.user-avatar img { width: 100%; height: 100%; object-fit: cover; }
.dropdown-menu {
  position: absolute; top: calc(100% + 12px); right: 0;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 8px;
  min-width: 200px;
  box-shadow: var(--shadow-lg);
  opacity: 0; pointer-events: none;
  transform: translateY(-8px);
  transition: var(--transition);
}
.user-menu:hover .dropdown-menu { opacity: 1; pointer-events: all; transform: translateY(0); }
.dropdown-menu a {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.875rem;
  transition: var(--transition);
}
.dropdown-menu a:hover { color: var(--text-primary); background: var(--border); }
.dropdown-menu .dropdown-divider { height: 1px; background: var(--border); margin: 6px 0; }

/* ── HERO ── */
.hero {
  position: relative; height: 90vh; min-height: 600px;
  display: flex; align-items: flex-end;
  padding: 0 60px 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center top;
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    to right, rgba(10,10,15,0.95) 30%, rgba(10,10,15,0.3) 70%, transparent 100%
  ),
  linear-gradient(to top, rgba(10,10,15,1) 0%, transparent 50%);
}
.hero-content { position: relative; z-index: 2; max-width: 600px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent);
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 1;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.hero-meta {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 16px;
  font-size: 0.875rem;
  color: var(--text-secondary);
}
.hero-meta .rating { color: var(--gold); font-weight: 700; }
.hero-desc {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 480px;
}
.hero-actions { display: flex; gap: 12px; }
.btn-play {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--text-primary);
  color: var(--bg-primary);
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
  border: none; cursor: pointer; font-family: var(--font-body);
}
.btn-play:hover { background: var(--text-secondary); transform: scale(1.02); }
.btn-info {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(109,109,110,0.5);
  color: var(--text-primary);
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  border: none; cursor: pointer; font-family: var(--font-body);
  backdrop-filter: blur(8px);
}
.btn-info:hover { background: rgba(109,109,110,0.7); }

/* ── SECTIONS ── */
.section { padding: 48px 0; }
.section-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 40px;
  margin-bottom: 24px;
}
.section-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 2px;
}
.section-title span { color: var(--accent); }
.section-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: var(--transition);
}
.section-link:hover { color: var(--accent); }

/* ── CONTENT GRID ── */
.content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  padding: 0 40px;
}
.content-row {
  display: flex; gap: 16px;
  padding: 0 40px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
}
.content-row::-webkit-scrollbar { display: none; }

/* ── CONTENT CARD ── */
.content-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-card);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  display: block;
  min-width: 200px;
}
.content-card:hover { transform: scale(1.04); z-index: 10; box-shadow: var(--shadow-lg); }
.content-card-poster {
  width: 100%;
  aspect-ratio: 2/3;
  object-fit: cover;
  display: block;
  background: var(--bg-elevated);
}
.content-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
  display: flex; flex-direction: column;
  justify-content: flex-end;
  padding: 16px;
}
.content-card:hover .content-card-overlay { opacity: 1; }
.content-card-title {
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 6px;
  line-height: 1.3;
}
.content-card-meta {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.75rem;
  color: var(--text-secondary);
}
.content-card-rating {
  color: var(--gold);
  font-weight: 700;
  font-size: 0.8rem;
}
.content-card-badge {
  position: absolute; top: 10px; left: 10px;
  background: var(--accent);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.content-card-type {
  position: absolute; top: 10px; right: 10px;
  background: rgba(0,0,0,0.7);
  color: var(--text-secondary);
  font-size: 0.65rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 4px;
  backdrop-filter: blur(4px);
}

/* ── CATEGORIES NAV ── */
.categories-nav {
  display: flex; gap: 8px;
  padding: 0 40px 24px;
  overflow-x: auto;
  scrollbar-width: none;
}
.categories-nav::-webkit-scrollbar { display: none; }
.cat-chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 16px;
  border-radius: 24px;
  border: 1px solid var(--border);
  color: var(--text-secondary);
  font-size: 0.8rem;
  font-weight: 500;
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
  background: transparent;
  font-family: var(--font-body);
}
.cat-chip:hover, .cat-chip.active {
  border-color: var(--accent);
  color: var(--text-primary);
  background: var(--accent-dim);
}

/* ── VIDEO PLAYER ── */
.player-wrapper {
  position: relative;
  aspect-ratio: 16/9;
  background: #000;
  border-radius: var(--radius-md);
  overflow: hidden;
}
.player-wrapper video { width: 100%; height: 100%; }
.player-overlay {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 16px;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(4px);
}
.player-overlay .lock-icon { font-size: 3rem; color: var(--accent); }
.player-overlay h3 { font-size: 1.4rem; font-weight: 700; }
.player-overlay p { color: var(--text-secondary); font-size: 0.95rem; text-align: center; }

/* ── FORMS ── */
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.form-control {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition);
  outline: none;
}
.form-control:focus {
  border-color: var(--accent);
  background: var(--bg-card);
  box-shadow: 0 0 0 3px var(--accent-dim);
}
.form-control::placeholder { color: var(--text-muted); }
select.form-control option { background: var(--bg-elevated); }
textarea.form-control { resize: vertical; min-height: 100px; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  font-family: var(--font-body);
  border: none; cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-1px); }
.btn-secondary { background: var(--bg-elevated); color: var(--text-primary); border: 1px solid var(--border); }
.btn-secondary:hover { border-color: var(--border-hover); }
.btn-ghost { background: transparent; color: var(--text-secondary); border: 1px solid var(--border); }
.btn-ghost:hover { color: var(--text-primary); border-color: var(--border-hover); background: var(--border); }
.btn-danger { background: #dc2626; color: #fff; }
.btn-danger:hover { background: #b91c1c; }
.btn-sm { padding: 7px 16px; font-size: 0.8rem; }
.btn-lg { padding: 16px 40px; font-size: 1rem; }
.btn-block { width: 100%; }
.btn-icon { padding: 10px; border-radius: var(--radius-sm); }

/* ── ALERTS ── */
.alert {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  border: 1px solid transparent;
  margin-bottom: 16px;
}
.alert-success { background: rgba(16,185,129,0.1); border-color: rgba(16,185,129,0.3); color: #34d399; }
.alert-error   { background: rgba(229,9,20,0.1);  border-color: rgba(229,9,20,0.3);  color: #f87171; }
.alert-info    { background: rgba(59,130,246,0.1); border-color: rgba(59,130,246,0.3); color: #93c5fd; }
.alert-warning { background: rgba(245,197,24,0.1); border-color: rgba(245,197,24,0.3); color: #fcd34d; }

/* ── STAR RATING ── */
.star-rating { display: flex; gap: 4px; }
.star { color: var(--text-muted); font-size: 1.1rem; cursor: pointer; transition: var(--transition); }
.star.filled, .star:hover { color: var(--gold); }

/* ── MODAL ── */
.modal-overlay {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
.modal-overlay.active { opacity: 1; pointer-events: all; }
.modal {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  width: 90%;
  max-width: 480px;
  transform: scale(0.95) translateY(20px);
  transition: transform 0.3s;
  box-shadow: var(--shadow-lg);
}
.modal-overlay.active .modal { transform: scale(1) translateY(0); }
.modal-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 2px;
  margin-bottom: 8px;
}
.modal-close {
  position: absolute; top: 16px; right: 20px;
  background: none; border: none; color: var(--text-muted);
  font-size: 1.3rem; cursor: pointer; transition: var(--transition);
}
.modal-close:hover { color: var(--text-primary); }

/* ── PRICING CARDS ── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 700px; margin: 0 auto;
}
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  transition: var(--transition);
  position: relative; overflow: hidden;
}
.pricing-card.popular {
  border-color: var(--accent);
  background: linear-gradient(135deg, var(--bg-card), var(--bg-elevated));
}
.pricing-card.popular::before {
  content: 'EN POPÜLER';
  position: absolute; top: 16px; right: -24px;
  background: var(--accent);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 4px 40px;
  transform: rotate(45deg);
}
.pricing-plan { font-family: var(--font-display); font-size: 1.5rem; letter-spacing: 2px; margin-bottom: 8px; }
.pricing-price { font-size: 3rem; font-weight: 800; margin-bottom: 4px; }
.pricing-price span { font-size: 1rem; color: var(--text-secondary); }
.pricing-features { list-style: none; margin: 20px 0 24px; text-align: left; }
.pricing-features li {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 0;
  font-size: 0.9rem; color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li .check { color: #10b981; }

/* ── REVIEW CARD ── */
.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
  transition: var(--transition);
}
.review-card:hover { border-color: var(--border-hover); }
.review-header { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.review-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--accent); display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.9rem; overflow: hidden; flex-shrink: 0;
}
.review-meta { flex: 1; }
.review-user { font-weight: 600; font-size: 0.9rem; }
.review-date { font-size: 0.75rem; color: var(--text-muted); }
.review-rating { display: flex; gap: 2px; }
.review-rating .star { font-size: 0.9rem; }
.review-text { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.6; }

/* ── PAGE HEADER ── */
.page-header {
  padding: 100px 40px 40px;
  background: linear-gradient(to bottom, var(--bg-secondary), transparent);
}
.page-header h1 { font-family: var(--font-display); font-size: 2.5rem; letter-spacing: 3px; }

/* ── CONTENT DETAIL ── */
.content-detail-banner {
  position: relative; height: 500px;
  background-size: cover; background-position: center;
  margin-bottom: -100px;
}
.content-detail-banner::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 30%, var(--bg-primary) 100%),
              linear-gradient(to right, rgba(10,10,15,0.8) 40%, transparent 100%);
}
.content-detail { padding: 0 40px 60px; }
.content-detail-grid {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 40px;
  align-items: start;
}
.content-poster {
  position: relative; z-index: 2;
  width: 240px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  flex-shrink: 0;
}
.content-poster img { width: 100%; display: block; }

/* ── TABS ── */
.tabs { display: flex; gap: 4px; border-bottom: 1px solid var(--border); margin-bottom: 24px; }
.tab {
  padding: 12px 20px;
  font-size: 0.9rem; font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: var(--transition);
  background: none; border-top: none; border-left: none; border-right: none;
  font-family: var(--font-body);
}
.tab:hover { color: var(--text-secondary); }
.tab.active { color: var(--accent); border-bottom-color: var(--accent); }
.tab-content { display: none; }
.tab-content.active { display: block; }

/* ── EPISODE LIST ── */
.episode-item {
  display: flex; gap: 16px; align-items: center;
  padding: 16px;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  color: inherit;
}
.episode-item:hover { background: var(--bg-card); }
.episode-thumb {
  width: 140px; min-width: 140px; aspect-ratio: 16/9;
  border-radius: var(--radius-sm);
  object-fit: cover;
  background: var(--bg-elevated);
  flex-shrink: 0;
}
.episode-num { font-family: var(--font-display); font-size: 1.5rem; color: var(--text-muted); min-width: 40px; }
.episode-info { flex: 1; }
.episode-title { font-weight: 600; font-size: 0.95rem; margin-bottom: 4px; }
.episode-desc { font-size: 0.8rem; color: var(--text-muted); line-height: 1.5; }
.episode-dur { font-size: 0.75rem; color: var(--text-muted); margin-top: 4px; }

/* ── BADGE ── */
.badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.badge-accent { background: var(--accent-dim); color: var(--accent); }
.badge-gold   { background: rgba(245,197,24,0.15); color: var(--gold); }
.badge-green  { background: rgba(16,185,129,0.15); color: #10b981; }
.badge-blue   { background: rgba(59,130,246,0.15); color: #60a5fa; }
.badge-gray   { background: var(--bg-elevated); color: var(--text-muted); }

/* ── ACTION BUTTONS ── */
.action-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem; font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer; border: none;
  transition: var(--transition);
  text-decoration: none;
}
.action-btn.fav { background: var(--bg-elevated); color: var(--text-secondary); border: 1px solid var(--border); }
.action-btn.fav:hover, .action-btn.fav.active { color: var(--accent); border-color: var(--accent); background: var(--accent-dim); }
.action-btn.watched { background: var(--bg-elevated); color: var(--text-secondary); border: 1px solid var(--border); }
.action-btn.watched:hover, .action-btn.watched.active { color: #10b981; border-color: #10b981; background: rgba(16,185,129,0.1); }

/* ── FOOTER ── */
footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 60px 40px 30px;
  margin-top: 80px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand { font-family: var(--font-display); font-size: 1.8rem; letter-spacing: 3px; color: var(--accent); margin-bottom: 12px; }
.footer-desc { color: var(--text-muted); font-size: 0.875rem; line-height: 1.6; }
.footer-heading { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--text-muted); margin-bottom: 16px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: var(--text-secondary); text-decoration: none; font-size: 0.875rem; transition: var(--transition); }
.footer-links a:hover { color: var(--text-primary); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; border-top: 1px solid var(--border); font-size: 0.8rem; color: var(--text-muted); }

/* ── AUTH PAGES ── */
.auth-page {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  padding: 80px 20px;
  background: radial-gradient(ellipse at center top, rgba(229,9,20,0.1) 0%, transparent 60%),
              var(--bg-primary);
}
.auth-card {
  width: 100%; max-width: 440px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}
.auth-logo { text-align: center; margin-bottom: 28px; }
.auth-logo a { font-family: var(--font-display); font-size: 2.5rem; letter-spacing: 4px; color: var(--accent); text-decoration: none; }
.auth-title { font-size: 1.3rem; font-weight: 700; margin-bottom: 6px; }
.auth-subtitle { color: var(--text-muted); font-size: 0.875rem; margin-bottom: 28px; }
.auth-divider { display: flex; align-items: center; gap: 12px; margin: 20px 0; color: var(--text-muted); font-size: 0.8rem; }
.auth-divider::before, .auth-divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.auth-footer { text-align: center; margin-top: 20px; font-size: 0.875rem; color: var(--text-muted); }
.auth-footer a { color: var(--accent); text-decoration: none; font-weight: 600; }

/* ── PROFILE ── */
.profile-header {
  display: flex; align-items: center; gap: 24px;
  padding: 100px 40px 40px;
  background: linear-gradient(to bottom, var(--bg-secondary), transparent);
}
.profile-avatar-large {
  width: 90px; height: 90px; border-radius: 50%;
  background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; font-weight: 700;
  border: 3px solid var(--border);
  overflow: hidden; flex-shrink: 0;
}
.profile-avatar-large img { width: 100%; height: 100%; object-fit: cover; }
.subscription-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 12px; border-radius: 20px;
  font-size: 0.75rem; font-weight: 700;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #000;
  margin-top: 6px;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .navbar { padding: 0 20px; }
  .navbar-nav { display: none; }
  .hero { padding: 0 24px 60px; }
  .section-header, .content-grid, .content-row, .categories-nav { padding-left: 20px; padding-right: 20px; }
  .content-detail-grid { grid-template-columns: 1fr; }
  .content-poster { width: 100%; max-width: 200px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .page-header { padding: 90px 20px 30px; }
  .content-detail { padding: 0 20px 40px; }
}
