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

/* --- DESIGN SYSTEM & BASE --- */
:root {
  --bg-base: #000000;
  --bg-grid: rgba(0, 0, 0, 0.96);
  --bg-card: rgba(14, 9, 20, 0.7);
  --bg-card-hover: rgba(22, 14, 32, 0.95);
  --text-primary: #ffffff;
  --text-secondary: #e5e5e5;
  --text-muted: #858296;
  
  /* Neon Glow Colors */
  --neon-purple: #E50914; /* Netflix Red */
  --neon-cyan: #ff3e6c; /* Netflix Bright Red */
  --neon-orange: #ffaa00;
  --neon-pink: #e52e50;
  --neon-green: #22c55e;
  
  /* Fonts */
  --font-display: 'Poppins', sans-serif;
  --font-stats: 'Rajdhani', sans-serif;
  --font-body: 'Poppins', sans-serif;
  
  --transition-fast: 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-medium: 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-slow: 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

body {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.95) 100%),
              url("netflix_bg.png?v=2") no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
  color: var(--text-primary);
  font-family: var(--font-body);
  overflow-x: hidden;
  min-height: 100vh;
  position: relative;
}

/* Background Ambient Glow & Particles */
#particle-canvas {
  display: none;
}

.ambient-glow-1 {
  display: none;
}

.ambient-glow-2 {
  display: none;
}

/* --- STRUCTURE --- */
.app-container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1.5rem 6rem 1.5rem;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Header / Stats Row */
.header-stats {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2.5rem;
  font-family: var(--font-stats);
  letter-spacing: 0.05em;
  font-size: 1.1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 1rem;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255, 255, 255, 0.02);
  padding: 0.5rem 1rem;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(5px);
}

.status-dot {
  width: 8px;
  height: 8px;
  background-color: var(--neon-green);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--neon-green);
  animation: pulse-dot 1.5s infinite;
}

.stat-value {
  color: #fff;
  font-weight: 700;
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.2);
}

.stat-label {
  color: var(--text-muted);
  font-weight: 500;
}

/* --- HERO SECTION --- */
.hero-section {
  text-align: center;
  margin-bottom: 3.5rem;
  animation: fadeInDown 0.8s var(--transition-medium);
}

.hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(229, 9, 20, 0.2) 0%, rgba(0, 240, 255, 0.2) 100%);
  padding: 0.4rem 1.2rem;
  border-radius: 20px;
  border: 1px solid rgba(229, 9, 20, 0.4);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  box-shadow: 0 0 15px rgba(229, 9, 20, 0.15);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 1rem;
  background: linear-gradient(180deg, #ffffff 30%, #cdbaff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 30px rgba(188, 52, 250, 0.25);
}

.hero-subtitle {
  font-size: clamp(0.95rem, 2vw, 1.2rem);
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
  font-weight: 350;
}

.hero-subtitle span {
  color: #ff3e6c;
  font-weight: 600;
  text-shadow: 0 0 10px rgba(255, 62, 108, 0.3);
}

/* --- GAME GRID SECTION --- */
.selection-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
  width: 100%;
}

.game-grid {
  display: flex;
  justify-content: center;
  gap: 2rem;
  width: 100%;
  perspective: 1000px;
}

/* Game Card Styles */
.game-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 2.2rem 1.5rem 1.8rem 1.5rem;
  text-align: center;
  cursor: pointer;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform var(--transition-medium), 
              box-shadow var(--transition-medium), 
              border var(--transition-medium), 
              filter var(--transition-medium), 
              opacity var(--transition-medium);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transform-style: preserve-3d;
  max-width: 440px;
  width: 100%;
}

/* Hover effects (only when no card is selected) */
body:not(.card-selected-active) .game-card:hover {
  transform: translateY(-8px) scale(1.03);
  background: var(--bg-card-hover);
  border-color: var(--card-theme-color);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 
              0 0 25px var(--card-theme-accent);
}

body:not(.card-selected-active) .game-card:hover .game-card-svg {
  transform: scale(1.1) rotate(2deg);
  filter: drop-shadow(0 0 15px var(--card-theme-color));
}

body:not(.card-selected-active) .game-card:hover .card-btn {
  background: var(--card-theme-color);
  box-shadow: 0 0 15px var(--card-theme-color);
  color: #fff;
  border-color: transparent;
}

/* Card Top Badge */
.card-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.6rem;
  padding: 0.3rem 0.6rem;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  transition: all var(--transition-fast);
}

.game-card:hover .card-badge {
  background: var(--card-theme-color);
  border-color: transparent;
  color: #000;
  font-weight: 800;
  box-shadow: 0 0 10px var(--card-theme-accent);
}

/* Game Card Icon container */
.card-icon-container {
  width: 100px;
  height: 100px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* Movie Poster container overrides */
.card-icon-container.has-poster {
  width: 100%;
  height: 380px; /* Tall cinematic vertical ratio */
  max-width: 270px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.game-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-medium);
}

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

.game-card-svg {
  width: 100%;
  height: 100%;
  transition: transform var(--transition-medium), filter var(--transition-medium);
  filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.05));
}

/* Game Info */
.card-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  color: #fff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.reward-list {
  list-style: none;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 2rem;
}

.reward-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: rgba(255, 255, 255, 0.03);
  padding: 0.5rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.03);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.reward-item-icon {
  font-size: 1.1rem;
}

.reward-item-text {
  font-weight: 600;
  color: #fff;
}

/* Card CTA Button */
.card-btn {
  width: 100%;
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  color: var(--text-secondary);
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.8rem;
  border-radius: 10px;
  cursor: pointer;
  transition: all var(--transition-medium);
}

/* --- STATE: GAME SELECTED --- */
body.card-selected-active .game-card:not(.selected) {
  filter: blur(4px) grayscale(60%);
  opacity: 0.35;
  pointer-events: none;
  transform: scale(0.92);
  border-color: rgba(255, 255, 255, 0.02);
  box-shadow: none;
}

body.card-selected-active .game-card.selected {
  transform: scale(1.05) translateY(-5px);
  border-color: var(--card-theme-color);
  background: var(--bg-card-hover);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), 
              0 0 40px var(--card-theme-accent);
  z-index: 10;
}

.game-card.selected .game-card-svg {
  transform: scale(1.15);
  filter: drop-shadow(0 0 20px var(--card-theme-color));
}

.game-card.selected .card-btn {
  background: var(--card-theme-color);
  box-shadow: 0 0 20px var(--card-theme-color);
  color: #fff;
  border-color: transparent;
}

/* Locked Card overlay icons (extra touch for locking feel) */
.card-lock-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(6, 3, 9, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-medium);
  z-index: 5;
}

body.card-selected-active .game-card:not(.selected) .card-lock-overlay {
  opacity: 1;
}

.lock-icon-svg {
  width: 48px;
  height: 48px;
  color: rgba(255, 255, 255, 0.4);
  filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.6));
  animation: float-lock 3s ease-in-out infinite;
}

/* Selected Info Reveal */
.selection-info-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 500px;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity var(--transition-medium), transform var(--transition-medium);
}

.selection-info-panel.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.selection-text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.selection-text span {
  font-weight: 900;
  text-shadow: 0 0 10px var(--glow-color);
}

/* General CTA Button */
.btn-primary {
  width: 100%;
  max-width: 380px;
  background: linear-gradient(135deg, var(--neon-purple) 0%, var(--neon-cyan) 100%);
  border: none;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 1.2rem 2.5rem;
  border-radius: 12px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-medium);
  box-shadow: 0 0 25px rgba(229, 9, 20, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  z-index: 5;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.25),
    transparent
  );
  transition: 0.5s;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 0 35px rgba(0, 240, 255, 0.6), 
              0 0 15px rgba(229, 9, 20, 0.6);
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:active {
  transform: translateY(-1px) scale(0.99);
}

.btn-icon-svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  transition: transform var(--transition-fast);
}

.btn-primary:hover .btn-icon-svg {
  transform: translateX(4px);
}

/* --- FAKE VERIFICATION LOADING SCREEN --- */
.verification-container {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 600px;
  margin: 2rem auto;
  background: rgba(0, 0, 0, 0.95);
  border: 1px solid rgba(229, 9, 20, 0.3);
  border-radius: 8px;
  padding: 3rem 2.5rem;
  backdrop-filter: blur(15px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.9), 0 0 35px rgba(229, 9, 20, 0.15);
  text-align: center;
  animation: zoomIn 0.6s var(--transition-medium);
}

.verification-container.active {
  display: flex;
}

.verifying-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
  letter-spacing: 0.05em;
  background: linear-gradient(90deg, #fff, var(--neon-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.verifying-subtitle {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
}

.verifying-subtitle span {
  font-weight: 700;
}

/* Radial Loader Animation */
.loader-wrapper {
  position: relative;
  width: 120px;
  height: 120px;
  margin-bottom: 2.5rem;
}

.loader-svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.loader-track {
  fill: none;
  stroke: rgba(255, 255, 255, 0.05);
  stroke-width: 6;
}

.loader-fill {
  fill: none;
  stroke: url(#loader-gradient);
  stroke-width: 6;
  stroke-linecap: round;
  stroke-dasharray: 339; /* 2 * PI * r (r=54) */
  stroke-dashoffset: 339;
  transition: stroke-dashoffset 0.1s linear;
}

.loader-percent {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.05em;
}

/* Loading Steps List */
.steps-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
  text-align: left;
}

.step-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  padding: 0.9rem 1.2rem;
  border-radius: 12px;
  font-size: 0.95rem;
  color: var(--text-muted);
  transition: all var(--transition-medium);
}

.step-item.active {
  color: #fff;
  background: rgba(0, 240, 255, 0.03);
  border-color: rgba(0, 240, 255, 0.25);
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.05);
}

.step-item.completed {
  color: #fff;
  background: rgba(57, 255, 20, 0.03);
  border-color: rgba(57, 255, 20, 0.25);
}

.step-status-icon {
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.step-dot {
  width: 8px;
  height: 8px;
  background-color: var(--text-muted);
  border-radius: 50%;
}

.step-item.active .step-dot {
  background-color: var(--neon-cyan);
  box-shadow: 0 0 8px var(--neon-cyan);
  animation: pulse-dot 1.2s infinite;
}

.step-spinner {
  display: none;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(0, 240, 255, 0.2);
  border-top-color: var(--neon-cyan);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.step-item.active .step-spinner {
  display: block;
}

.step-item.active .step-dot {
  display: none;
}

.step-checkmark {
  display: none;
  width: 20px;
  height: 20px;
  color: var(--neon-green);
  filter: drop-shadow(0 0 5px var(--neon-green));
}

.step-item.completed .step-checkmark {
  display: block;
}

.step-item.completed .step-dot,
.step-item.completed .step-spinner {
  display: none;
}

.step-text {
  font-weight: 550;
  letter-spacing: 0.02em;
}

/* Linear Progress Bar */
.progress-bar-container {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.progress-bar-fill {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--neon-purple), var(--neon-cyan));
  box-shadow: 0 0 10px var(--neon-cyan);
  border-radius: 10px;
  transition: width 0.1s linear;
}

/* --- LIVE ACTIVITY FEED POPUP --- */
.activity-feed-container {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 100;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 320px;
  width: calc(100vw - 40px);
}

.activity-card {
  background: rgba(18, 12, 28, 0.9);
  border: 1px solid rgba(229, 9, 20, 0.3);
  box-shadow: 0 10px 30px rgba(0,0,0,0.6), 0 0 15px rgba(229, 9, 20, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 14px;
  padding: 0.8rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  pointer-events: all;
  animation: slideInUp 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.activity-card.fade-out {
  animation: slideOutLeft 0.5s ease-in forwards;
}

.activity-icon {
  width: 40px;
  height: 40px;
  background: rgba(229, 9, 20, 0.1);
  border: 1px solid rgba(229, 9, 20, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  box-shadow: 0 0 10px rgba(229, 9, 20, 0.2);
}

.activity-details {
  flex-grow: 1;
}

.activity-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.activity-desc {
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.activity-desc span {
  color: var(--neon-cyan);
  font-weight: 600;
}

.flag-icon {
  font-size: 0.95rem;
}

/* --- FOOTER DISCLAIMER --- */
.app-footer {
  text-align: center;
  margin-top: 4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.app-footer p {
  max-width: 600px;
  margin: 0 auto;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--text-secondary);
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

/* --- ANIMATIONS --- */
@keyframes pulse-dot {
  0% { transform: scale(1); opacity: 1; box-shadow: 0 0 0 0 rgba(57, 255, 20, 0.4); }
  70% { transform: scale(1.1); opacity: 0.8; box-shadow: 0 0 0 10px rgba(57, 255, 20, 0); }
  100% { transform: scale(1); opacity: 1; box-shadow: 0 0 0 0 rgba(57, 255, 20, 0); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes float-lock {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-8px) scale(1.05); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes zoomIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes slideInUp {
  from { opacity: 0; transform: translateY(50px) scale(0.9); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes slideOutLeft {
  from { opacity: 1; transform: translateX(0); }
  to { opacity: 0; transform: translateX(-100px); filter: blur(5px); }
}

/* --- MOBILE SPECIFIC LAYOUT & RESPONSIVENESS --- */
@media (max-width: 768px) {
  .app-container {
    padding: 1rem 1rem 5rem 1rem;
  }
  
  .header-stats {
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    padding-bottom: 0.8rem;
  }
  
  .hero-section {
    margin-bottom: 2rem;
  }
  
  .game-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  
  .game-card {
    padding: 1.8rem 1.2rem 1.4rem 1.2rem;
    flex-direction: row;
    align-items: center;
    text-align: left;
    gap: 1rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  }
  
  /* Restructuring card for mobile list style */
  .card-icon-container {
    width: 65px;
    height: 65px;
    margin-bottom: 0;
  }
  
  .game-card-info-wrap {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
  }
  
  .card-title {
    font-size: 1.2rem;
    margin-bottom: 0.4rem;
  }
  
  .reward-list {
    margin-bottom: 0;
    gap: 0.3rem;
  }
  
  .reward-item {
    padding: 0.3rem 0.5rem;
    font-size: 0.75rem;
    justify-content: flex-start;
    background: transparent;
    border: none;
  }
  
  .card-btn {
    display: none; /* Hide individual card button on mobile since selection works by tapping whole card */
  }
  
  /* Sticky Continue Button for Mobile */
  .selection-info-panel {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    max-width: 100%;
    background: linear-gradient(to top, rgba(6, 3, 9, 1) 70%, rgba(6, 3, 9, 0) 100%);
    padding: 1.5rem 1rem 1.5rem 1rem;
    box-shadow: 0 -15px 30px rgba(0,0,0,0.8);
    transform: translateY(100%);
    z-index: 99;
  }
  
  .selection-info-panel.visible {
    transform: translateY(0);
  }
  
  .btn-primary {
    max-width: 100%;
  }
  
  .card-badge {
    top: 8px;
    right: 8px;
    font-size: 0.5rem;
    padding: 0.2rem 0.4rem;
  }
  
  .verification-container {
    padding: 2rem 1.2rem;
    margin: 1rem auto;
  }
  
  .verifying-title {
    font-size: 1.4rem;
  }
  
  .activity-feed-container {
    bottom: 95px; /* Push above sticky button when active */
    left: 10px;
    width: calc(100vw - 20px);
  }
  
  /* Keep movie poster card vertical on mobile too */
  .game-card:has(.has-poster) {
    flex-direction: column !important;
    text-align: center !important;
    align-items: center !important;
    gap: 1.5rem !important;
    padding: 2.2rem 1.5rem 1.8rem 1.5rem !important;
  }
  
  .game-card:has(.has-poster) .card-icon-container.has-poster {
    width: 100% !important;
    max-width: 220px !important;
    height: 300px !important;
    margin-bottom: 0 !important;
  }
  
  .game-card:has(.has-poster) .game-card-info-wrap {
    text-align: center !important;
    width: 100% !important;
  }
  
  .game-card:has(.has-poster) .reward-item {
    justify-content: center !important;
  }
}

/* ==========================================================================
   NETFLIX THEME STYLING
   ========================================================================== */
.netflix-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  margin-bottom: 5rem;
  z-index: 10;
  position: relative;
}

.logo-wrap {
  width: 160px;
  height: 45px;
  display: flex;
  align-items: center;
}

.netflix-logo {
  width: 100%;
  height: 100%;
  fill: #e50914;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
}

.lang-selector {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 0.5rem 0.9rem;
  border-radius: 4px;
  font-size: 0.9rem;
  color: #fff;
  cursor: pointer;
  font-weight: 500;
  backdrop-filter: blur(5px);
  font-family: var(--font-body);
}

.globe-icon {
  width: 16px;
  height: 16px;
  min-width: 16px;
  min-height: 16px;
  flex-shrink: 0;
}

.caret-icon {
  width: 12px;
  height: 12px;
  min-width: 12px;
  min-height: 12px;
  flex-shrink: 0;
}

/* Netflix Hero Content */
.netflix-hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  max-width: 950px;
  margin: 4rem auto;
  padding: 0 1rem;
  animation: fadeInDown 0.8s var(--transition-medium);
  z-index: 10;
  position: relative;
}

.netflix-title {
  font-family: var(--font-body);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.15;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.netflix-subtitle {
  font-size: clamp(1.1rem, 2.2vw, 1.6rem);
  color: #fff;
  margin-bottom: 2rem;
  font-weight: 400;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
}

.netflix-cta-text {
  font-size: clamp(0.95rem, 1.8vw, 1.25rem);
  color: #fff;
  margin-bottom: 1.5rem;
  font-weight: 400;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.netflix-cta-form {
  width: 100%;
  display: flex;
  justify-content: center;
}

.netflix-btn {
  background-color: #e50914;
  border: none;
  color: #fff;
  font-family: var(--font-body);
  font-size: clamp(1.1rem, 2.2vw, 1.62rem);
  font-weight: 700;
  padding: 1.1rem 2.6rem;
  border-radius: 4px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  transition: background-color 0.2s ease, transform 0.1s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.netflix-btn:hover {
  background-color: #c40812;
  transform: scale(1.02);
}

.netflix-btn:active {
  transform: scale(0.98);
}

.chevron-right {
  width: clamp(18px, 2.2vw, 24px);
  height: clamp(18px, 2.2vw, 24px);
}
