/* ===== ROOT VARIABLES ===== */
:root {
  /* Brand Colors - Honey Yellow & Lime Green Theme */
  --primary-color: #32cd32; /* Lime Green */
  --secondary-color: #000000; /* Pure Black */
  --accent-color: #ffd700; /* Honey Yellow */
  --success-color: #4caf50;
  --warning-color: #ff9800;
  --error-color: #f44336;
  
  /* Gaming Colors */
  --white: #ffffff;
  --gray-50: #f8f9fa;
  --gray-100: #f1f3f4;
  --gray-200: #e8eaed;
  --gray-300: #dadce0;
  --gray-400: #9aa0a6;
  --gray-500: #5f6368;
  --gray-600: #3c4043;
  --gray-700: #202124;
  --gray-800: #171717;
  --gray-900: #0a0a0a;
  
  /* Background Colors */
  --bg-primary: #ffffff;
  --bg-secondary: #f8f9fa;
  --bg-dark: #0a0a0a;
  --bg-gaming: #121212;
  --bg-card: #ffffff;
  --bg-overlay: rgba(10, 10, 10, 0.85);
  
  /* Text Colors */
  --text-primary: #0a0a0a;
  --text-secondary: #5f6368;
  --text-accent: #32cd32;
  --text-white: #ffffff;
  --text-honey: #ffd700;
  
  /* Brand Gradients */
  --gradient-primary: linear-gradient(135deg, #32cd32 0%, #228b22 100%);
  --gradient-secondary: linear-gradient(135deg, #ffd700 0%, #ffa500 100%);
  --gradient-dark: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
  --gradient-brand: linear-gradient(45deg, #32cd32 0%, #ffd700 50%, #32cd32 100%);
  --gradient-honey: linear-gradient(90deg, #ffd700, #ffed4e, #ffd700);
  
  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-secondary: 'Space Grotesk', monospace, sans-serif;
  
  /* Font Sizes */
  --fs-xs: 0.75rem;     /* 12px */
  --fs-sm: 0.875rem;    /* 14px */
  --fs-base: 1rem;      /* 16px */
  --fs-lg: 1.125rem;    /* 18px */
  --fs-xl: 1.25rem;     /* 20px */
  --fs-2xl: 1.5rem;     /* 24px */
  --fs-3xl: 1.875rem;   /* 30px */
  --fs-4xl: 2.25rem;    /* 36px */
  --fs-5xl: 3rem;       /* 48px */
  --fs-6xl: 3.75rem;    /* 60px */
  
  /* Font Weights */
  --fw-light: 300;
  --fw-normal: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --fw-extrabold: 800;
  
  /* Spacing */
  --space-1: 0.25rem;   /* 4px */
  --space-2: 0.5rem;    /* 8px */
  --space-3: 0.75rem;   /* 12px */
  --space-4: 1rem;      /* 16px */
  --space-5: 1.25rem;   /* 20px */
  --space-6: 1.5rem;    /* 24px */
  --space-8: 2rem;      /* 32px */
  --space-10: 2.5rem;   /* 40px */
  --space-12: 3rem;     /* 48px */
  --space-16: 4rem;     /* 64px */
  --space-20: 5rem;     /* 80px */
  --space-24: 6rem;     /* 96px */
  
  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-full: 9999px;
  
  /* Brand Shadows & Glows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --shadow-neon: 0 0 20px rgba(50, 205, 50, 0.3), 0 0 40px rgba(255, 215, 0, 0.1);
  --shadow-brand: 0 8px 32px rgba(50, 205, 50, 0.15), 0 0 0 1px rgba(50, 205, 50, 0.05);
  
  /* Gaming Transitions */
  --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  
  /* Z-index */
  --z-dropdown: 1000;
  --z-sticky: 1020;
  --z-fixed: 1030;
  --z-modal: 1040;
  --z-popover: 1050;
  --z-tooltip: 1060;
}

/* ===== RESET & BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-primary);
  font-size: var(--fs-base);
  font-weight: var(--fw-normal);
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-normal);
}

ul {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

/* ===== UTILITIES ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-4);
}

.section {
  padding: var(--space-20) 0;
}

.section__header {
  text-align: center;
  margin-bottom: var(--space-16);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section__title {
  font-family: var(--font-secondary);
  font-size: var(--fs-4xl);
  font-weight: var(--fw-bold);
  color: var(--text-primary);
  margin-bottom: var(--space-4);
  line-height: 1.2;
}

.section__subtitle {
  font-size: var(--fs-xl);
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.highlight {
  background: var(--gradient-brand);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: var(--fw-bold);
  animation: glow 2s ease-in-out infinite alternate;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  font-size: var(--fs-base);
  font-weight: var(--fw-medium);
  border-radius: var(--radius-lg);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition-normal);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--text-white);
  box-shadow: var(--shadow-brand);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(50, 205, 50, 0.3);
}

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

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-neon), var(--shadow-lg);
  border-color: rgba(50, 205, 50, 0.6);
}

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

.btn-secondary {
  background: var(--gradient-secondary);
  color: var(--secondary-color);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255, 215, 0, 0.3);
  font-weight: var(--fw-semibold);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.4), var(--shadow-lg);
  border-color: rgba(255, 215, 0, 0.6);
  background: var(--gradient-honey);
}

.btn-outline {
  background: transparent;
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-outline:hover {
  background: var(--primary-color);
  color: var(--text-white);
}

.btn-large {
  padding: var(--space-4) var(--space-8);
  font-size: var(--fs-lg);
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #000000;
  border-bottom: 1px solid rgba(50, 205, 50, 0.3);
  z-index: var(--z-fixed);
  transition: var(--transition-normal);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.nav__logo {
  height: 50px;
  width: auto;
  transition: var(--transition-normal);
}

.nav__logo:hover {
  transform: scale(1.05);
}

/* Removed nav__title as we're using logo only */

.nav__list {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}

.nav__link {
  font-weight: var(--fw-medium);
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition-normal);
  position: relative;
}

.nav__link:hover,
.nav__link.active {
  color: var(--primary-color);
}

.nav__link--play {
  background: var(--gradient-primary);
  color: var(--text-white) !important;
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-lg);
  font-weight: var(--fw-semibold);
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.nav__link--play::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: var(--transition-normal);
}

.nav__link--play:hover {
  background: var(--gradient-secondary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-neon);
}

.nav__link--play:hover::before {
  left: 100%;
}

.nav__link.active::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gradient-brand);
  border-radius: var(--radius-full);
}

.nav__toggle,
.nav__close {
  display: none;
  font-size: var(--fs-2xl);
  color: var(--text-primary);
  cursor: pointer;
  padding: var(--space-3);
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid var(--primary-color);
  border-radius: var(--radius-md);
  z-index: 10001;
  transition: var(--transition-normal);
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

.nav__toggle:hover,
.nav__close:hover {
  color: var(--text-white);
  background: var(--primary-color);
  transform: scale(1.1);
}

.nav__toggle:active,
.nav__close:active {
  transform: scale(0.95);
}

/* ===== HERO SECTION ===== */
.hero {
  padding-top: var(--space-24);
  background: 
    radial-gradient(circle at 20% 80%, rgba(50, 205, 50, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.05) 0%, transparent 50%),
    linear-gradient(135deg, var(--bg-primary) 0%, var(--gray-50) 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    linear-gradient(90deg, transparent 0%, rgba(50, 205, 50, 0.02) 50%, transparent 100%);
  animation: scanline 3s linear infinite;
  pointer-events: none;
}

.hero__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: start;
  padding-top: var(--space-8);
}

.hero__title {
  font-family: var(--font-secondary);
  font-size: var(--fs-6xl);
  font-weight: var(--fw-extrabold);
  line-height: 1.1;
  margin-bottom: var(--space-6);
}

.hero__description {
  font-size: var(--fs-xl);
  color: var(--text-secondary);
  margin-bottom: var(--space-8);
  line-height: 1.6;
}

.hero__buttons {
  display: flex;
  gap: var(--space-4);
  margin-bottom: var(--space-12);
}

.hero__mobile-apps {
  margin-bottom: var(--space-8);
}

.mobile-apps__label {
  display: block;
  font-size: var(--fs-sm);
  color: var(--text-secondary);
  margin-bottom: var(--space-4);
  text-align: center;
  font-weight: var(--fw-medium);
}

.mobile-apps__buttons {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  align-items: center;
}

.btn-mobile-app {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  font-size: var(--fs-base);
  font-weight: var(--fw-medium);
  border-radius: var(--radius-lg);
  border: 2px solid transparent;
  cursor: not-allowed;
  transition: var(--transition-normal);
  text-decoration: none;
  white-space: nowrap;
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-secondary);
  border-color: rgba(50, 205, 50, 0.3);
  opacity: 0.7;
  position: relative;
  overflow: hidden;
}

.btn-mobile-app::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: var(--transition-normal);
}

.btn-mobile-app:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(50, 205, 50, 0.5);
  transform: translateY(-2px);
}

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

.btn-mobile-app i {
  font-size: var(--fs-lg);
  color: var(--primary-color);
}

.btn-mobile-app span {
  font-size: var(--fs-sm);
  color: var(--text-secondary);
}

.hero__stats {
  display: flex;
  gap: var(--space-8);
}

.stat {
  text-align: center;
}

.stat__number {
  display: block;
  font-family: var(--font-secondary);
  font-size: var(--fs-2xl);
  font-weight: var(--fw-bold);
  color: var(--primary-color);
}

.stat__label {
  font-size: var(--fs-sm);
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero__video {
  text-align: center;
  margin-top: var(--space-8);
}

.video__title {
  font-family: var(--font-secondary);
  font-size: var(--fs-4xl);
  font-weight: var(--fw-bold);
  color: var(--text-primary);
  margin-bottom: var(--space-6);
  background: var(--gradient-brand);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.2;
}

.video__container {
  position: relative;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-2xl);
  aspect-ratio: 16/9;
  display: flex;
}

/* Removed old aspect ratio method - using aspect-ratio property now */

.video__iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: var(--radius-2xl);
}

.video__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(50, 205, 50, 0.1) 0%,
    rgba(255, 215, 0, 0.1) 50%,
    rgba(50, 205, 50, 0.1) 100%
  );
  pointer-events: none;
  z-index: 1;
  border-radius: var(--radius-2xl);
}

/* ===== HOW TO PLAY SECTION ===== */
.how-to-play {
  background: var(--bg-secondary);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
  margin-bottom: var(--space-20);
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--bg-card);
  padding: var(--space-8);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  transition: var(--transition-normal);
}

.step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-2xl);
}

.step__icon {
  width: 4rem;
  height: 4rem;
  background: var(--gradient-primary);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  font-size: var(--fs-xl);
  flex-shrink: 0;
  box-shadow: var(--shadow-brand);
  border: 2px solid rgba(50, 205, 50, 0.3);
  transition: var(--transition-normal);
}

.step__icon:hover {
  animation: pulse-neon 1.5s ease-in-out infinite;
  transform: scale(1.05);
}

.step__title {
  font-family: var(--font-secondary);
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  margin-bottom: var(--space-3);
  color: var(--text-primary);
  line-height: 1.3;
}

.step__content {
  max-width: 100%;
  margin-top: var(--space-4);
}

.step__description {
  color: var(--text-secondary);
  margin-bottom: var(--space-4);
  line-height: 1.6;
  font-size: var(--fs-sm);
}

.step__options {
  list-style: none;
  text-align: left;
  font-size: var(--fs-sm);
}

.step__options li {
  margin-bottom: var(--space-2);
  color: var(--text-secondary);
  position: relative;
  padding-left: var(--space-6);
  font-size: var(--fs-xs);
  line-height: 1.4;
}

.step__options li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: var(--fw-bold);
}

.step__options strong {
  color: var(--text-primary);
}

.step__options a {
  color: var(--primary-color);
  font-weight: var(--fw-medium);
}

.step__options a:hover {
  text-decoration: underline;
}

/* Game Commands */
.game-commands {
  background: var(--bg-card);
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-lg);
}

.commands__title {
  font-family: var(--font-secondary);
  font-size: var(--fs-2xl);
  font-weight: var(--fw-bold);
  text-align: center;
  margin-bottom: var(--space-8);
  color: var(--text-primary);
}

.commands__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-4);
}

.command {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4);
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  transition: var(--transition-normal);
}

.command:hover {
  background: var(--gray-100);
  transform: translateY(-2px);
}

.command code {
  font-family: var(--font-secondary);
  background: var(--primary-color);
  color: var(--text-white);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-md);
  font-weight: var(--fw-medium);
  font-size: var(--fs-sm);
}

.command span {
  color: var(--text-secondary);
  font-size: var(--fs-sm);
}

/* ===== REWARDS SECTION ===== */
.rewards__container {
  display: grid;
  gap: var(--space-16);
}

.rewards__subtitle {
  font-family: var(--font-secondary);
  font-size: var(--fs-2xl);
  font-weight: var(--fw-bold);
  text-align: center;
  margin-bottom: var(--space-8);
  color: var(--text-primary);
}

.prize__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-6);
}

.prize {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  text-align: center;
  box-shadow: var(--shadow-lg);
  border: 2px solid transparent;
  transition: var(--transition-normal);
}

.prize:hover {
  border-color: var(--primary-color);
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.prize__icon {
  font-size: var(--fs-4xl);
  margin-bottom: var(--space-4);
}

.prize__period {
  font-family: var(--font-secondary);
  font-size: var(--fs-lg);
  font-weight: var(--fw-semibold);
  margin-bottom: var(--space-3);
  color: var(--text-primary);
}

.prize__amount {
  font-family: var(--font-secondary);
  font-size: var(--fs-3xl);
  font-weight: var(--fw-bold);
  color: var(--primary-color);
}

.prize__currency {
  font-size: var(--fs-sm);
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.conversion__info {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-lg);
}

.conversion__info p {
  font-size: var(--fs-lg);
  margin-bottom: var(--space-6);
  color: var(--text-primary);
}

.conversion__info ul {
  list-style: none;
}

.conversion__info li {
  margin-bottom: var(--space-3);
  color: var(--text-secondary);
  position: relative;
  padding-left: var(--space-6);
}

.conversion__info li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success-color);
  font-weight: var(--fw-bold);
}

/* ===== ABOUT SECTION ===== */
.crypto__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-8);
}

.crypto__card {
  background: var(--bg-card);
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-lg);
  transition: var(--transition-normal);
}

.crypto__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-brand), var(--shadow-xl);
  border: 1px solid rgba(50, 205, 50, 0.2);
}

.crypto__header {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}

.crypto__icon {
  width: 3rem;
  height: 3rem;
  background: var(--gradient-primary);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
}

.crypto__card:nth-child(2) .crypto__icon {
  background: var(--gradient-secondary);
}

.crypto__name {
  font-family: var(--font-secondary);
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  color: var(--text-primary);
}

.crypto__description {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: var(--space-6);
}

.crypto__features h4 {
  font-weight: var(--fw-semibold);
  margin-bottom: var(--space-3);
  color: var(--text-primary);
}

.crypto__features ul {
  list-style: none;
}

.crypto__features li {
  margin-bottom: var(--space-2);
  color: var(--text-secondary);
  position: relative;
  padding-left: var(--space-6);
}

.crypto__features li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: var(--fw-bold);
}

.crypto__link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--primary-color);
  font-weight: var(--fw-medium);
  margin-top: var(--space-4);
  transition: var(--transition-normal);
}

.crypto__link:hover {
  color: var(--secondary-color);
}

/* ===== COMMUNITY SECTION ===== */
.community {
  background: var(--bg-secondary);
}

.community__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-6);
}

.community__card {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  text-align: center;
  box-shadow: var(--shadow-lg);
  transition: var(--transition-normal);
  border: 2px solid transparent;
}

.community__card:hover {
  border-color: var(--primary-color);
  transform: translateY(-4px);
  box-shadow: var(--shadow-brand), var(--shadow-xl);
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(50, 205, 50, 0.02) 100%);
}

.community__icon {
  width: 4rem;
  height: 4rem;
  background: var(--gradient-primary);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  font-size: var(--fs-2xl);
  margin: 0 auto var(--space-4);
}

.community__card:nth-child(2) .community__icon {
  background: var(--gradient-secondary);
}

.community__card:nth-child(3) .community__icon {
  background: var(--gradient-dark);
}

.community__card:nth-child(4) .community__icon {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.community__name {
  font-family: var(--font-secondary);
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  margin-bottom: var(--space-3);
  color: var(--text-primary);
}

.community__description {
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ===== CTA SECTION ===== */
.cta {
  background: 
    radial-gradient(circle at center, rgba(50, 205, 50, 0.1) 0%, transparent 70%),
    var(--gradient-dark);
  color: var(--text-white);
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    linear-gradient(45deg, transparent 0%, rgba(50, 205, 50, 0.05) 50%, transparent 100%);
  animation: scanline 4s linear infinite;
  pointer-events: none;
}

.cta__container {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta__title {
  font-family: var(--font-secondary);
  font-size: var(--fs-4xl);
  font-weight: var(--fw-bold);
  margin-bottom: var(--space-4);
  color: var(--text-white);
}

.cta__description {
  font-size: var(--fs-xl);
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--space-8);
  line-height: 1.6;
}

.cta__buttons {
  display: flex;
  justify-content: center;
  gap: var(--space-4);
}

/* ===== FOOTER ===== */
.footer {
  background: #000000;
  color: var(--text-white);
  padding: var(--space-16) 0 var(--space-8);
  border-top: 1px solid rgba(50, 205, 50, 0.3);
}

.footer__container {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--space-16);
  margin-bottom: var(--space-12);
}

.footer__brand .footer__logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

.footer__logo-img {
  height: 50px;
  width: auto;
}

.footer__description {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  max-width: 300px;
}

.footer__links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
}

.footer__title {
  font-family: var(--font-secondary);
  font-size: var(--fs-lg);
  font-weight: var(--fw-semibold);
  margin-bottom: var(--space-4);
  color: var(--text-white);
}

.footer__list {
  list-style: none;
}

.footer__list li {
  margin-bottom: var(--space-2);
}

.footer__link {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition-normal);
}

.footer__link:hover {
  color: var(--primary-color);
}

.footer__link--disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.footer__link--disabled:hover {
  color: inherit;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--space-6);
  text-align: center;
}

.footer__copyright {
  color: rgba(255, 255, 255, 0.6);
  font-size: var(--fs-sm);
}

/* ===== RESPONSIVE DESIGN ===== */
@media screen and (max-width: 1024px) {
  .hero__container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--space-12);
    align-items: center;
    padding-top: var(--space-4);
  }
  
  .hero__video {
    margin-top: var(--space-4);
  }
  
  .video__container {
    max-width: 600px;
  }
  
  .hero__title {
    font-size: var(--fs-5xl);
  }
  
  .steps {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }
  
  .crypto__grid {
    grid-template-columns: 1fr;
  }
  
  .footer__container {
    grid-template-columns: 1fr;
    gap: var(--space-12);
  }
  
  .footer__links {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 900px) {
  .steps {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }
  
  /* Show mobile toggle on tablets too */
  .nav__toggle {
    display: flex !important;
  }
}

@media screen and (max-width: 768px) {
  /* Navigation */
  .nav__menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 249, 250, 0.96) 100%);
    padding: var(--space-20) var(--space-4) var(--space-4);
    transition: var(--transition-normal);
    z-index: 9999;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(10px);
    border-left: 4px solid var(--primary-color);
  }
  
  .nav__menu.show-menu {
    right: 0;
  }
  
  .nav__list {
    flex-direction: column;
    gap: var(--space-6);
  }
  
  .nav__link {
    font-size: var(--fs-lg);
    color: #000000;
    padding: var(--space-3) var(--space-4);
    border-radius: var(--radius-md);
    transition: var(--transition-normal);
    font-weight: var(--fw-medium);
  }
  
  .nav__link:hover {
    background: #32cd32;
    color: #ffffff;
    transform: translateX(5px);
  }
  
  .nav__link:active {
    background: #228b22;
    transform: translateX(3px);
  }
  
  .nav__link--play {
    margin-top: var(--space-4);
    padding: var(--space-3) var(--space-6);
    font-size: var(--fs-lg);
    text-align: center;
    display: block;
    background: #32cd32 !important;
    color: #ffffff !important;
    font-weight: var(--fw-bold);
  }
  
  .nav__link--play:hover {
    background: #228b22 !important;
    color: #ffffff !important;
    transform: translateX(8px);
  }
  
  .nav__close {
    display: flex !important;
    position: absolute;
    top: var(--space-4);
    right: var(--space-4);
  }
  
  .nav__toggle {
    display: flex !important;
  }
  
  /* Typography */
  .section__title {
    font-size: var(--fs-3xl);
  }
  
  .hero__title {
    font-size: var(--fs-4xl);
  }
  
  .hero__description {
    font-size: var(--fs-lg);
  }

  .video__title {
    font-size: var(--fs-3xl);
  }
  
  /* Layout */
  .container {
    padding: 0 var(--space-3);
  }
  
  .section {
    padding: var(--space-16) 0;
  }
  
    .hero__buttons {
    flex-direction: column;
    align-items: center;
  }

  .mobile-apps__buttons {
    flex-direction: column;
    align-items: center;
    gap: var(--space-3);
  }

  .btn-mobile-app {
    width: 100%;
    max-width: 280px;
  }

  .hero__stats {
    justify-content: center;
    gap: var(--space-6);
  }
  
  /* Rewards Section */
  .prize__grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }
  
  /* Crypto Section */
  .crypto__grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }
  
  /* Community Section */
  .community__grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }
  
  /* Commands Grid */
  .commands__grid {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }
  
  .step {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--space-4);
  }
  
  .step__icon {
    margin: 0 auto;
  }
  
  .cta__buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .footer__links {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }
}

/* This breakpoint was consolidated with the 480px breakpoint above */

/* Extra small mobile devices (320px - 480px) */
@media screen and (max-width: 480px) {
  /* Container and spacing adjustments for very small screens */
  .container {
    padding: 0 var(--space-2);
  }
  
  .section {
    padding: var(--space-12) 0;
  }
  
  /* Typography improvements */
  .hero__title {
    font-size: var(--fs-3xl);
    line-height: 1.2;
  }
  
  .section__title {
    font-size: var(--fs-2xl);
    line-height: 1.3;
  }
  
  .hero__description {
    font-size: var(--fs-base);
  }
  
  .section__subtitle {
    font-size: var(--fs-lg);
  }
  
  /* Button improvements */
  .btn {
    padding: var(--space-3) var(--space-4);
    font-size: var(--fs-sm);
  }
  
  /* Ensure all grids are single column on very small screens */
  .steps,
  .prize__grid,
  .crypto__grid,
  .community__grid,
  .commands__grid {
    grid-template-columns: 1fr !important;
    gap: var(--space-4);
  }
  
  /* Logo size adjustment */
  .nav__logo,
  .footer__logo-img {
    height: 40px;
  }
  
  /* Video container */
  .video__container {
    max-width: 100%;
  }
  
  .video__title {
    font-size: var(--fs-2xl);
  }
}

/* Large mobile devices (481px - 767px) */
@media screen and (min-width: 481px) and (max-width: 767px) {
  .steps {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }
  
  .prize__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-6);
  }
  
  .crypto__grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }
  
  .community__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-6);
  }
  
  .commands__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
  }
}

/* Mobile landscape orientation */
@media screen and (max-height: 500px) and (orientation: landscape) {
  .hero {
    padding: var(--space-8) 0;
  }
  
  .hero__container {
    gap: var(--space-8);
  }
  
  .section {
    padding: var(--space-12) 0;
  }
  
  .nav__menu {
    padding: var(--space-12) var(--space-4) var(--space-4);
  }
}

/* ===== GAMING ANIMATIONS ===== */
@keyframes glow {
  from {
    text-shadow: 0 0 20px rgba(50, 205, 50, 0.2);
  }
  to {
    text-shadow: 0 0 30px rgba(50, 205, 50, 0.4), 0 0 40px rgba(255, 215, 0, 0.2);
  }
}

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

@keyframes pulse-neon {
  0%, 100% {
    box-shadow: 0 0 20px rgba(50, 205, 50, 0.3);
  }
  50% {
    box-shadow: 0 0 30px rgba(50, 205, 50, 0.6), 0 0 40px rgba(255, 215, 0, 0.3);
  }
}

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

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

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* Scroll animations */
.animate-on-scroll {
  opacity: 0;
  animation: fadeInUp 0.6s ease-out forwards;
}

.animate-on-scroll.delay-1 {
  animation-delay: 0.1s;
}

.animate-on-scroll.delay-2 {
  animation-delay: 0.2s;
}

.animate-on-scroll.delay-3 {
  animation-delay: 0.3s;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Print styles */
@media print {
  .header,
  .nav__toggle,
  .nav__close,
  .cta,
  .footer {
    display: none;
  }
  
  body {
    color: black;
    background: white;
  }
  
  .section {
    page-break-inside: avoid;
  }
}
