/* CineStreamHub - Static CSS */
/* Color Variables */
:root {
  /* Dark theme - Solid black background */
  --background: #0a0a0a;
  --nav-background: rgba(10, 10, 10, 0.8);
  --foreground: #ffffff;
  --card: #141414;
  --card-foreground: #ffffff;
  --primary: #00d4ff;
  --primary-foreground: #0a0a0a;
  --secondary: #1a1a1a;
  --secondary-foreground: #e0e0e0;
  --muted: #2a2a2a;
  --muted-foreground: #888888;
  --border: #2a2a2a;
  --radius: 1rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.5;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--background);
}

::-webkit-scrollbar-thumb {
  background: #333;
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

/* ==================== LANDING PAGE STYLES ==================== */

/* Main Site Hidden by Default */
.main-site {
  display: none;
  opacity: 0;
}

.main-site.active {
  display: block;
  animation: mainSiteReveal 0.8s ease forwards;
}

@keyframes mainSiteReveal {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Landing Page Container */
.landing-page {
  position: relative;
  min-height: 100vh;
  overflow-x: hidden;
}

.landing-page.hiding {
  animation: landingFadeOut 0.6s ease forwards;
}

@keyframes landingFadeOut {
  0% { opacity: 1; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.05); pointer-events: none; }
}

/* Animated Background */
.landing-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.landing-gradient {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(0, 212, 255, 0.15), transparent),
    radial-gradient(ellipse 60% 40% at 80% 100%, rgba(0, 100, 200, 0.1), transparent),
    radial-gradient(ellipse 50% 30% at 20% 80%, rgba(0, 150, 255, 0.08), transparent),
    linear-gradient(180deg, #0a0a0a 0%, #050510 50%, #0a0a0a 100%);
}

.landing-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(0, 212, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 212, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 20%, transparent 70%);
  animation: gridPulse 8s ease-in-out infinite;
}

@keyframes gridPulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.landing-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  animation: glowFloat 12s ease-in-out infinite;
}

.landing-glow-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.3), transparent 70%);
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: 0s;
}

.landing-glow-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 150, 255, 0.2), transparent 70%);
  bottom: 10%;
  right: -100px;
  animation-delay: -4s;
}

.landing-glow-3 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(0, 180, 220, 0.15), transparent 70%);
  bottom: 20%;
  left: -100px;
  animation-delay: -8s;
}

@keyframes glowFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.1); }
}

/* Particles */
.particle-container {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--primary);
  border-radius: 50%;
  opacity: 0;
  animation: particleRise 8s linear infinite;
}

@keyframes particleRise {
  0% { 
    opacity: 0; 
    transform: translateY(100vh) scale(0); 
  }
  10% { 
    opacity: 0.8; 
  }
  90% { 
    opacity: 0.3; 
  }
  100% { 
    opacity: 0; 
    transform: translateY(-100px) scale(1); 
  }
}

/* Landing Content */
.landing-content {
  position: relative;
  z-index: 10;
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}

@media (min-width: 768px) {
  .landing-content {
    padding: 3rem 2rem;
  }
}

/* Landing Hero */
.landing-hero {
  text-align: center;
  padding: 2rem 0 3rem;
}

@media (min-width: 768px) {
  .landing-hero {
    padding: 4rem 0 5rem;
  }
}

/* Landing Logo */
.landing-logo-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
  animation: logoEntry 1s ease-out;
}

@keyframes logoEntry {
  0% { opacity: 0; transform: translateY(-30px); }
  100% { opacity: 1; transform: translateY(0); }
}

.landing-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 9999px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.landing-logo-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--primary);
  color: var(--primary-foreground);
  box-shadow: 0 0 30px rgba(0, 212, 255, 0.4);
}

.landing-logo-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.landing-logo-title {
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--foreground);
}

.landing-logo-subtitle {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--primary);
}

/* Landing Headline */
.landing-headline {
  margin-bottom: 1.5rem;
  animation: headlineEntry 1s ease-out 0.2s backwards;
}

@keyframes headlineEntry {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

.landing-headline-top {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--muted-foreground);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.5rem;
}

@media (min-width: 640px) {
  .landing-headline-top {
    font-size: 1.125rem;
  }
}

.landing-headline-main {
  display: block;
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.1;
  color: var(--foreground);
}

@media (min-width: 640px) {
  .landing-headline-main {
    font-size: 3.5rem;
  }
}

@media (min-width: 1024px) {
  .landing-headline-main {
    font-size: 4.5rem;
  }
}

.gradient-text {
  background: linear-gradient(135deg, var(--primary), #00ffcc, #00aaff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 5s ease-in-out infinite;
  background-size: 200% 200%;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* Landing Description */
.landing-description {
  max-width: 650px;
  margin: 0 auto 2.5rem;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--secondary-foreground);
  animation: descEntry 1s ease-out 0.4s backwards;
}

@media (min-width: 640px) {
  .landing-description {
    font-size: 1.125rem;
  }
}

@keyframes descEntry {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Landing Stats */
.landing-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  animation: statsEntry 1s ease-out 0.5s backwards;
}

@media (min-width: 640px) {
  .landing-stats {
    gap: 2.5rem;
  }
}

@keyframes statsEntry {
  0% { opacity: 0; transform: scale(0.9); }
  100% { opacity: 1; transform: scale(1); }
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: inline;
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
}

@media (min-width: 640px) {
  .stat-number {
    font-size: 2.5rem;
  }
}

.stat-suffix {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

@media (min-width: 640px) {
  .stat-suffix {
    font-size: 2rem;
  }
}

.stat-label {
  display: block;
  font-size: 0.75rem;
  color: var(--muted-foreground);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.25rem;
}

@media (min-width: 640px) {
  .stat-label {
    font-size: 0.8125rem;
  }
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, var(--border), transparent);
}

/* Landing CTA Button */
.landing-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, var(--primary), #00aaff);
  color: var(--primary-foreground);
  font-family: 'Outfit', sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s ease;
  animation: ctaEntry 1s ease-out 0.6s backwards;
  box-shadow: 0 4px 30px rgba(0, 212, 255, 0.3);
}

@keyframes ctaEntry {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

.landing-cta:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 40px rgba(0, 212, 255, 0.5);
}

.landing-cta:active {
  transform: translateY(-1px) scale(0.98);
}

.cta-text {
  position: relative;
  z-index: 2;
}

.cta-icon {
  position: relative;
  z-index: 2;
  display: flex;
  transition: transform 0.3s ease;
}

.landing-cta:hover .cta-icon {
  transform: translateX(4px);
}

.cta-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.3), transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.landing-cta:hover .cta-glow {
  opacity: 1;
}

/* Preview Sections */
.landing-preview {
  margin-bottom: 2.5rem;
  animation: previewEntry 1s ease-out 0.8s backwards;
}

@keyframes previewEntry {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: translateY(0); }
}

.preview-section-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'Outfit', sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 1rem;
  padding-left: 0.5rem;
}

.preview-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: rgba(0, 212, 255, 0.15);
  border-radius: 8px;
  color: var(--primary);
}

.preview-scroll {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 5%, black 95%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 5%, black 95%, transparent);
}

.preview-track {
  display: flex;
  gap: 1rem;
  animation: previewScroll 30s linear infinite;
  width: max-content;
}

.preview-track:hover {
  animation-play-state: paused;
}

@keyframes previewScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Preview Cards */
.preview-card {
  flex-shrink: 0;
  width: 140px;
  cursor: pointer;
  transition: all 0.3s ease;
}

@media (min-width: 640px) {
  .preview-card {
    width: 160px;
  }
}

.preview-card:hover {
  transform: scale(1.05);
}

.preview-card-image {
  position: relative;
  aspect-ratio: 2 / 3;
  border-radius: 0.75rem;
  overflow: hidden;
  background: var(--card);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.preview-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.preview-card:hover .preview-card-image img {
  transform: scale(1.1);
}

.preview-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: flex-end;
  padding: 0.75rem;
}

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

.preview-card-rating {
  background: rgba(0, 212, 255, 0.9);
  color: #000;
  padding: 0.2rem 0.5rem;
  border-radius: 0.25rem;
  font-size: 0.7rem;
  font-weight: 600;
}

.preview-card-title {
  margin-top: 0.5rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--foreground);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Landing Features */
.landing-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin: 3rem 0;
  animation: featuresEntry 1s ease-out 1s backwards;
}

@media (min-width: 768px) {
  .landing-features {
    grid-template-columns: repeat(3, 1fr);
  }
}

@keyframes featuresEntry {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: translateY(0); }
}

.feature-card {
  padding: 2rem 1.5rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 1rem;
  text-align: center;
  transition: all 0.3s ease;
}

.feature-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(0, 212, 255, 0.2);
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0, 212, 255, 0.1);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: rgba(0, 212, 255, 0.1);
  border-radius: 1rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.feature-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.feature-desc {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* Landing Footer */
.landing-footer {
  text-align: center;
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 2rem;
}

.landing-footer p {
  font-size: 0.8125rem;
  color: var(--muted-foreground);
}

/* ==================== ORIGINAL SITE STYLES ==================== */

/* Liquid Glass Effect - Transparent with blur */
.liquid-glass {
  background: var(--nav-background);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Glass Pill */
.glass-pill {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 9999px;
  transition: all 0.2s ease;
}

.glass-pill:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.15);
}

/* Neon Effects */
.neon-text {
  color: var(--primary);
}

/* ==================== TOPBAR ==================== */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
}

.topbar-content {
  max-width: 1800px;
  margin: 0 auto;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1rem;
}

@media (min-width: 1024px) {
  .topbar-content {
    padding: 0 2rem;
  }
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--primary);
  color: var(--primary-foreground);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: var(--foreground);
}

.logo-subtitle {
  font-size: 0.625rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--primary);
}

/* Search */
.search-container {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: none;
}

@media (min-width: 768px) {
  .search-container {
    display: flex;
    align-items: center;
  }
}

.search-bar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.625rem 1.25rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.search-icon {
  color: var(--muted-foreground);
  flex-shrink: 0;
}

.search-input {
  width: 16rem;
  background: transparent;
  border: none;
  outline: none;
  font-size: 0.875rem;
  color: var(--foreground);
}

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

@media (min-width: 1024px) {
  .search-input {
    width: 20rem;
  }
}

/* Actions */
.actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.avatar-pill {
  padding: 0.25rem;
  background: transparent;
  border: none;
}

.avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary);
}

.mobile-menu-btn {
  padding: 0.625rem;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--foreground);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
}

@media (min-width: 1024px) {
  .mobile-menu-btn {
    display: none;
  }
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  padding: 0.5rem 1rem 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-menu.open {
  display: block;
}

@media (min-width: 1024px) {
  .mobile-menu {
    display: none !important;
  }
}

.mobile-search {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1rem;
}

.mobile-search .search-input {
  width: 100%;
}

/* Header Spacer */
.header-spacer {
  height: 64px;
}

/* ==================== MAIN CONTENT ==================== */
.main-content {
  max-width: 1800px;
  margin: 0 auto;
  padding: 1.5rem 1rem;
}

@media (min-width: 1024px) {
  .main-content {
    padding: 2rem;
  }
}

/* Content Header */
.content-header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

@media (min-width: 640px) {
  .content-header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.page-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
}

@media (min-width: 640px) {
  .page-title {
    font-size: 1.875rem;
  }
}

/* Filters */
.filters {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  transition: all 0.2s ease;
  background: transparent;
  color: var(--muted-foreground);
}

.filter-btn:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--foreground);
  border-color: rgba(255, 255, 255, 0.15);
}

.filter-btn.active {
  background: var(--primary);
  color: var(--primary-foreground);
  border-color: var(--primary);
  font-weight: 600;
}

/* Content Section */
.content-section {
  margin-bottom: 2.5rem;
}

.section-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.section-indicator {
  width: 4px;
  height: 24px;
  border-radius: 9999px;
  background: var(--primary);
}

.section-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--primary);
}

/* Content Grid */
.content-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

@media (min-width: 640px) {
  .content-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 768px) {
  .content-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

@media (min-width: 1024px) {
  .content-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

@media (min-width: 1280px) {
  .content-grid {
    grid-template-columns: repeat(7, 1fr);
  }
}

/* Content Card */
.content-card {
  cursor: pointer;
}

.card-image-container {
  position: relative;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  border-radius: 1rem;
  transition: all 0.3s ease;
  background: var(--card);
}

.content-card:hover .card-image-container {
  transform: scale(1.02);
}

.card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.content-card:hover .card-image {
  transform: scale(1.05);
}

.card-title {
  margin-top: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--foreground);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Loading State */
.loading {
  grid-column: 1 / -1;
  text-align: center;
  padding: 2rem;
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

/* No Results State */
.no-results {
  grid-column: 1 / -1;
  text-align: center;
  padding: 2rem;
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

/* ==================== FOOTER ==================== */
.footer {
  margin-top: 4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: var(--background);
}

.footer-content {
  max-width: 1800px;
  margin: 0 auto;
  padding: 2rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .footer-content {
    flex-direction: row;
    padding: 2rem;
  }
}

/* Footer Brand */
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

@media (min-width: 768px) {
  .footer-brand {
    align-items: flex-start;
  }
}

.footer-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--foreground);
}

.footer-tagline {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

/* Footer Social */
.footer-social {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.social-label {
  margin-right: 0.75rem;
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: transparent;
  color: var(--muted-foreground);
  transition: all 0.2s ease;
  text-decoration: none;
}

.social-link:hover {
  border-color: var(--primary);
  color: var(--primary);
}

/* Footer Donate */
.footer-donate {
  display: flex;
  align-items: center;
}

.donate-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  background: linear-gradient(135deg, #ff6b6b, #ee5a5a);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.donate-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
}

.donate-btn:active {
  transform: translateY(0);
}

/* Footer Copyright */
.footer-copyright {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.sanctum-text {
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ==================== CARD ENHANCEMENTS ==================== */
.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0.75rem;
}

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

.card-rating {
  align-self: flex-end;
  background: rgba(0, 212, 255, 0.9);
  color: #000;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  font-size: 0.75rem;
  font-weight: 600;
}

.card-play {
  align-self: center;
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: var(--primary-foreground);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0.8);
  transition: transform 0.3s ease;
}

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

.card-year {
  display: block;
  font-size: 0.75rem;
  color: var(--muted-foreground);
  margin-top: 0.125rem;
}

/* ==================== VIDEO PLAYER MODAL ==================== */
.player-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.player-backdrop {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: blur(30px) brightness(0.3);
}

.player-backdrop::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.85);
}

.player-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  max-height: 95vh;
  overflow-y: auto;
  background: rgba(20, 20, 20, 0.95);
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.player-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.player-info {
  flex: 1;
}

.player-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.player-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.player-rating {
  color: var(--primary);
}

.player-close {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--foreground);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.player-close:hover {
  background: var(--primary);
  color: var(--primary-foreground);
  border-color: var(--primary);
}

.player-controls {
  padding: 1rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
  .player-controls {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.server-selector {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.server-label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-right: 0.5rem;
}

.server-btn {
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  transition: all 0.2s ease;
  background: transparent;
  color: var(--muted-foreground);
}

.server-btn:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--foreground);
}

.server-btn.active {
  background: var(--primary);
  color: var(--primary-foreground);
  border-color: var(--primary);
}

.episode-selector {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.player-select {
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--foreground);
  cursor: pointer;
  min-width: 120px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23888' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  padding-right: 2rem;
}

.player-select:focus {
  outline: none;
  border-color: var(--primary);
}

.player-select option {
  background: #1a1a1a;
  color: var(--foreground);
  padding: 0.5rem;
}

.play-episode-btn {
  padding: 0.5rem 1.25rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  background: var(--primary);
  color: var(--primary-foreground);
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.play-episode-btn:hover {
  filter: brightness(1.1);
}

.player-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 aspect ratio */
  background: #000;
}

.video-iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.player-description {
  padding: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.player-description p {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--secondary-foreground);
}

/* ==================== SECURITY OVERLAY (ADBLOCK/VPN) ==================== */
.security-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  z-index: 99999; /* Higher than everything else on the site */
  display: none; /* Hidden by default */
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.security-overlay.active {
  display: flex;
}

.security-modal {
  background: var(--card);
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: 1.5rem;
  padding: 2.5rem 2rem;
  max-width: 450px;
  width: 100%;
  text-align: center;
  box-shadow: 0 0 40px rgba(0, 212, 255, 0.1);
  animation: modalPop 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalPop {
  0% { transform: scale(0.95); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

.security-icon {
  color: #f87171; /* Warning Red */
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
}

.security-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.75rem;
}

.security-message {
  color: var(--secondary-foreground);
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.security-steps {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 1rem;
  padding: 1.25rem;
  text-align: left;
  margin-bottom: 1.5rem;
}

.step {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.step:last-child {
  margin-bottom: 0;
}

.security-btn {
  width: 100%;
  padding: 0.875rem;
  background: var(--primary);
  color: var(--primary-foreground);
  border: none;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.security-btn:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 212, 255, 0.3);
}

/* ==================== DONATE MODAL ==================== */
.donate-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  animation: fadeIn 0.3s ease;
}

.donate-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.donate-container {
  position: relative;
  width: 100%;
  max-width: 420px;
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.5rem;
  padding: 2rem;
  text-align: center;
  animation: modalPop 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.donate-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--foreground);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.donate-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.donate-icon {
  color: #ff6b6b;
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
}

.donate-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.donate-description {
  font-size: 0.9375rem;
  color: var(--muted-foreground);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.donate-amounts {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 1rem;
}

.donate-amount-btn {
  padding: 0.75rem 1.25rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
  color: var(--foreground);
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.donate-amount-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.donate-amount-btn.active {
  background: var(--primary);
  color: var(--primary-foreground);
  border-color: var(--primary);
}

.donate-custom {
  margin-bottom: 1.5rem;
}

.donate-custom label {
  display: block;
  font-size: 0.8125rem;
  color: var(--muted-foreground);
  margin-bottom: 0.5rem;
}

.donate-input-wrapper {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
  overflow: hidden;
}

.donate-currency {
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  color: var(--muted-foreground);
  font-weight: 600;
}

.donate-input {
  flex: 1;
  padding: 0.75rem;
  background: transparent;
  border: none;
  outline: none;
  color: var(--foreground);
  font-size: 0.9375rem;
}

.donate-input::placeholder {
  color: var(--muted-foreground);
}

.donate-paypal-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  padding: 1rem;
  background: #0070ba;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  margin-bottom: 1rem;
}

.donate-paypal-btn:hover {
  background: #005ea6;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 112, 186, 0.4);
}

.donate-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.donate-note svg {
  color: #22c55e;
}
