/* ═══════════════════════════════════════════════════════════
   TEAM WORLD KING — OTT PLATFORM STYLES
   Design: Cinematic Dark · Red Neon · Glassmorphism
═══════════════════════════════════════════════════════════ */

/* ─── DESIGN TOKENS ─── */
:root {
  --black:       #000000;
  --black-deep:  #050505;
  --black-card:  #0d0d0d;
  --black-glass: rgba(10,10,10,0.85);
  --red:         #e50914;
  --red-dark:    #8b0000;
  --red-bright:  #ff1a1a;
  --red-glow:    rgba(229,9,20,0.4);
  --red-glow-sm: rgba(229,9,20,0.2);
  --gold:        #c9a84c;
  --gold-light:  #f0c060;
  --white:       #ffffff;
  --white-90:    rgba(255,255,255,0.9);
  --white-60:    rgba(255,255,255,0.6);
  --white-30:    rgba(255,255,255,0.3);
  --white-10:    rgba(255,255,255,0.08);
  --white-05:    rgba(255,255,255,0.04);
  --glass-bg:    rgba(255,255,255,0.05);
  --glass-border:rgba(255,255,255,0.1);
  --radius-sm:   8px;
  --radius-md:   14px;
  --radius-lg:   20px;
  --radius-xl:   28px;
  --font-display:'Bebas Neue', sans-serif;
  --font-body:   'Outfit', sans-serif;
  --font-serif:  'Playfair Display', serif;
  --nav-h:       70px;
  --header-h:    60px;
  --transition:  0.3s cubic-bezier(0.4,0,0.2,1);
  --transition-slow: 0.6s cubic-bezier(0.4,0,0.2,1);
}

/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  overflow: hidden;
  height: 100dvh;
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  position: relative;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-body); }
input, textarea { font-family: var(--font-body); outline: none; }
img { display: block; max-width: 100%; }

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 3px; height: 3px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 2px; }

/* ─── UTILITY ─── */
.hidden { display: none !important; }
.red { color: var(--red); }
.red-glow { color: var(--red); text-shadow: 0 0 20px var(--red), 0 0 40px var(--red-glow); }
.small { font-size: 0.7em; letter-spacing: 0.15em; }

/* ═══════════════════════════════════════════════════════════
   FILM VISUAL BACKGROUNDS (Cinematic Gradient Posters)
═══════════════════════════════════════════════════════════ */
.film1 { background: linear-gradient(135deg, #1a0000 0%, #4a0010 30%, #8b0000 60%, #2d0000 100%); }
.film2 { background: linear-gradient(135deg, #0a0a1a 0%, #1a1a4a 30%, #2d2d8b 60%, #0a0a2d 100%); }
.film3 { background: linear-gradient(135deg, #001a0a 0%, #004a1a 30%, #008b3d 60%, #002d0a 100%); }
.film4 { background: linear-gradient(135deg, #1a0a00 0%, #4a2000 30%, #8b4500 60%, #2d1500 100%); }
.film5 { background: linear-gradient(135deg, #1a001a 0%, #4a004a 30%, #8b008b 60%, #2d002d 100%); }
.film6 { background: linear-gradient(135deg, #001a1a 0%, #004a4a 30%, #008b8b 60%, #002d2d 100%); }
.film7 { background: linear-gradient(135deg, #0a1a00 0%, #204a00 30%, #458b00 60%, #152d00 100%); }
.film8 { background: linear-gradient(135deg, #1a1a00 0%, #4a4a00 30%, #8b8b00 60%, #2d2d00 100%); }
.film9 { background: linear-gradient(135deg, #00001a 0%, #00004a 30%, #00008b 60%, #00002d 100%); }
.music1 { background: linear-gradient(135deg, #1a0000 0%, #e50914 50%, #8b0000 100%); }
.music2 { background: linear-gradient(135deg, #1a0a1a 0%, #8b008b 50%, #4a004a 100%); }
.music3 { background: linear-gradient(135deg, #001a1a 0%, #008b8b 50%, #004a4a 100%); }
.music4 { background: linear-gradient(135deg, #1a1000 0%, #c9a84c 50%, #8b6000 100%); }
.music5 { background: linear-gradient(135deg, #001a0a 0%, #00c96e 50%, #008b4a 100%); }
.av1 { background: linear-gradient(135deg, #e50914, #8b0000); }
.av2 { background: linear-gradient(135deg, #8b008b, #4a004a); }
.av3 { background: linear-gradient(135deg, #008b8b, #004a4a); }
.av4 { background: linear-gradient(135deg, #c9a84c, #8b6000); }
.av5 { background: linear-gradient(135deg, #00c96e, #008b4a); }

/* ═══════════════════════════════════════════════════════════
   SPLASH SCREEN
═══════════════════════════════════════════════════════════ */
.splash-screen {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--black);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 40px;
}
.splash-logo {
  display: flex; flex-direction: column;
  align-items: center; gap: 12px;
  animation: splashFadeIn 0.8s ease forwards;
}
.splash-crown {
  font-size: 64px;
  color: var(--gold);
  filter: drop-shadow(0 0 20px var(--gold)) drop-shadow(0 0 40px rgba(201,168,76,0.5));
  animation: crownPulse 2s ease-in-out infinite;
}
.splash-brand {
  display: flex; flex-direction: column;
  align-items: center; gap: 2px;
}
.splash-team {
  font-family: var(--font-display);
  font-size: 52px; letter-spacing: 0.2em;
  color: var(--white);
  text-shadow: 0 0 30px rgba(255,255,255,0.3);
}
.splash-wk {
  font-family: var(--font-display);
  font-size: 36px; letter-spacing: 0.15em;
  color: var(--red);
  text-shadow: 0 0 20px var(--red), 0 0 40px var(--red-glow);
}
.splash-fp {
  font-family: var(--font-body);
  font-size: 11px; letter-spacing: 0.4em;
  color: var(--white-60);
  text-transform: uppercase;
}
.splash-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 16px;
  color: var(--gold);
  opacity: 0.8;
}
.splash-loader {
  width: 200px; height: 2px;
  background: var(--white-10);
  border-radius: 2px; overflow: hidden;
}
.splash-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--red-dark), var(--red), var(--red-bright));
  border-radius: 2px;
  animation: splashLoad 2.2s ease-in-out forwards;
  box-shadow: 0 0 10px var(--red);
}
@keyframes splashFadeIn { from { opacity:0; transform:translateY(20px); } to { opacity:1; transform:translateY(0); } }
@keyframes crownPulse { 0%,100% { transform:scale(1); filter:drop-shadow(0 0 20px var(--gold)); } 50% { transform:scale(1.05); filter:drop-shadow(0 0 35px var(--gold)) drop-shadow(0 0 60px rgba(201,168,76,0.6)); } }
@keyframes splashLoad { from { width:0; } to { width:100%; } }

/* ═══════════════════════════════════════════════════════════
   AUTH SCREEN
═══════════════════════════════════════════════════════════ */
.screen {
  position: fixed; inset: 0; z-index: 100;
  overflow-y: auto;
}
.auth-bg {
  position: fixed; inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(139,0,0,0.3) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(229,9,20,0.15) 0%, transparent 50%),
              var(--black);
}
.auth-bg-overlay {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255,255,255,0.01) 2px, rgba(255,255,255,0.01) 4px);
}
.auth-particles {
  position: absolute; inset: 0; overflow: hidden;
}
.auth-container {
  position: relative; z-index: 1;
  min-height: 100dvh;
  display: flex; flex-direction: column;
  align-items: center; padding: 40px 24px 40px;
}
.auth-logo {
  display: flex; flex-direction: column;
  align-items: center; gap: 8px;
  margin-bottom: 32px;
}
.auth-crown {
  font-size: 48px; color: var(--gold);
  filter: drop-shadow(0 0 15px var(--gold));
  animation: crownPulse 2s ease-in-out infinite;
}
.auth-brand-text {
  display: flex; flex-direction: column;
  align-items: center; gap: 2px;
}
.auth-brand-text span:first-child {
  font-family: var(--font-display);
  font-size: 40px; letter-spacing: 0.2em;
  color: var(--white);
}
.auth-brand-text .red {
  font-family: var(--font-display);
  font-size: 28px; letter-spacing: 0.15em;
  color: var(--red);
  text-shadow: 0 0 15px var(--red);
}
.auth-brand-text .small {
  font-size: 9px; letter-spacing: 0.35em;
  color: var(--white-60); text-transform: uppercase;
}
.auth-form {
  width: 100%; max-width: 380px;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: 28px 24px;
  display: none;
  animation: formSlideIn 0.4s ease forwards;
}
.auth-form.active { display: block; }
@keyframes formSlideIn { from { opacity:0; transform:translateY(16px); } to { opacity:1; transform:translateY(0); } }
.auth-title {
  font-family: var(--font-display);
  font-size: 32px; letter-spacing: 0.05em;
  color: var(--white); margin-bottom: 4px;
}
.auth-sub { font-size: 13px; color: var(--white-60); margin-bottom: 24px; }
.form-group { position: relative; margin-bottom: 16px; }
.form-group label { display: block; font-size: 12px; color: var(--white-60); margin-bottom: 6px; letter-spacing: 0.05em; }
.form-input {
  width: 100%; padding: 14px 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  color: var(--white); font-size: 14px;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-input:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px var(--red-glow-sm), inset 0 0 10px rgba(229,9,20,0.05);
}
.form-input::placeholder { color: var(--white-30); }
.form-textarea { min-height: 100px; resize: vertical; }
.form-eye {
  position: absolute; right: 14px; bottom: 14px;
  cursor: pointer; font-size: 16px; opacity: 0.5;
}
.form-options {
  display: flex; justify-content: space-between;
  align-items: center; margin-bottom: 20px;
}
.checkbox-label { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--white-60); cursor: pointer; }
.checkbox-label input { accent-color: var(--red); }
.forgot-link { font-size: 13px; color: var(--red); }
.btn-primary {
  width: 100%; padding: 15px;
  background: linear-gradient(135deg, var(--red-dark), var(--red), var(--red-bright));
  color: var(--white); font-family: var(--font-display);
  font-size: 18px; letter-spacing: 0.1em;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 20px var(--red-glow), 0 0 40px rgba(229,9,20,0.2);
  transition: all var(--transition);
  position: relative; overflow: hidden;
}
.btn-primary::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(255,255,255,0.1) 50%, transparent 100%);
  transform: translateX(-100%); transition: transform 0.5s ease;
}
.btn-primary:hover::before { transform: translateX(100%); }
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 8px 30px var(--red-glow), 0 0 60px rgba(229,9,20,0.3); }
.btn-primary:active { transform: translateY(0); }
.auth-divider {
  display: flex; align-items: center; gap: 12px;
  margin: 20px 0; color: var(--white-30); font-size: 11px; letter-spacing: 0.1em;
}
.auth-divider::before, .auth-divider::after {
  content: ''; flex: 1; height: 1px; background: var(--glass-border);
}
.social-auth { display: flex; gap: 12px; margin-bottom: 20px; }
.social-btn {
  flex: 1; padding: 12px;
  background: var(--glass-bg); border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm); color: var(--white);
  font-size: 13px; font-weight: 500;
  transition: all var(--transition);
}
.social-btn:hover { background: var(--white-10); border-color: var(--white-30); }
.auth-switch { text-align: center; font-size: 13px; color: var(--white-60); }
.auth-switch a { color: var(--red); font-weight: 600; }

/* ═══════════════════════════════════════════════════════════
   MAIN APP LAYOUT
═══════════════════════════════════════════════════════════ */
#main-app {
  position: fixed; inset: 0;
  display: flex; flex-direction: column;
  background: var(--black);
}
.app-header {
  position: fixed; top: 0; left: 50%; transform: translateX(-50%);
  width: 100%; max-width: 430px;
  height: var(--header-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 16px;
  background: linear-gradient(180deg, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.7) 100%);
  backdrop-filter: blur(10px);
  z-index: 50;
  transition: background var(--transition);
}
.app-header.scrolled { background: rgba(0,0,0,0.98); }
.header-left { display: flex; align-items: center; }
.header-logo { display: flex; align-items: center; gap: 8px; }
.header-crown {
  font-size: 22px; color: var(--gold);
  filter: drop-shadow(0 0 8px var(--gold));
}
.header-brand { display: flex; flex-direction: column; line-height: 1; }
.hb-team { font-family: var(--font-display); font-size: 14px; letter-spacing: 0.2em; color: var(--white-90); }
.hb-wk { font-family: var(--font-display); font-size: 10px; letter-spacing: 0.15em; color: var(--red); text-shadow: 0 0 8px var(--red); }
.header-right { display: flex; align-items: center; gap: 8px; }
.header-icon-btn {
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white-90); transition: all var(--transition);
  background: var(--white-05);
}
.header-icon-btn:hover { background: var(--white-10); color: var(--white); }
.notif-btn { position: relative; }
.notif-dot {
  position: absolute; top: 6px; right: 6px;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--red); border: 1.5px solid var(--black);
  animation: notifPulse 2s ease-in-out infinite;
}
@keyframes notifPulse { 0%,100% { box-shadow: 0 0 0 0 var(--red-glow); } 50% { box-shadow: 0 0 0 4px transparent; } }
.header-avatar {
  width: 32px; height: 32px; border-radius: 50%;
  background: linear-gradient(135deg, var(--red-dark), var(--red));
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; cursor: pointer;
  border: 2px solid var(--red-glow);
  box-shadow: 0 0 10px var(--red-glow);
}

/* ─── PAGES ─── */
.page {
  position: absolute; inset: 0;
  overflow: hidden;
  opacity: 0; pointer-events: none;
  transform: translateX(20px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.page.active {
  opacity: 1; pointer-events: all;
  transform: translateX(0);
}
.page-scroll {
  height: 100%;
  overflow-y: auto;
  padding-top: var(--header-h);
  padding-bottom: var(--nav-h);
  -webkit-overflow-scrolling: touch;
}
.player-page-full .page-scroll { padding-top: 0; }
.bottom-spacer { height: 20px; }

/* ─── INNER HEADER ─── */
.inner-header {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px 8px;
  position: sticky; top: var(--header-h); z-index: 10;
  background: linear-gradient(180deg, rgba(0,0,0,0.95) 0%, transparent 100%);
}
.back-btn {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--glass-bg); border: 1px solid var(--glass-border);
  color: var(--white); font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.back-btn:hover { background: var(--red); border-color: var(--red); }
.inner-title {
  font-family: var(--font-display);
  font-size: 24px; letter-spacing: 0.05em;
  color: var(--white); flex: 1;
}
.mark-all-btn { font-size: 12px; color: var(--red); }

/* ═══════════════════════════════════════════════════════════
   HERO SECTION
═══════════════════════════════════════════════════════════ */
.hero-section {
  position: relative; height: 520px;
  overflow: hidden;
}
.hero-slider { position: relative; width: 100%; height: 100%; }
.hero-slide {
  position: absolute; inset: 0;
  background: var(--hero-bg);
  opacity: 0; transition: opacity 0.8s ease;
  display: flex; align-items: flex-end;
}
.hero-slide.active { opacity: 1; }
.hero-poster-bg {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: flex-end;
}
.hero-film-frame {
  width: 55%; height: 100%;
  position: relative; overflow: hidden;
}
.hero-film-visual {
  width: 100%; height: 100%;
  opacity: 0.6;
  mask-image: linear-gradient(to left, rgba(0,0,0,0.8) 0%, transparent 100%);
  -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,0.8) 0%, transparent 100%);
}
.hero-film-frame::after {
  content: '🎬';
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 80px; opacity: 0.15;
}
.hero-content {
  position: relative; z-index: 2;
  padding: 0 20px 60px;
  width: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.6) 50%, transparent 100%);
}
.hero-badge {
  display: inline-block;
  background: var(--red);
  color: var(--white); font-size: 10px; font-weight: 700;
  letter-spacing: 0.1em; padding: 4px 10px;
  border-radius: 4px; margin-bottom: 10px;
  box-shadow: 0 0 15px var(--red-glow);
}
.hero-title {
  font-family: var(--font-display);
  font-size: 52px; line-height: 0.95;
  letter-spacing: 0.02em;
  color: var(--white);
  text-shadow: 0 2px 20px rgba(0,0,0,0.8);
  margin-bottom: 10px;
}
.hero-desc {
  font-size: 13px; color: var(--white-60);
  line-height: 1.5; margin-bottom: 12px;
  max-width: 280px;
}
.hero-meta {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 16px; flex-wrap: wrap;
}
.hero-rating { color: #ffd700; font-size: 13px; font-weight: 600; }
.hero-year, .hero-lang, .hero-dur {
  font-size: 12px; color: var(--white-60);
  background: var(--white-10); padding: 2px 8px;
  border-radius: 4px;
}
.hero-actions { display: flex; gap: 12px; }
.btn-play {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 24px;
  background: linear-gradient(135deg, var(--red-dark), var(--red));
  color: var(--white); font-family: var(--font-display);
  font-size: 16px; letter-spacing: 0.08em;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 20px var(--red-glow);
  transition: all var(--transition);
}
.btn-play:hover { transform: scale(1.03); box-shadow: 0 6px 30px var(--red-glow); }
.btn-more {
  padding: 12px 20px;
  background: var(--glass-bg); backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  color: var(--white); font-size: 13px; font-weight: 500;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.btn-more:hover { background: var(--white-10); }
.hero-dots {
  position: absolute; bottom: 16px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 6px; z-index: 5;
}
.hero-dot {
  width: 6px; height: 6px; border-radius: 3px;
  background: var(--white-30); cursor: pointer;
  transition: all var(--transition);
}
.hero-dot.active { width: 20px; background: var(--red); box-shadow: 0 0 8px var(--red); }
.hero-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--glass-bg); backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  color: var(--white); font-size: 22px;
  display: flex; align-items: center; justify-content: center;
  z-index: 5; transition: all var(--transition);
}
.hero-nav:hover { background: var(--red); border-color: var(--red); }
.hero-nav.prev { left: 12px; }
.hero-nav.next { right: 12px; }

/* ═══════════════════════════════════════════════════════════
   CONTENT SECTIONS
═══════════════════════════════════════════════════════════ */
.content-section { padding: 20px 0 4px; }
.section-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 16px; margin-bottom: 14px;
}
.section-title {
  font-family: var(--font-display);
  font-size: 22px; letter-spacing: 0.04em;
  color: var(--white);
}
.see-all { font-size: 12px; color: var(--red); font-weight: 600; letter-spacing: 0.05em; }

/* ─── SCROLL ROW ─── */
.scroll-row {
  display: flex; gap: 12px;
  overflow-x: auto; padding: 4px 16px 12px;
  scrollbar-width: none;
}
.scroll-row::-webkit-scrollbar { display: none; }

/* ─── CONTINUE WATCHING CARDS ─── */
.continue-card {
  flex: 0 0 160px; border-radius: var(--radius-md);
  overflow: hidden; cursor: pointer;
  background: var(--black-card);
  border: 1px solid var(--glass-border);
  transition: transform var(--transition), box-shadow var(--transition);
}
.continue-card:hover { transform: scale(1.03); box-shadow: 0 8px 30px rgba(0,0,0,0.5); }
.cc-thumb {
  height: 90px; width: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 32px; position: relative;
}
.cc-thumb::after { content: '▶'; position: absolute; font-size: 20px; opacity: 0.7; }
.cc-progress { height: 3px; background: var(--white-10); }
.cc-bar { height: 100%; background: linear-gradient(90deg, var(--red-dark), var(--red)); border-radius: 2px; }
.cc-info { padding: 8px 10px; }
.cc-title { display: block; font-size: 12px; font-weight: 600; color: var(--white); margin-bottom: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cc-time { font-size: 10px; color: var(--white-60); }

/* ─── POSTER CARDS ─── */
.poster-card {
  flex: 0 0 130px; border-radius: var(--radius-md);
  overflow: hidden; cursor: pointer; position: relative;
  background: var(--black-card);
  transition: transform var(--transition), box-shadow var(--transition);
}
.poster-card:hover { transform: scale(1.04); box-shadow: 0 10px 30px rgba(229,9,20,0.2); }
.poster-img {
  height: 190px; width: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 40px;
}
.poster-img::after { content: '🎬'; font-size: 36px; opacity: 0.3; }
.poster-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.4);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity var(--transition);
}
.poster-card:hover .poster-overlay { opacity: 1; }
.poster-play {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--red); color: var(--white);
  font-size: 16px; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 20px var(--red-glow);
}
.poster-badge {
  position: absolute; top: 8px; left: 8px;
  font-size: 9px; font-weight: 800; letter-spacing: 0.08em;
  padding: 3px 7px; border-radius: 4px;
}
.poster-badge.new { background: var(--red); color: var(--white); box-shadow: 0 0 10px var(--red-glow); }
.poster-badge.hot { background: #ff6b00; color: var(--white); }
.poster-badge.award { background: var(--gold); color: var(--black); }
.poster-info { padding: 8px 10px; }
.poster-title { display: block; font-size: 12px; font-weight: 600; color: var(--white); margin-bottom: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.poster-meta { font-size: 10px; color: var(--white-60); }

/* ─── SONGS LIST ─── */
.songs-list { padding: 0 16px; display: flex; flex-direction: column; gap: 4px; }
.song-item {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 12px; border-radius: var(--radius-sm);
  background: var(--white-05); cursor: pointer;
  transition: background var(--transition);
  border: 1px solid transparent;
}
.song-item:hover { background: var(--white-10); border-color: var(--glass-border); }
.song-rank { font-family: var(--font-display); font-size: 18px; color: var(--red); width: 24px; text-align: center; }
.song-thumb { width: 44px; height: 44px; border-radius: var(--radius-sm); flex-shrink: 0; }
.song-info { flex: 1; min-width: 0; }
.song-title { display: block; font-size: 13px; font-weight: 600; color: var(--white); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.song-artist { font-size: 11px; color: var(--white-60); }
.song-meta { display: flex; flex-direction: column; align-items: flex-end; gap: 2px; }
.song-plays { font-size: 10px; color: var(--white-60); }
.song-dur { font-size: 11px; color: var(--white-60); }
.song-play-btn {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--red); color: var(--white);
  font-size: 12px; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: all var(--transition);
  box-shadow: 0 0 10px var(--red-glow-sm);
}
.song-play-btn:hover { transform: scale(1.1); box-shadow: 0 0 15px var(--red-glow); }

/* ─── LANDSCAPE CARDS ─── */
.landscape-row { gap: 14px; }
.landscape-card {
  flex: 0 0 240px; border-radius: var(--radius-md);
  overflow: hidden; cursor: pointer; position: relative;
  background: var(--black-card);
  transition: transform var(--transition), box-shadow var(--transition);
}
.landscape-card:hover { transform: scale(1.02); box-shadow: 0 10px 30px rgba(0,0,0,0.6); }
.lc-thumb {
  height: 135px; width: 100%;
  display: flex; align-items: center; justify-content: center;
}
.lc-thumb::after { content: '🎬'; font-size: 40px; opacity: 0.25; }
.lc-overlay {
  position: absolute; top: 0; left: 0; right: 0; height: 135px;
  background: rgba(0,0,0,0.3);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity var(--transition);
}
.landscape-card:hover .lc-overlay { opacity: 1; }
.lc-play {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--red); color: var(--white);
  font-size: 18px; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 25px var(--red-glow);
}
.lc-dur {
  position: absolute; top: 8px; right: 8px;
  background: rgba(0,0,0,0.8); color: var(--white);
  font-size: 11px; padding: 3px 7px; border-radius: 4px;
}
.lc-info { padding: 10px 12px; }
.lc-title { display: block; font-size: 13px; font-weight: 600; color: var(--white); margin-bottom: 2px; }
.lc-sub { font-size: 11px; color: var(--white-60); }
.mobile-badge {
  position: absolute; top: 8px; left: 8px;
  background: rgba(0,0,0,0.8); border: 1px solid var(--red);
  color: var(--red); font-size: 9px; font-weight: 700;
  padding: 3px 8px; border-radius: 4px;
  box-shadow: 0 0 8px var(--red-glow-sm);
}

/* ─── MUSIC VIDEO CARDS ─── */
.mv-card {
  flex: 0 0 150px; border-radius: var(--radius-md);
  overflow: hidden; cursor: pointer; position: relative;
  background: var(--black-card);
  transition: transform var(--transition);
}
.mv-card:hover { transform: scale(1.04); }
.mv-thumb {
  height: 150px; width: 100%;
  display: flex; align-items: center; justify-content: center;
}
.mv-thumb::after { content: '🎵'; font-size: 36px; opacity: 0.3; }
.mv-overlay {
  position: absolute; top: 0; left: 0; right: 0; height: 150px;
  background: rgba(0,0,0,0.4);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity var(--transition);
}
.mv-card:hover .mv-overlay { opacity: 1; }
.mv-play {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--red); color: var(--white);
  font-size: 16px; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 20px var(--red-glow);
}
.mv-views {
  position: absolute; top: 8px; right: 8px;
  background: rgba(0,0,0,0.8); color: var(--white-60);
  font-size: 9px; padding: 2px 6px; border-radius: 4px;
}
.mv-info { padding: 8px 10px; }
.mv-title { display: block; font-size: 12px; font-weight: 600; color: var(--white); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mv-artist { font-size: 10px; color: var(--white-60); }

/* ─── CREATOR CARDS ─── */
.creators-row { gap: 14px; }
.creator-card {
  flex: 0 0 100px; display: flex; flex-direction: column;
  align-items: center; gap: 6px; cursor: pointer;
  position: relative;
}
.creator-avatar {
  width: 72px; height: 72px; border-radius: 50%;
  border: 2px solid var(--red);
  box-shadow: 0 0 15px var(--red-glow-sm);
  transition: all var(--transition);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
}
.creator-card:hover .creator-avatar {
  border-color: var(--red-bright);
  box-shadow: 0 0 25px var(--red-glow), 0 0 50px var(--red-glow-sm);
  transform: scale(1.08);
}
.creator-glow {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--red-glow-sm);
  filter: blur(15px); opacity: 0;
  transition: opacity var(--transition);
}
.creator-card:hover .creator-glow { opacity: 1; }
.creator-name { font-size: 11px; font-weight: 600; color: var(--white); text-align: center; }
.creator-role { font-size: 9px; color: var(--white-60); text-align: center; }
.creator-count { font-size: 9px; color: var(--red); text-align: center; }

/* ─── SHOWCASE SECTION ─── */
.showcase-section { background: linear-gradient(135deg, rgba(229,9,20,0.05) 0%, transparent 100%); border-radius: var(--radius-lg); margin: 0 8px; }
.showcase-header { display: flex; align-items: center; gap: 12px; padding: 16px 16px 8px; }
.showcase-icon { font-size: 28px; }
.showcase-sub { font-size: 12px; color: var(--white-60); margin-top: 2px; }

/* ─── PREMIUM BANNER ─── */
.premium-banner {
  margin: 20px 16px;
  background: linear-gradient(135deg, #1a0000 0%, #3d0000 50%, #1a0000 100%);
  border: 1px solid rgba(229,9,20,0.3);
  border-radius: var(--radius-lg);
  padding: 20px; cursor: pointer;
  position: relative; overflow: hidden;
  transition: all var(--transition);
}
.premium-banner:hover { border-color: var(--red); box-shadow: 0 0 30px var(--red-glow-sm); }
.premium-glow {
  position: absolute; top: -50%; right: -20%;
  width: 200px; height: 200px; border-radius: 50%;
  background: radial-gradient(circle, rgba(229,9,20,0.3) 0%, transparent 70%);
  pointer-events: none;
}
.premium-content { display: flex; align-items: center; gap: 14px; position: relative; z-index: 1; }
.premium-crown { font-size: 36px; color: var(--gold); filter: drop-shadow(0 0 10px var(--gold)); }
.premium-text { flex: 1; }
.premium-text h3 { font-family: var(--font-display); font-size: 22px; letter-spacing: 0.05em; color: var(--white); }
.premium-text p { font-size: 12px; color: var(--white-60); margin-top: 2px; }
.premium-cta {
  padding: 10px 18px;
  background: linear-gradient(135deg, var(--gold), #f0c060);
  color: var(--black); font-family: var(--font-display);
  font-size: 14px; letter-spacing: 0.08em;
  border-radius: var(--radius-sm); font-weight: 700;
  box-shadow: 0 4px 15px rgba(201,168,76,0.4);
  transition: all var(--transition);
}
.premium-cta:hover { transform: scale(1.05); }

/* ═══════════════════════════════════════════════════════════
   SEARCH PAGE
═══════════════════════════════════════════════════════════ */
.search-header {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 16px;
  position: sticky; top: var(--header-h); z-index: 10;
  background: rgba(0,0,0,0.95); backdrop-filter: blur(10px);
}
.search-bar-wrap {
  flex: 1; position: relative;
  display: flex; align-items: center;
}
.search-icon { position: absolute; left: 12px; color: var(--white-60); }
.search-input {
  width: 100%; padding: 11px 36px 11px 40px;
  background: var(--white-10); border: 1px solid var(--glass-border);
  border-radius: 50px; color: var(--white); font-size: 14px;
  transition: all var(--transition);
}
.search-input:focus { border-color: var(--red); box-shadow: 0 0 0 3px var(--red-glow-sm); }
.search-clear { position: absolute; right: 12px; color: var(--white-60); font-size: 14px; }
.search-filters {
  display: flex; gap: 8px; padding: 8px 16px 12px;
  overflow-x: auto; scrollbar-width: none;
}
.search-filters::-webkit-scrollbar { display: none; }
.filter-btn {
  flex-shrink: 0; padding: 7px 16px;
  background: var(--white-05); border: 1px solid var(--glass-border);
  border-radius: 50px; color: var(--white-60);
  font-size: 12px; font-weight: 500;
  transition: all var(--transition);
}
.filter-btn.active { background: var(--red); border-color: var(--red); color: var(--white); box-shadow: 0 0 10px var(--red-glow-sm); }
.search-section-title { font-family: var(--font-display); font-size: 18px; letter-spacing: 0.04em; color: var(--white); padding: 12px 16px 8px; }
.trending-tags { display: flex; flex-wrap: wrap; gap: 8px; padding: 0 16px 16px; }
.tag {
  padding: 7px 14px; background: var(--white-05);
  border: 1px solid var(--glass-border); border-radius: 50px;
  font-size: 12px; color: var(--white-60); cursor: pointer;
  transition: all var(--transition);
}
.tag:hover { background: var(--red-glow-sm); border-color: var(--red); color: var(--white); }
.category-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; padding: 0 16px 16px; }
.cat-card {
  aspect-ratio: 1; border-radius: var(--radius-md);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 8px;
  cursor: pointer; font-size: 12px; font-weight: 600;
  transition: all var(--transition);
  border: 1px solid var(--glass-border);
}
.cat-card span:first-child { font-size: 28px; }
.cat1 { background: linear-gradient(135deg, #1a0000, #3d0000); }
.cat2 { background: linear-gradient(135deg, #1a001a, #3d003d); }
.cat3 { background: linear-gradient(135deg, #001a1a, #003d3d); }
.cat4 { background: linear-gradient(135deg, #1a1000, #3d2800); }
.cat5 { background: linear-gradient(135deg, #001a00, #003d00); }
.cat6 { background: linear-gradient(135deg, #1a1a00, #3d3d00); }
.cat-card:hover { transform: scale(1.04); border-color: var(--red); box-shadow: 0 0 15px var(--red-glow-sm); }
.results-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; padding: 0 16px; }
.result-item { border-radius: var(--radius-sm); overflow: hidden; cursor: pointer; }
.result-thumb { aspect-ratio: 2/3; border-radius: var(--radius-sm); }
.result-title { font-size: 11px; color: var(--white); margin-top: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* ═══════════════════════════════════════════════════════════
   MUSIC PAGE
═══════════════════════════════════════════════════════════ */
.music-hero {
  margin: 8px 16px 16px;
  border-radius: var(--radius-lg); overflow: hidden;
  position: relative; height: 140px;
}
.music-hero-visual {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #1a0000 0%, #e50914 50%, #8b0000 100%);
}
.music-hero-text {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  justify-content: flex-end; padding: 16px;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
}
.music-hero-text h3 { font-family: var(--font-display); font-size: 28px; letter-spacing: 0.05em; }
.music-hero-text p { font-size: 12px; color: var(--white-60); }

/* ═══════════════════════════════════════════════════════════
   ARTISTS PAGE
═══════════════════════════════════════════════════════════ */
.artists-grid { display: flex; flex-direction: column; gap: 16px; padding: 8px 16px; }
.artist-profile-card {
  background: var(--black-card); border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg); overflow: hidden; cursor: pointer;
  transition: all var(--transition);
}
.artist-profile-card:hover { border-color: var(--red); box-shadow: 0 0 20px var(--red-glow-sm); }
.apc-cover { height: 100px; width: 100%; }
.apc-avatar {
  width: 70px; height: 70px; border-radius: 50%;
  border: 3px solid var(--red); margin: -35px 0 0 16px;
  box-shadow: 0 0 20px var(--red-glow);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; position: relative; z-index: 1;
}
.apc-info { padding: 8px 16px 16px; }
.apc-name { font-family: var(--font-display); font-size: 22px; letter-spacing: 0.04em; color: var(--white); }
.apc-role { font-size: 12px; color: var(--red); display: block; margin-bottom: 8px; }
.apc-bio { font-size: 12px; color: var(--white-60); line-height: 1.5; margin-bottom: 12px; }
.apc-stats { display: flex; gap: 20px; }
.apc-stat { display: flex; flex-direction: column; align-items: center; }
.apc-num { font-family: var(--font-display); font-size: 20px; color: var(--white); }
.apc-label { font-size: 10px; color: var(--white-60); }

/* ═══════════════════════════════════════════════════════════
   VIDEO PLAYER
═══════════════════════════════════════════════════════════ */
.player-page-full { background: var(--black); }
.player-container { height: 100%; display: flex; flex-direction: column; overflow-y: auto; }
.player-video-area { position: relative; width: 100%; aspect-ratio: 16/9; flex-shrink: 0; }
.player-screen { width: 100%; height: 100%; position: relative; overflow: hidden; }
.player-film-visual { width: 100%; height: 100%; }
.player-film-visual::after { content: '▶'; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); font-size: 60px; opacity: 0.1; }
.player-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 40%, rgba(0,0,0,0.3) 100%);
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 12px;
  transition: opacity var(--transition);
}
.player-back-btn {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(0,0,0,0.6); backdrop-filter: blur(10px);
  color: var(--white); font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  align-self: flex-start;
}
.player-center-controls {
  display: flex; align-items: center; justify-content: center; gap: 24px;
}
.player-skip-btn {
  color: var(--white-90); font-size: 11px; font-weight: 600;
  background: rgba(0,0,0,0.4); padding: 6px 10px; border-radius: 20px;
}
.player-main-play {
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--red); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 30px var(--red-glow), 0 0 60px var(--red-glow-sm);
  transition: all var(--transition);
}
.player-main-play:hover { transform: scale(1.1); box-shadow: 0 0 40px var(--red-glow); }
.player-bottom-controls { display: flex; flex-direction: column; gap: 8px; }
.player-progress-wrap { position: relative; }
.player-progress-bar {
  height: 4px; background: rgba(255,255,255,0.2);
  border-radius: 2px; cursor: pointer; position: relative;
}
.player-progress-fill {
  height: 100%; background: linear-gradient(90deg, var(--red-dark), var(--red));
  border-radius: 2px; position: relative;
}
.player-progress-thumb {
  position: absolute; top: 50%; transform: translate(-50%, -50%);
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--red); box-shadow: 0 0 10px var(--red-glow);
  cursor: pointer;
}
.player-controls-row { display: flex; align-items: center; justify-content: space-between; }
.player-left-ctrl, .player-right-ctrl { display: flex; align-items: center; gap: 10px; }
.player-ctrl-btn { color: var(--white-90); font-size: 14px; padding: 4px; transition: color var(--transition); }
.player-ctrl-btn:hover { color: var(--red); }
.player-time { font-size: 11px; color: var(--white-60); }
.player-info-panel { padding: 16px; flex: 1; }
.player-title-row { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 10px; }
.player-title { font-family: var(--font-display); font-size: 28px; letter-spacing: 0.04em; color: var(--white); }
.player-meta-row { display: flex; align-items: center; gap: 8px; margin-top: 4px; }
.player-badge {
  background: var(--red); color: var(--white);
  font-size: 10px; font-weight: 700; padding: 2px 7px; border-radius: 4px;
}
.player-year, .player-rating { font-size: 12px; color: var(--white-60); }
.player-actions-col { display: flex; gap: 8px; }
.player-action-btn {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--white-05); border: 1px solid var(--glass-border);
  color: var(--white-60); display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.player-action-btn:hover { background: var(--red); border-color: var(--red); color: var(--white); }
.player-desc { font-size: 13px; color: var(--white-60); line-height: 1.6; margin-bottom: 10px; }
.player-cast { font-size: 12px; color: var(--white-60); margin-bottom: 10px; }
.cast-label { color: var(--white-30); margin-right: 4px; }
.cast-names { color: var(--white-60); }
.player-tags { display: flex; gap: 8px; margin-bottom: 16px; }
.ptag {
  padding: 4px 12px; background: var(--white-05);
  border: 1px solid var(--glass-border); border-radius: 50px;
  font-size: 11px; color: var(--white-60);
}
.up-next-title { font-family: var(--font-display); font-size: 20px; letter-spacing: 0.04em; color: var(--white); margin-bottom: 12px; }
.up-next-list { display: flex; flex-direction: column; gap: 10px; }
.un-item {
  display: flex; gap: 12px; cursor: pointer;
  padding: 8px; border-radius: var(--radius-sm);
  background: var(--white-05); transition: background var(--transition);
}
.un-item:hover { background: var(--white-10); }
.un-thumb { width: 100px; height: 56px; border-radius: var(--radius-sm); flex-shrink: 0; }
.un-info { display: flex; flex-direction: column; justify-content: center; gap: 4px; }
.un-title { font-size: 13px; font-weight: 600; color: var(--white); }
.un-dur { font-size: 11px; color: var(--white-60); }

/* ═══════════════════════════════════════════════════════════
   PREMIUM PAGE
═══════════════════════════════════════════════════════════ */
.premium-hero-section {
  text-align: center; padding: 32px 20px 24px;
  position: relative; overflow: hidden;
}
.premium-hero-glow {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 300px; height: 200px;
  background: radial-gradient(ellipse, rgba(229,9,20,0.3) 0%, transparent 70%);
  pointer-events: none;
}
.premium-crown-big {
  font-size: 64px; color: var(--gold);
  filter: drop-shadow(0 0 20px var(--gold));
  animation: crownPulse 2s ease-in-out infinite;
  margin-bottom: 8px;
}
.premium-hero-title {
  font-family: var(--font-display);
  font-size: 48px; letter-spacing: 0.08em; color: var(--white);
  margin-bottom: 8px;
}
.premium-hero-sub { font-size: 14px; color: var(--white-60); }
.plans-container { display: flex; flex-direction: column; gap: 14px; padding: 0 16px; }
.plan-card {
  background: var(--black-card); border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg); padding: 20px;
  position: relative; transition: all var(--transition);
}
.plan-card:hover { border-color: var(--red); box-shadow: 0 0 20px var(--red-glow-sm); }
.featured-plan {
  border-color: var(--red);
  background: linear-gradient(135deg, #1a0000 0%, #0d0d0d 100%);
  box-shadow: 0 0 30px var(--red-glow-sm);
}
.plan-popular {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--red); color: var(--white);
  font-size: 10px; font-weight: 800; letter-spacing: 0.1em;
  padding: 4px 14px; border-radius: 50px;
  box-shadow: 0 0 15px var(--red-glow);
}
.plan-name { font-family: var(--font-display); font-size: 20px; letter-spacing: 0.1em; color: var(--white-60); margin-bottom: 4px; }
.plan-price { font-family: var(--font-display); font-size: 40px; color: var(--white); margin-bottom: 4px; }
.plan-price span { font-size: 16px; color: var(--white-60); }
.plan-save { font-size: 12px; color: #00c96e; margin-bottom: 12px; }
.plan-features { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.plan-features li { font-size: 13px; color: var(--white-60); }
.plan-features li.disabled { color: var(--white-30); }
.plan-btn {
  width: 100%; padding: 13px;
  background: var(--white-05); border: 1px solid var(--glass-border);
  color: var(--white); font-family: var(--font-display);
  font-size: 16px; letter-spacing: 0.08em;
  border-radius: var(--radius-sm); transition: all var(--transition);
}
.plan-btn:hover { background: var(--white-10); }
.premium-plan-btn {
  background: linear-gradient(135deg, var(--red-dark), var(--red));
  border-color: var(--red);
  box-shadow: 0 4px 20px var(--red-glow);
}
.premium-plan-btn:hover { box-shadow: 0 6px 30px var(--red-glow); transform: translateY(-1px); }
.premium-features-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 12px; padding: 20px 16px;
}
.pf-item {
  display: flex; align-items: center; gap: 10px;
  background: var(--white-05); border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm); padding: 12px;
}
.pf-icon { font-size: 20px; }
.pf-text { font-size: 12px; color: var(--white-60); }

/* ═══════════════════════════════════════════════════════════
   NOTIFICATIONS PAGE
═══════════════════════════════════════════════════════════ */
.notif-list { display: flex; flex-direction: column; padding: 8px 16px; gap: 2px; }
.notif-item {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 14px 12px; border-radius: var(--radius-sm);
  background: transparent; position: relative;
  transition: background var(--transition);
  border-bottom: 1px solid var(--white-05);
}
.notif-item:hover { background: var(--white-05); }
.notif-item.unread { background: rgba(229,9,20,0.04); }
.notif-icon-wrap {
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.notif-icon-wrap.new-release { background: rgba(229,9,20,0.15); border: 1px solid rgba(229,9,20,0.3); }
.notif-icon-wrap.music { background: rgba(139,0,139,0.15); border: 1px solid rgba(139,0,139,0.3); }
.notif-icon-wrap.premium { background: rgba(201,168,76,0.15); border: 1px solid rgba(201,168,76,0.3); }
.notif-icon-wrap.artist { background: rgba(0,139,139,0.15); border: 1px solid rgba(0,139,139,0.3); }
.notif-icon-wrap.award { background: rgba(201,168,76,0.15); border: 1px solid rgba(201,168,76,0.3); }
.notif-content { flex: 1; }
.notif-text { font-size: 13px; color: var(--white-60); line-height: 1.5; margin-bottom: 4px; }
.notif-text strong { color: var(--white); }
.notif-time { font-size: 11px; color: var(--white-30); }
.notif-dot-indicator {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--red); flex-shrink: 0; margin-top: 4px;
  box-shadow: 0 0 6px var(--red-glow);
}

/* ═══════════════════════════════════════════════════════════
   PROFILE PAGE
═══════════════════════════════════════════════════════════ */
.profile-hero {
  display: flex; flex-direction: column;
  align-items: center; padding: 24px 16px 20px;
  position: relative;
}
.profile-avatar-big {
  width: 90px; height: 90px; border-radius: 50%;
  background: linear-gradient(135deg, var(--red-dark), var(--red));
  display: flex; align-items: center; justify-content: center;
  font-size: 36px; font-weight: 700;
  border: 3px solid var(--red);
  box-shadow: 0 0 30px var(--red-glow);
  position: relative; z-index: 1;
}
.profile-glow-ring {
  position: absolute; top: 24px; left: 50%; transform: translateX(-50%);
  width: 90px; height: 90px; border-radius: 50%;
  background: var(--red-glow-sm); filter: blur(20px);
}
.profile-name { font-family: var(--font-display); font-size: 26px; letter-spacing: 0.04em; color: var(--white); margin-top: 12px; }
.profile-plan-badge {
  background: var(--white-10); border: 1px solid var(--glass-border);
  color: var(--white-60); font-size: 10px; font-weight: 700;
  letter-spacing: 0.1em; padding: 4px 12px; border-radius: 50px;
  margin: 6px 0 12px;
}
.upgrade-btn {
  padding: 10px 24px;
  background: linear-gradient(135deg, var(--gold), #f0c060);
  color: var(--black); font-family: var(--font-display);
  font-size: 14px; letter-spacing: 0.08em;
  border-radius: 50px; font-weight: 700;
  box-shadow: 0 4px 15px rgba(201,168,76,0.4);
  transition: all var(--transition);
}
.upgrade-btn:hover { transform: scale(1.04); }
.profile-stats {
  display: flex; justify-content: center; gap: 0;
  margin: 0 16px 16px;
  background: var(--white-05); border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg); overflow: hidden;
}
.ps-item {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; padding: 14px;
  border-right: 1px solid var(--glass-border);
}
.ps-item:last-child { border-right: none; }
.ps-num { font-family: var(--font-display); font-size: 24px; color: var(--white); }
.ps-label { font-size: 11px; color: var(--white-60); }
.profile-menu { padding: 0 16px; display: flex; flex-direction: column; gap: 2px; }
.pm-item {
  display: flex; align-items: center; gap: 14px;
  padding: 15px 12px; border-radius: var(--radius-sm);
  cursor: pointer; transition: background var(--transition);
  border-bottom: 1px solid var(--white-05);
}
.pm-item:hover { background: var(--white-05); }
.pm-icon { font-size: 18px; width: 24px; text-align: center; }
.pm-text { flex: 1; font-size: 14px; color: var(--white-90); }
.pm-arrow { color: var(--white-30); font-size: 18px; }
.logout-item .pm-text { color: var(--red); }

/* ═══════════════════════════════════════════════════════════
   ABOUT PAGE
═══════════════════════════════════════════════════════════ */
.about-hero {
  display: flex; flex-direction: column;
  align-items: center; padding: 24px 16px;
  background: radial-gradient(ellipse at center, rgba(229,9,20,0.1) 0%, transparent 70%);
}
.about-logo-big { display: flex; flex-direction: column; align-items: center; gap: 6px; margin-bottom: 16px; }
.about-crown-big { font-size: 56px; color: var(--gold); filter: drop-shadow(0 0 15px var(--gold)); }
.about-brand-big { display: flex; flex-direction: column; align-items: center; gap: 2px; }
.about-brand-big span:first-child { font-family: var(--font-display); font-size: 44px; letter-spacing: 0.2em; color: var(--white); }
.about-brand-big .red { font-family: var(--font-display); font-size: 30px; letter-spacing: 0.15em; color: var(--red); text-shadow: 0 0 15px var(--red); }
.about-brand-big .small { font-size: 10px; letter-spacing: 0.35em; color: var(--white-60); text-transform: uppercase; }
.about-tagline-big { font-family: var(--font-serif); font-style: italic; font-size: 15px; color: var(--gold); opacity: 0.8; text-align: center; }
.about-content { padding: 0 16px; }
.about-section { margin-bottom: 24px; }
.about-section-title { font-family: var(--font-display); font-size: 22px; letter-spacing: 0.04em; color: var(--white); margin-bottom: 10px; }
.about-text { font-size: 14px; color: var(--white-60); line-height: 1.7; margin-bottom: 10px; }
.about-stats-row {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 10px; margin: 20px 0;
}
.about-stat {
  display: flex; flex-direction: column; align-items: center;
  background: var(--white-05); border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm); padding: 12px 8px;
}
.as-num { font-family: var(--font-display); font-size: 22px; color: var(--red); text-shadow: 0 0 10px var(--red-glow); }
.as-label { font-size: 9px; color: var(--white-60); text-align: center; margin-top: 2px; }
.about-categories { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.about-cat {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  background: var(--white-05); border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm); padding: 14px 8px;
  font-size: 11px; color: var(--white-60);
}
.about-cat span:first-child { font-size: 24px; }

/* ═══════════════════════════════════════════════════════════
   CONTACT PAGE
═══════════════════════════════════════════════════════════ */
.contact-hero { text-align: center; padding: 20px 16px 16px; }
.contact-title { font-family: var(--font-display); font-size: 40px; letter-spacing: 0.05em; color: var(--white); }
.contact-sub { font-size: 14px; color: var(--white-60); margin-top: 4px; }
.contact-form-section { padding: 0 16px 20px; }
.social-section { padding: 0 16px 20px; }
.social-title { font-family: var(--font-display); font-size: 22px; letter-spacing: 0.04em; color: var(--white); margin-bottom: 14px; }
.social-links { display: flex; flex-direction: column; gap: 10px; }
.social-link {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 16px; border-radius: var(--radius-md);
  background: var(--white-05); border: 1px solid var(--glass-border);
  transition: all var(--transition);
}
.social-link:hover { background: var(--white-10); border-color: var(--red); transform: translateX(4px); }
.sl-icon {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 700;
}
.youtube .sl-icon { background: rgba(255,0,0,0.15); color: #ff0000; border: 1px solid rgba(255,0,0,0.3); }
.instagram .sl-icon { background: rgba(225,48,108,0.15); color: #e1306c; border: 1px solid rgba(225,48,108,0.3); }
.facebook .sl-icon { background: rgba(24,119,242,0.15); color: #1877f2; border: 1px solid rgba(24,119,242,0.3); }
.twitter .sl-icon { background: rgba(255,255,255,0.1); color: var(--white); border: 1px solid var(--glass-border); }
.whatsapp .sl-icon { background: rgba(37,211,102,0.15); color: #25d366; border: 1px solid rgba(37,211,102,0.3); }
.sl-info { display: flex; flex-direction: column; gap: 2px; }
.sl-name { font-size: 14px; font-weight: 600; color: var(--white); }
.sl-handle { font-size: 12px; color: var(--white-60); }
.contact-info-section { padding: 0 16px 20px; display: flex; flex-direction: column; gap: 10px; }
.ci-item { display: flex; align-items: center; gap: 12px; font-size: 13px; color: var(--white-60); }
.ci-icon { font-size: 18px; }

/* ═══════════════════════════════════════════════════════════
   BOTTOM NAVIGATION
═══════════════════════════════════════════════════════════ */
.bottom-nav {
  position: fixed; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 100%; max-width: 430px;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-around;
  background: rgba(5,5,5,0.97);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--glass-border);
  z-index: 50;
  padding: 0 8px;
}
.nav-item {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 4px;
  padding: 8px 4px;
  color: var(--white-30); font-size: 10px; font-weight: 500;
  transition: all var(--transition);
  position: relative;
}
.nav-item svg { transition: all var(--transition); }
.nav-item.active { color: var(--red); }
.nav-item.active svg { filter: drop-shadow(0 0 6px var(--red)); }
.nav-item.active::before {
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 30px; height: 2px; background: var(--red);
  border-radius: 0 0 2px 2px;
  box-shadow: 0 0 8px var(--red);
}
.nav-item:hover { color: var(--white-60); }

/* ═══════════════════════════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════════════════════════ */
@keyframes fadeInUp { from { opacity:0; transform:translateY(20px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@keyframes slideInRight { from { opacity:0; transform:translateX(30px); } to { opacity:1; transform:translateX(0); } }
@keyframes glowPulse { 0%,100% { box-shadow: 0 0 10px var(--red-glow); } 50% { box-shadow: 0 0 25px var(--red-glow), 0 0 50px var(--red-glow-sm); } }
@keyframes scanline {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(100vh); }
}

.page.active .content-section { animation: fadeInUp 0.4s ease both; }
.page.active .content-section:nth-child(2) { animation-delay: 0.05s; }
.page.active .content-section:nth-child(3) { animation-delay: 0.1s; }
.page.active .content-section:nth-child(4) { animation-delay: 0.15s; }
.page.active .content-section:nth-child(5) { animation-delay: 0.2s; }

/* ─── CINEMATIC SCANLINE EFFECT ─── */
#main-app::before {
  content: '';
  position: fixed; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(229,9,20,0.3), transparent);
  animation: scanline 8s linear infinite;
  pointer-events: none; z-index: 999;
}

/* ─── PARTICLE DOTS ─── */
.particle {
  position: absolute; border-radius: 50%;
  background: var(--red); opacity: 0;
  animation: particleFloat linear infinite;
}
@keyframes particleFloat {
  0% { opacity:0; transform:translateY(0) scale(0); }
  10% { opacity:0.6; transform:translateY(-20px) scale(1); }
  90% { opacity:0.2; }
  100% { opacity:0; transform:translateY(-200px) scale(0.5); }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════ */
@media (max-width: 380px) {
  .hero-title { font-size: 42px; }
  .section-title { font-size: 19px; }
  .poster-card { flex: 0 0 115px; }
  .poster-img { height: 165px; }
  .continue-card { flex: 0 0 145px; }
  .landscape-card { flex: 0 0 210px; }
  .about-stats-row { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 431px) {
  body { border-left: 1px solid var(--glass-border); border-right: 1px solid var(--glass-border); }
}