:root {
  --bg-main: #0a0612;
  --bg-surface: #120c22;
  --bg-surface-elevated: #1a1033;
  --purple-primary: #9b4dff;
  --purple-bright: #b829e3;
  --purple-glow: rgba(155, 77, 255, 0.45);
  --text-main: #f0eaf8;
  --text-muted: #8e7ea5;
  --border-subtle: rgba(155, 77, 255, 0.2);
}

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

body {
  background-color: var(--bg-main);
  color: var(--text-main);
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 3rem;
  background: rgba(10, 6, 18, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-subtle);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Cinzel', serif;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 2px;
}

.accent-text, .glow-purple {
  color: var(--purple-primary);
  text-shadow: 0 0 12px var(--purple-glow);
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  margin: 0 1.2rem;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.2s ease, text-shadow 0.2s ease;
}

.nav-links a:hover, .nav-links a.active {
  color: #ffffff;
  text-shadow: 0 0 8px var(--purple-primary);
}

/* Hero Section */
.hero-banner {
  position: relative;
  min-height: 65vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: radial-gradient(circle at center, #241147 0%, var(--bg-main) 70%);
  padding: 4rem 1.5rem;
  border-bottom: 1px solid var(--border-subtle);
}

.host-badge {
  display: inline-block;
  padding: 0.35rem 1.25rem;
  background: rgba(155, 77, 255, 0.15);
  border: 1px solid var(--purple-primary);
  color: var(--purple-primary);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 2.5px;
  margin-bottom: 1.5rem;
  box-shadow: 0 0 15px var(--purple-glow);
}

.hero-title {
  font-family: 'Cinzel', serif;
  font-size: 3.2rem;
  letter-spacing: 3px;
  margin-bottom: 1rem;
}

.hero-subtitle {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Buttons */
.btn-primary, .btn-glow {
  background: linear-gradient(135deg, var(--purple-primary), var(--purple-bright));
  color: #fff;
  border: none;
  padding: 0.75rem 1.75rem;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 0 20px var(--purple-glow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  border: 1px solid var(--border-subtle);
  padding: 0.75rem 1.75rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  margin-left: 1rem;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.btn-primary:hover, .btn-glow:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 28px rgba(184, 41, 227, 0.65);
}

.btn-secondary:hover {
  background: rgba(155, 77, 255, 0.1);
  border-color: var(--purple-primary);
}

/* Digital Locker Section */
.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 1.5rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-title {
  font-family: 'Cinzel', serif;
  font-size: 2.2rem;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}

.section-desc {
  color: var(--text-muted);
  font-size: 1rem;
}

/* Media Cards Grid */
.locker-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 2rem;
}

.media-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.media-card:hover {
  transform: translateY(-6px);
  border-color: var(--purple-primary);
  box-shadow: 0 8px 24px var(--purple-glow);
}

.poster-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 2/3;
  overflow: hidden;
}

.poster-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.media-card:hover .poster-img {
  transform: scale(1.05);
}

.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 6, 18, 0.2) 0%, rgba(10, 6, 18, 0.85) 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1rem;
  opacity: 0;
  transition: opacity 0.25s ease;
}

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

.badge {
  align-self: flex-start;
  background: rgba(10, 6, 18, 0.8);
  border: 1px solid var(--purple-primary);
  padding: 0.2rem 0.6rem;
  font-size: 0.75rem;
  font-weight: bold;
  border-radius: 4px;
}

.play-btn {
  background: var(--purple-primary);
  color: #fff;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
}

.card-info {
  padding: 1.2rem;
}

.card-info h3 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.card-info p {
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* Stats / Flair Bar */
.flair-banner {
  display: flex;
  justify-content: space-around;
  align-items: center;
  background: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 2.5rem 1.5rem;
  max-width: 900px;
  margin: 2rem auto 5rem;
  border-radius: 12px;
}

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

.stat-item h4 {
  font-size: 0.8rem;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}

.stat-highlight {
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
}

.status-online {
  color: #00ffaa;
  text-shadow: 0 0 10px rgba(0, 255, 170, 0.4);
}

.divider {
  width: 1px;
  height: 40px;
  background: var(--border-subtle);
}

/* Footer */
.site-footer {
  text-align: center;
  padding: 2rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border-subtle);
}