/* Design System & Core Styles - Panda Gaming Sweepstakes Landing Page */

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

:root {
  /* Color Palette */
  --bg-dark: #07050e;
  --bg-card: rgba(13, 11, 26, 0.65);
  --bg-card-hover: rgba(22, 19, 44, 0.8);
  
  --primary: #9e66ff;
  --primary-glow: rgba(158, 102, 255, 0.3);
  --primary-gradient: linear-gradient(135deg, #7c4dff 0%, #ff4db2 100%);
  --btn-gradient: linear-gradient(90deg, #8c52ff 0%, #ff4db2 100%);
  --btn-gradient-hover: linear-gradient(90deg, #9f6cff 0%, #ff6bc1 100%);
  
  --secondary: #ff4db2;
  --accent-teal: #00e676;
  --accent-teal-glow: rgba(0, 230, 118, 0.25);
  --accent-gold: #ffb300;
  
  --text-white: #faf9fb;
  --text-gray: #a8a5b5;
  --text-dim: #737085;
  
  --border-color: rgba(158, 102, 255, 0.15);
  --border-color-glow: rgba(158, 102, 255, 0.35);
  
  /* Fonts */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Layout */
  --max-width: 1200px;
  --header-height: 80px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-white);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  
  /* Cosmic Background Grid Pattern */
  background-image: 
    radial-gradient(circle at 50% 0%, rgba(124, 77, 255, 0.15) 0%, transparent 60%),
    radial-gradient(circle at 0% 50%, rgba(255, 77, 178, 0.03) 0%, transparent 40%),
    radial-gradient(circle at 100% 80%, rgba(0, 230, 118, 0.02) 0%, transparent 35%),
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 100% 100%, 40px 40px, 40px 40px;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
  background: var(--border-color);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.02em;
}

p {
  color: var(--text-gray);
}

a {
  color: inherit;
  text-decoration: none;
}

/* Layout Utilities */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.glow-btn {
  background: var(--btn-gradient);
  color: var(--text-white);
  padding: 14px 28px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px var(--primary-glow);
  position: relative;
  overflow: hidden;
}

.glow-btn:hover {
  background: var(--btn-gradient-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(158, 102, 255, 0.5);
}

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

.glow-btn::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transform: rotate(45deg);
  transition: all 0.5s ease;
  opacity: 0;
}

.glow-btn:hover::after {
  opacity: 1;
  left: 120%;
}

.outline-btn {
  background: transparent;
  color: var(--text-white);
  padding: 12px 26px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid var(--border-color);
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.outline-btn:hover {
  border-color: var(--primary);
  background: rgba(158, 102, 255, 0.05);
  box-shadow: 0 0 15px rgba(158, 102, 255, 0.1);
}

/* Glassmorphism Panels */
.glass-panel {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.glass-panel:hover {
  border-color: var(--border-color-glow);
  box-shadow: 0 12px 40px rgba(158, 102, 255, 0.1);
}

/* Header */
.site-header {
  height: var(--header-height);
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7, 5, 14, 0.7);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid var(--border-color);
}

.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  height: 70px;
  width: auto;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 800;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-gray);
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-cta {
  display: flex;
  align-items: center;
}

.mobile-cta {
  display: none;
}

.burger-menu-btn {
  display: none;
}

/* Hero Section */
.hero-section {
  padding: 80px 0 60px 0;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-content h1 span {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
}

.hero-content p {
  font-size: 1.15rem;
  margin-bottom: 40px;
  max-width: 580px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  gap: 40px;
}

.hero-stat-item h3 {
  font-size: 2.2rem;
  color: var(--text-white);
  margin-bottom: 4px;
}

.hero-stat-item p {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dim);
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-portal {
  width: 100%;
  max-width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.portal-glow {
  position: absolute;
  top: 10%;
  left: 10%;
  right: 10%;
  bottom: 10%;
  border-radius: 50%;
  background: var(--primary-gradient);
  filter: blur(60px);
  opacity: 0.3;
  animation: pulse 8s infinite alternate;
  z-index: 1;
}

.portal-border {
  display: none;
}

.portal-img {
  width: 100%;
  height: auto;
  max-height: 480px;
  object-fit: contain;
  position: relative;
  z-index: 2;
  border-radius: 0;
  border: none;
  box-shadow: none;
  animation: float-hero 6s ease-in-out infinite;
  filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.6));
}

@keyframes float-hero {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}

/* Hero Sign Up Card */
.hero-signup-card {
  width: 100%;
  max-width: 420px;
  padding: 40px;
  border-radius: 20px;
  background: var(--bg-card);
  border: 1.5px solid var(--border-color);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: left;
}

.hero-signup-card .card-glow {
  position: absolute;
  top: -50px;
  right: -50px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(158, 102, 255, 0.18) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
}

.hero-signup-card .card-badge {
  align-self: flex-start;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--accent-teal);
  background: rgba(0, 230, 118, 0.12);
  border: 1px solid var(--accent-teal);
  padding: 6px 14px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-signup-card h3 {
  font-size: 1.8rem;
  color: var(--text-white);
  margin: 0;
  font-weight: 700;
}

.hero-signup-card p {
  font-size: 0.95rem;
  color: var(--text-gray);
  margin: 0;
  line-height: 1.5;
}

.hero-signup-card p strong {
  color: var(--text-white);
}

.hero-signup-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 8px;
}

.hero-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  padding: 14px 18px;
  border-radius: 8px;
  color: var(--text-white);
  font-size: 0.95rem;
  outline: none;
  transition: all 0.3s ease;
}

.hero-input:focus {
  border-color: var(--primary);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 10px rgba(158, 102, 255, 0.25);
}

.hero-submit-btn {
  width: 100%;
  padding: 14px;
  font-size: 1rem;
  justify-content: center;
}

.card-security-footer {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-dim);
  margin-top: 8px;
}

.card-security-footer svg {
  flex-shrink: 0;
}

.hero-peeking-panda {
  position: absolute;
  bottom: -40px;
  right: -50px;
  width: 160px;
  height: auto;
  z-index: 1;
  transform: rotate(-15deg);
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.5));
  animation: float-hero 5s ease-in-out infinite alternate;
}

@media (max-width: 992px) {
  .hero-peeking-panda {
    display: none;
  }
}

/* Promotions Slider Section */
.promo-section {
  padding: 80px 0;
  position: relative;
}

.promo-section .section-header {
  text-align: left;
  margin-bottom: 48px;
}

.slider-container {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  padding: 48px 0;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.slider-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  width: 100%;
}

.slide-item {
  width: 100%;
  flex-shrink: 0;
  padding: 0 64px;
  transition: opacity 0.5s ease;
}

.slide-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

.slide-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  position: relative;
  z-index: 2;
  padding: 24px 0;
}

.slide-badge {
  background: rgba(158, 102, 255, 0.15);
  border: 1px solid var(--primary);
  color: var(--primary);
  padding: 6px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
  display: inline-block;
  position: relative;
  z-index: 2;
}

.slide-content h3 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  line-height: 1.2;
  margin-bottom: 16px;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  z-index: 2;
}

.slide-content p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text-gray);
  margin-bottom: 30px;
  max-width: 580px;
  position: relative;
  z-index: 2;
}

.promo-code-box {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(7, 5, 14, 0.5);
  border: 1px dashed var(--primary);
  border-radius: var(--radius-sm);
  padding: 8px 8px 8px 16px;
  margin-bottom: 30px;
  max-width: 320px;
  width: 100%;
  position: relative;
  z-index: 2;
}

.promo-code-box .code-text {
  font-family: monospace;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--primary);
  flex-grow: 1;
}

.promo-code-box .promo-copy-btn {
  background: var(--primary);
  color: var(--bg-dark);
  border: none;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 6px;
  cursor: pointer;
  font-family: var(--font-body);
  transition: all 0.2s ease;
}

.promo-code-box .promo-copy-btn:hover {
  background: var(--text-white);
}

.slide-cta {
  min-width: 180px;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.slide-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 260px;
}

.visual-badge {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(13, 11, 26, 0.8);
  border: 2px solid var(--border-color-glow);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  animation: float 6s ease-in-out infinite;
}

.visual-icon {
  font-size: 4.5rem;
}

.visual-glow-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 250px;
  height: 250px;
  border-radius: 50%;
  filter: blur(50px);
  opacity: 0.35;
  z-index: 1;
  pointer-events: none;
}

.visual-glow-glow.glow-pink {
  background: radial-gradient(circle, rgba(255, 77, 178, 0.6) 0%, transparent 70%);
}

.visual-glow-glow.glow-purple {
  background: radial-gradient(circle, rgba(124, 77, 255, 0.6) 0%, transparent 70%);
}

.visual-glow-glow.glow-green {
  background: radial-gradient(circle, rgba(0, 230, 118, 0.6) 0%, transparent 70%);
}

.visual-glow-glow.glow-gold {
  background: radial-gradient(circle, rgba(255, 179, 0, 0.6) 0%, transparent 70%);
}

.slider-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(13, 11, 26, 0.7);
  border: 1px solid var(--border-color);
  color: var(--text-gray);
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
  z-index: 10;
  backdrop-filter: blur(5px);
}

.slider-control:hover {
  border-color: var(--primary);
  color: var(--text-white);
  background: rgba(158, 102, 255, 0.1);
  box-shadow: 0 0 15px rgba(158, 102, 255, 0.3);
}

.slider-control.prev-btn {
  left: 16px;
}

.slider-control.next-btn {
  right: 16px;
}

.slider-indicators {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.indicator-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}

.indicator-dot:hover {
  background: rgba(255, 255, 255, 0.5);
}

.indicator-dot.active {
  background: var(--primary);
  width: 28px;
  border-radius: 50px;
  box-shadow: 0 0 10px var(--primary);
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
  100% { transform: translateY(0px); }
}

/* Sweepstakes Grid Section */
.sweepstakes-section {
  padding: 80px 0;
  background: rgba(7, 5, 14, 0.5);
  position: relative;
}

.carousel-wrapper {
  position: relative;
  width: 100%;
}

.cards-grid {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  gap: 32px;
  padding: 16px 4px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.cards-grid::-webkit-scrollbar {
  display: none;
}

.sweep-card {
  padding: 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  flex: 0 0 calc(33.333% - 21.33px);
  scroll-snap-align: start;
}

.carousel-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(13, 11, 26, 0.85);
  border: 1px solid var(--border-color);
  color: var(--text-white);
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

.carousel-control:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-50%) scale(1.1);
}

.carousel-control.prev-btn {
  left: -22px;
}

.carousel-control.next-btn {
  right: -22px;
}

.sweep-card-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 16px;
}

.sweep-badge {
  padding: 4px 12px;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 50px;
  text-transform: uppercase;
  background: rgba(158, 102, 255, 0.1);
  border: 1px solid var(--primary);
  color: var(--primary);
  display: inline-block;
}

.sweep-badge.status-open {
  background: rgba(0, 230, 118, 0.1);
  border: 1px solid var(--accent-teal);
  color: var(--accent-teal);
}

.sweep-badge.status-drawing-soon {
  background: rgba(158, 102, 255, 0.15);
  border: 1px solid var(--primary);
  color: var(--primary);
}

.sweep-badge.status-full {
  background: rgba(255, 179, 0, 0.1);
  border: 1px solid var(--accent-gold);
  color: var(--accent-gold);
}

.sweep-card-subtext {
  color: var(--text-dim);
  font-size: 0.82rem;
  font-weight: 500;
}

.sweep-card h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
  margin-top: 0;
}

.sweep-card p.description {
  font-size: 0.9rem;
  color: var(--text-gray);
  margin-bottom: 24px;
  flex-grow: 1;
}

.sweep-metrics {
  margin-bottom: 24px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: var(--radius-sm);
  padding: 16px;
}

.metric-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
}

.metric-row:last-child {
  margin-bottom: 0;
}

.metric-label {
  color: var(--text-dim);
  font-size: 0.85rem;
}

.metric-value {
  font-weight: 700;
  font-size: 1rem;
}

.metric-value.seats {
  color: var(--text-white);
}

.metric-value.entry-fee {
  color: var(--accent-gold);
}

.metric-value.seat-price {
  color: var(--accent-teal);
}

.metric-value.status-val {
  color: var(--primary);
}

.progress-container {
  margin-top: 12px;
}

.progress-header {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  margin-bottom: 6px;
  color: var(--text-gray);
}

.progress-bar-bg {
  height: 8px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  background: var(--primary-gradient);
  border-radius: 10px;
  position: relative;
}

.progress-bar-fill::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.2) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  animation: shine 2s infinite;
}

.sweep-btn {
  width: 100%;
  text-align: center;
  justify-content: center;
}

/* Winnings Feed & Split Layout */
.winnings-layout {
  padding: 80px 0;
}

/* How it Works */
.how-it-works h2 {
  font-size: 2.2rem;
  margin-bottom: 40px;
}

.steps-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.step-card {
  display: flex;
  gap: 24px;
  padding: 28px;
}

.step-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  opacity: 0.8;
  font-family: var(--font-heading);
  line-height: 1;
}

.step-info h4 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

/* Live Winners Widget */
.winners-widget {
  padding: 32px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.winners-widget h3 {
  font-size: 1.4rem;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.live-indicator {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent-teal);
  text-transform: uppercase;
}

.live-indicator::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--accent-teal);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent-teal);
  animation: pulse 1.5s infinite alternate;
}

.winnings-feed-container {
  overflow: hidden;
  position: relative;
  height: 380px;
}

.winnings-feed {
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.5s ease-in-out;
}

.winner-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.03);
  animation: slideIn 0.4s ease-out;
}

.winner-user {
  display: flex;
  align-items: center;
  gap: 12px;
}

.winner-avatar {
  width: 36px;
  height: 36px;
  background: rgba(158, 102, 255, 0.15);
  border: 1px solid var(--primary);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  color: var(--primary);
  font-size: 0.85rem;
}

.winner-meta h4 {
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.winner-meta p {
  font-size: 0.75rem;
  color: var(--text-dim);
}

.winner-prize {
  font-weight: 800;
  color: var(--accent-teal);
  font-family: var(--font-heading);
  text-align: right;
}

.winner-prize p {
  font-size: 0.65rem;
  color: var(--text-dim);
}

/* FAQ Accordion Section */
.faq-section {
  padding: 80px 0;
}

.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  overflow: hidden;
  border-radius: var(--radius-sm);
}

.faq-question-btn {
  width: 100%;
  background: transparent;
  border: none;
  padding: 24px;
  text-align: left;
  color: var(--text-white);
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background 0.3s ease;
}

.faq-question-btn:hover {
  background: rgba(158, 102, 255, 0.03);
}

.faq-arrow {
  width: 24px;
  height: 24px;
  border: 2px solid var(--border-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.faq-arrow svg {
  width: 12px;
  height: 12px;
  fill: var(--text-gray);
  transition: fill 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
  border-top: 1px solid transparent;
}

.faq-answer-inner {
  padding: 0 24px 24px 24px;
  font-size: 0.95rem;
  color: var(--text-gray);
}

/* Active FAQ State */
.faq-item.active {
  border-color: var(--border-color-glow);
  box-shadow: 0 4px 20px rgba(158, 102, 255, 0.05);
}

.faq-item.active .faq-answer {
  max-height: 1000px;
  transition: max-height 0.4s cubic-bezier(1, 0, 1, 0);
  border-top-color: var(--border-color);
}

.faq-item.active .faq-arrow {
  transform: rotate(180deg);
  border-color: var(--primary);
}

.faq-item.active .faq-arrow svg {
  fill: var(--primary);
}

/* Testimonials Section */
.testimonials-section {
  padding: 80px 0;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.test-card {
  padding: 32px;
  display: flex;
  flex-direction: column;
}

.test-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.test-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  background: rgba(158, 102, 255, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 800;
  color: var(--primary);
}

.test-meta h4 {
  font-size: 1rem;
}

.test-meta p {
  font-size: 0.8rem;
  color: var(--text-dim);
}

.test-body {
  font-size: 0.95rem;
  color: var(--text-gray);
  margin-bottom: 24px;
  flex-grow: 1;
}

.test-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.test-winnings {
  font-size: 0.85rem;
  color: var(--text-dim);
}

.test-winnings span {
  color: var(--accent-teal);
  font-weight: 700;
}

.test-stars {
  display: flex;
  gap: 4px;
}

.test-stars svg {
  width: 14px;
  height: 14px;
  fill: var(--accent-gold);
}

/* Modal Popup (Lucky Wheel Result) */


/* Footer */
.site-footer {
  background: #040308;
  border-top: 1px solid var(--border-color);
  padding: 60px 0 30px 0;
  color: var(--text-gray);
  margin-top: 80px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

.footer-brand .logo-wrapper {
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.9rem;
  max-width: 320px;
}

.footer-links h4 {
  color: var(--text-white);
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

.footer-legal-warning {
  margin-top: 24px;
  font-size: 0.75rem;
  color: var(--text-dim);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 16px;
}

/* Animations */
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.25;
  }
  100% {
    transform: scale(1.05);
    opacity: 0.35;
  }
}

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

@keyframes shine {
  0% { left: -100%; }
  100% { left: 100%; }
}

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

/* Responsive Breakpoints */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .hero-content h1 {
    font-size: 3rem;
  }
  
  .hero-content p {
    margin: 0 auto 32px auto;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .hero-stats {
    justify-content: center;
  }
  

  
  .slider-container {
    padding: 40px 0 64px 0;
  }
  
  .slide-item {
    padding: 0 32px;
  }
  
  .slide-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .slide-content {
    align-items: center;
    text-align: center;
  }
  
  .slider-control {
    display: none;
  }
  

  .testimonial-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .sweep-card {
    flex: 0 0 calc(50% - 16px);
  }
}

@media (max-width: 768px) {
  .nav-cta {
    display: none;
  }

  .burger-menu-btn {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 110;
  }

  .burger-bar {
    width: 100%;
    height: 2px;
    background-color: var(--text-white);
    border-radius: 2px;
    transition: all 0.3s ease;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(7, 5, 14, 0.96);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-left: 1px solid var(--border-color);
    padding: 110px 24px 32px 24px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 105;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.6);
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-menu .nav-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
    width: 100%;
  }

  .nav-menu .nav-links a {
    font-size: 1.15rem;
    font-weight: 600;
  }

  .mobile-cta {
    display: block;
    margin-top: auto;
    width: 100%;
  }

  .mobile-cta .glow-btn {
    width: 100%;
    justify-content: center;
  }

  .burger-menu-btn.active .burger-bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .burger-menu-btn.active .burger-bar:nth-child(2) {
    opacity: 0;
  }

  .burger-menu-btn.active .burger-bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
  
  .sweep-card {
    flex: 0 0 100%;
  }
  
  .carousel-control {
    display: none;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}


/* manual */

.section-header p {
  padding: 20px 0;
}

/* Provably Fair Card Styles */
.fairness-card {
  margin-top: 48px;
  padding: 32px;
  display: flex;
  gap: 28px;
  align-items: flex-start;
  text-align: left;
}

.fairness-badge {
  width: 54px;
  height: 64px;
  background: rgba(0, 230, 118, 0.15);
  border: 1.5px solid var(--accent-teal);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.6rem;
  flex-shrink: 0;
  box-shadow: 0 0 15px rgba(0, 230, 118, 0.1);
}

.fairness-content h3 {
  font-size: 1.45rem;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 12px;
  color: var(--text-white);
}

.fairness-content p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-gray);
  margin-bottom: 20px;
}

.fairness-features {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.fairness-feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--text-dim);
  font-weight: 500;
}

.fairness-feature-item svg {
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .fairness-card {
    flex-direction: column;
    gap: 20px;
    padding: 24px;
  }
}

.promo-slide-img {
  max-width: 260px;
  max-height: 260px;
  object-fit: contain;
  z-index: 2;
  filter: drop-shadow(0 12px 32px rgba(158, 102, 255, 0.4));
  animation: float 6s ease-in-out infinite;
}

/* Header button sizing and alignment */
.header-sec-btn {
  margin-right: 12px;
  padding: 10px 18px;
  font-size: 0.88rem;
  border-width: 1px;
}

.mobile-sec-btn {
  margin-bottom: 12px;
  width: 100%;
  justify-content: center;
}

/* Sign Up CTA Section */
.signup-cta-section {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.signup-cta-card {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  padding: 64px;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  align-items: center;
}

.signup-cta-glow {
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 230, 118, 0.15) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

.signup-cta-content {
  position: relative;
  z-index: 2;
  text-align: left;
}

.signup-cta-content h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--text-white);
  margin-bottom: 16px;
  margin-top: 0;
  line-height: 1.2;
}

.signup-cta-content p {
  font-size: 1.1rem;
  color: var(--text-gray);
  margin-bottom: 24px;
  line-height: 1.6;
}

.signup-cta-benefit {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(0, 230, 118, 0.15);
  border: 1px solid var(--accent-teal);
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 1rem;
  color: var(--accent-teal);
  font-weight: 700;
  margin-bottom: 32px;
}

.signup-btn {
  padding: 16px 36px;
  font-size: 1.1rem;
}

.signup-cta-visual {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}

.signup-panda-img {
  max-width: 280px;
  height: auto;
  filter: drop-shadow(0 15px 35px rgba(0, 230, 118, 0.3));
  animation: float 6s ease-in-out infinite;
}

@media (max-width: 992px) {
  .signup-cta-card {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 48px;
    gap: 32px;
  }
  .signup-cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}