/* ============================================
   JAWZ Landing Page - GTA CRYPTO EDITION
   Black × Blue × Gold
   ============================================ */

:root {
  /* Colors - GTA Crypto Palette */
  --color-bg: #0a0a0f;
  --color-bg-dark: #050508;
  --color-surface: rgba(0, 180, 255, 0.03);
  --color-surface-hover: rgba(0, 180, 255, 0.08);
  --color-text: #e8f4fc;
  --color-text-muted: #6a8fa8;
  
  /* Electric Blue */
  --color-blue: #00b4ff;
  --color-blue-light: #4dd4ff;
  --color-blue-mid: #0099dd;
  --color-blue-dark: #006699;
  --color-blue-glow: rgba(0, 180, 255, 0.6);
  --blue-gradient: linear-gradient(135deg, #4dd4ff 0%, #00b4ff 50%, #0077aa 100%);
  
  /* Luxurious Gold */
  --color-gold: #d4af37;
  --color-gold-light: #f5e6a3;
  --color-gold-mid: #e8c547;
  --color-gold-dark: #8b7021;
  --color-gold-glow: rgba(212, 175, 55, 0.6);
  --gold-gradient: linear-gradient(135deg, #f5e6a3 0%, #e8c547 25%, #d4af37 50%, #b8941f 75%, #8b7021 100%);
  --gold-gradient-text: linear-gradient(90deg, #f5e6a3, #d4af37, #f5e6a3);
  
  /* GTA Accent */
  --gta-gradient: linear-gradient(135deg, #00b4ff 0%, #d4af37 100%);
  --gta-gradient-reverse: linear-gradient(135deg, #d4af37 0%, #00b4ff 100%);
  
  /* Typography */
  --font-display: 'Bebas Neue', Impact, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  
  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  --space-2xl: 10rem;
  
  /* Animation */
  --transition-fast: 0.15s ease;
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  overflow-x: hidden;
}

/* Scanline overlay for GTA effect */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 0, 0, 0.1) 2px,
    rgba(0, 0, 0, 0.1) 4px
  );
  pointer-events: none;
  z-index: 10000;
  opacity: 0.3;
}

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

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

/* ============================================
   GTA Typography
   ============================================ */

.gold-text {
  background: var(--gold-gradient-text);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: goldShimmer 3s linear infinite;
  text-shadow: 0 0 30px var(--color-gold-glow);
}

.blue-text {
  background: var(--blue-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@keyframes goldShimmer {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

.section-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--color-blue);
  background: linear-gradient(135deg, rgba(0, 180, 255, 0.2) 0%, rgba(0, 180, 255, 0.05) 100%);
  border: 2px solid var(--color-blue);
  padding: 0.5rem 1.5rem;
  border-radius: 4px;
  margin-bottom: var(--space-md);
  box-shadow: 
    0 0 20px var(--color-blue-glow),
    inset 0 0 20px rgba(0, 180, 255, 0.1);
  position: relative;
  clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
}

/* ============================================
   GTA Glass Card Effect
   ============================================ */

.glass-card {
  background: linear-gradient(
    135deg,
    rgba(0, 180, 255, 0.08) 0%,
    rgba(0, 0, 0, 0.4) 50%,
    rgba(212, 175, 55, 0.05) 100%
  );
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 2px solid rgba(0, 180, 255, 0.3);
  border-radius: 4px;
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(0, 180, 255, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background: var(--gta-gradient);
  transition: left 0.5s ease;
}

.glass-card:hover::before {
  left: 100%;
}

.glass-card:hover {
  border-color: var(--color-gold);
  box-shadow: 
    0 16px 48px rgba(0, 0, 0, 0.6),
    0 0 60px rgba(212, 175, 55, 0.15),
    0 0 30px rgba(0, 180, 255, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  position: relative;
  z-index: 2;
}

/* ============================================
   Navigation - GTA Style
   ============================================ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-sm) var(--space-md);
  background: linear-gradient(
    180deg,
    rgba(10, 10, 15, 0.98) 0%,
    rgba(10, 10, 15, 0.9) 100%
  );
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border-bottom: 2px solid rgba(0, 180, 255, 0.3);
  box-shadow: 0 0 30px rgba(0, 180, 255, 0.2);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.logo-text {
  font-family: var(--font-display);
  font-size: 2.5rem;
  letter-spacing: 0.2em;
  background: var(--gold-gradient-text);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: goldShimmer 3s linear infinite;
  filter: drop-shadow(0 0 20px var(--color-gold-glow));
  position: relative;
}

.logo-text::after {
  content: 'JAWZ';
  position: absolute;
  left: 2px;
  top: 2px;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.3;
  z-index: -1;
  filter: blur(2px);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-text-muted);
  position: relative;
  padding: 0.5rem 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gta-gradient);
  transition: width var(--transition-normal);
  box-shadow: 0 0 10px var(--color-blue-glow);
}

.nav-links a:hover {
  color: var(--color-blue-light);
  text-shadow: 0 0 20px var(--color-blue-glow);
}

.nav-links a:hover::after {
  width: 100%;
}

.social-link {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(0, 180, 255, 0.3);
  border-radius: 4px;
  background: rgba(0, 180, 255, 0.05);
  color: var(--color-blue);
  clip-path: polygon(6px 0, 100% 0, calc(100% - 6px) 100%, 0 100%);
}

.social-link svg {
  width: 16px;
  height: 16px;
}

.social-link:hover {
  border-color: var(--color-gold);
  background: rgba(212, 175, 55, 0.15);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px var(--color-gold-glow);
  color: var(--color-gold);
}

/* ============================================
   GTA Buttons
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2rem;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
  clip-path: polygon(12px 0, 100% 0, calc(100% - 12px) 100%, 0 100%);
}

.btn-gold {
  background: var(--gold-gradient);
  color: #000;
  font-weight: 700;
  box-shadow: 
    0 4px 24px var(--color-gold-glow),
    inset 0 2px 0 rgba(255, 255, 255, 0.3);
}

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

.btn-gold:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 
    0 8px 40px var(--color-gold-glow),
    inset 0 2px 0 rgba(255, 255, 255, 0.5);
}

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

.btn-outline {
  background: rgba(0, 180, 255, 0.1);
  border: 2px solid var(--color-blue);
  color: var(--color-blue);
  font-weight: 600;
  box-shadow: 0 0 20px rgba(0, 180, 255, 0.2);
}

.btn-outline:hover {
  border-color: var(--color-blue-light);
  color: var(--color-blue-light);
  background: rgba(0, 180, 255, 0.2);
  box-shadow: 0 0 40px var(--color-blue-glow);
  text-shadow: 0 0 20px var(--color-blue-glow);
}

.btn-lg {
  padding: 1.2rem 2.5rem;
  font-size: 1.1rem;
}

.btn-xl {
  padding: 1.4rem 3.5rem;
  font-size: 1.2rem;
}

/* ============================================
   Hero Section - GTA Video Focused
   ============================================ */

.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  object-fit: cover;
  filter: saturate(1.2) contrast(1.1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(180deg, rgba(10, 10, 15, 0.4) 0%, rgba(10, 10, 15, 0.2) 40%, rgba(10, 10, 15, 0.6) 70%, rgba(10, 10, 15, 1) 100%),
    radial-gradient(ellipse at center top, rgba(0, 180, 255, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at center bottom, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: var(--space-md);
  margin-top: 20vh;
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 400;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  margin-bottom: var(--space-lg);
}

.hero-tagline .gold-text {
  display: inline-block;
  text-shadow: 
    0 0 40px var(--color-gold-glow),
    0 0 80px var(--color-gold-glow);
}

.hero-buttons {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--space-xl);
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: var(--space-xl);
  flex-wrap: wrap;
  padding: var(--space-lg) var(--space-md);
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 180, 255, 0.05) 20%,
    rgba(0, 180, 255, 0.1) 50%,
    rgba(0, 180, 255, 0.05) 80%,
    transparent 100%
  );
  border-top: 2px solid rgba(0, 180, 255, 0.3);
  border-bottom: 2px solid rgba(0, 180, 255, 0.3);
  position: relative;
}

.hero-stats::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gta-gradient);
  box-shadow: 0 0 20px var(--color-blue-glow);
}

.stat {
  text-align: center;
  position: relative;
}

.stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: 3rem;
  letter-spacing: 0.1em;
  background: var(--gold-gradient-text);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: goldShimmer 3s linear infinite;
  filter: drop-shadow(0 0 20px var(--color-gold-glow));
}

.stat-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-text-muted);
}

.scroll-indicator {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
  color: var(--color-blue);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 180, 255, 0.1);
  border: 2px solid rgba(0, 180, 255, 0.4);
  border-radius: 0;
  backdrop-filter: blur(10px);
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
  box-shadow: 0 0 20px var(--color-blue-glow);
}

.scroll-indicator svg {
  width: 24px;
  height: 24px;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.7; }
  50% { transform: translateX(-50%) translateY(12px); opacity: 1; }
}

/* ============================================
   Sections - GTA Style Backgrounds
   ============================================ */

.section {
  padding: var(--space-2xl) 0;
  position: relative;
  overflow: hidden;
}

.section-bg-1,
.section-bg-2,
.section-bg-3 {
  position: relative;
}

.section-bg-1::before,
.section-bg-2::before,
.section-bg-3::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.12;
  filter: blur(1px) saturate(1.5);
}

.section-bg-1::before {
  background-image: url('../assets/images/shark-1.png');
}

.section-bg-2::before {
  background-image: url('../assets/images/shark-2.png');
}

.section-bg-3::before {
  background-image: url('../assets/images/shark-3.png');
}

.section-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    180deg,
    var(--color-bg) 0%,
    rgba(10, 10, 15, 0.85) 20%,
    rgba(10, 15, 25, 0.9) 50%,
    rgba(10, 10, 15, 0.85) 80%,
    var(--color-bg) 100%
  );
  z-index: 1;
}

/* Section 1 - Deep Blue Gradient */
.section-bg-1 {
  background: 
    radial-gradient(ellipse at 20% 50%, rgba(0, 180, 255, 0.08) 0%, transparent 40%),
    linear-gradient(135deg, #0a0a0f 0%, #0a1520 25%, #081525 50%, #0a1520 75%, #0a0a0f 100%);
}

/* Section 2 - Gold Tinted */
.section-bg-2 {
  background: 
    radial-gradient(ellipse at 80% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 40%),
    linear-gradient(180deg, #0a0a0f 0%, #0a1015 20%, #0d151f 40%, #0a1015 60%, rgba(212, 175, 55, 0.02) 80%, #0a0a0f 100%);
}

/* Section 3 - Mixed Glow */
.section-bg-3 {
  background: 
    radial-gradient(ellipse at 30% 30%, rgba(0, 180, 255, 0.06) 0%, transparent 30%),
    radial-gradient(ellipse at 70% 70%, rgba(212, 175, 55, 0.06) 0%, transparent 30%),
    linear-gradient(180deg, #0a0a0f 0%, #050510 30%, #0a0a0f 50%, #0a1218 70%, #0a0a0f 100%);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 8vw, 5rem);
  letter-spacing: 0.12em;
  margin-bottom: var(--space-lg);
}

.section-title-lg {
  font-family: var(--font-display);
  font-size: clamp(3rem, 10vw, 6rem);
  letter-spacing: 0.12em;
  margin-bottom: var(--space-md);
  line-height: 1.1;
}

.section-text-lg {
  font-size: 1.2rem;
  line-height: 1.9;
  color: var(--color-text-muted);
  max-width: 700px;
  margin: 0 auto var(--space-lg);
}

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

/* ============================================
   About Section - GTA Centered Layout
   ============================================ */

.about-content-centered {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.feature-row {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
  margin-top: var(--space-lg);
}

.feature-pill {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--transition-normal);
}

/* GTA Glass Pills */
.glass-pill {
  background: linear-gradient(
    135deg,
    rgba(0, 180, 255, 0.15) 0%,
    rgba(0, 0, 0, 0.4) 50%,
    rgba(212, 175, 55, 0.1) 100%
  );
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 2px solid rgba(0, 180, 255, 0.4);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.3),
    0 0 20px rgba(0, 180, 255, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  padding: 1rem 2rem;
  border-radius: 0;
  clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
}

.glass-pill:hover {
  background: linear-gradient(
    135deg,
    rgba(212, 175, 55, 0.2) 0%,
    rgba(0, 0, 0, 0.4) 50%,
    rgba(0, 180, 255, 0.15) 100%
  );
  border-color: var(--color-gold);
  transform: translateY(-4px) scale(1.02);
  box-shadow: 
    0 16px 48px rgba(0, 0, 0, 0.4),
    0 0 40px var(--color-gold-glow),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, rgba(0, 180, 255, 0.3) 0%, rgba(0, 180, 255, 0.1) 100%);
  border: 2px solid var(--color-blue);
  border-radius: 0;
  color: var(--color-blue);
  clip-path: polygon(6px 0, 100% 0, calc(100% - 6px) 100%, 0 100%);
  box-shadow: 0 0 15px var(--color-blue-glow);
}

.glass-pill:hover .feature-icon {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.3) 0%, rgba(212, 175, 55, 0.1) 100%);
  border-color: var(--color-gold);
  color: var(--color-gold);
  box-shadow: 0 0 15px var(--color-gold-glow);
}

.feature-icon svg {
  width: 18px;
  height: 18px;
}

/* ============================================
   Tokenomics - GTA Premium Cards
   ============================================ */

.tokenomics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.token-card {
  padding: var(--space-lg) var(--space-md);
  text-align: center;
  transition: var(--transition-normal);
  position: relative;
}

.token-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 3px;
  background: var(--gta-gradient);
  opacity: 0;
  transition: var(--transition-normal);
}

.token-card:hover {
  transform: translateY(-10px);
}

.token-card:hover::after {
  opacity: 1;
  box-shadow: 0 0 20px var(--color-blue-glow);
}

.token-value {
  font-family: var(--font-display);
  font-size: 4rem;
  letter-spacing: 0.1em;
  background: var(--gta-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--space-xs);
  text-shadow: 0 0 30px var(--color-blue-glow);
}

.token-label {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-text-muted);
}

.contract-address {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
  padding: var(--space-md) var(--space-lg);
  max-width: 700px;
  margin: 0 auto;
}

.ca-label {
  color: var(--color-blue);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.ca-code {
  font-family: 'SF Mono', Monaco, Consolas, monospace;
  font-size: 0.95rem;
  color: var(--color-gold-light);
  background: rgba(212, 175, 55, 0.1);
  padding: var(--space-xs) var(--space-sm);
  border-radius: 0;
  border: 2px solid rgba(212, 175, 55, 0.3);
  clip-path: polygon(6px 0, 100% 0, calc(100% - 6px) 100%, 0 100%);
}

.btn-copy {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.2rem;
  font-size: 0.85rem;
  font-weight: 600;
  font-family: var(--font-display);
  letter-spacing: 0.1em;
  background: rgba(0, 180, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 2px solid var(--color-blue);
  color: var(--color-blue);
  border-radius: 0;
  cursor: pointer;
  transition: var(--transition-normal);
  clip-path: polygon(6px 0, 100% 0, calc(100% - 6px) 100%, 0 100%);
}

.btn-copy svg {
  width: 14px;
  height: 14px;
}

.btn-copy:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
  background: rgba(212, 175, 55, 0.15);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px var(--color-gold-glow);
}

/* ============================================
   Roadmap - GTA Glass Cards
   ============================================ */

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

.roadmap-item {
  padding: var(--space-lg);
  transition: var(--transition-normal);
  position: relative;
}

.roadmap-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--gta-gradient);
  transition: height 0.4s ease;
}

.roadmap-item:hover::before {
  height: 100%;
  box-shadow: 0 0 15px var(--color-blue-glow);
}

.roadmap-item:hover {
  transform: translateY(-8px) translateX(5px);
}

.roadmap-phase {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #000;
  background: var(--gta-gradient);
  padding: 0.5rem 1.25rem;
  border-radius: 0;
  margin-bottom: var(--space-sm);
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
  box-shadow: 0 0 20px var(--color-blue-glow);
}

.roadmap-item h3 {
  font-family: var(--font-display);
  font-size: 2.25rem;
  letter-spacing: 0.12em;
  margin-bottom: var(--space-md);
  background: var(--gold-gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.roadmap-item ul {
  list-style: none;
}

.roadmap-item li {
  padding: 0.7rem 0;
  padding-left: var(--space-md);
  position: relative;
  color: var(--color-text-muted);
  font-size: 0.95rem;
  font-weight: 500;
  transition: var(--transition-fast);
}

.roadmap-item li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: var(--color-blue);
  border-radius: 0;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  box-shadow: 0 0 10px var(--color-blue-glow);
}

.roadmap-item:hover li {
  color: var(--color-text);
}

.roadmap-item:hover li::before {
  background: var(--color-gold);
  box-shadow: 0 0 10px var(--color-gold-glow);
}

/* ============================================
   PVP Section - Video Background
   ============================================ */

.section-pvp {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.section-video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  object-fit: cover;
  filter: saturate(1.3) contrast(1.1);
}

.section-video-overlay {
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(180deg, var(--color-bg) 0%, rgba(10, 10, 15, 0.5) 15%, rgba(10, 10, 15, 0.4) 50%, rgba(10, 10, 15, 0.5) 85%, var(--color-bg) 100%),
    radial-gradient(ellipse at center, rgba(0, 180, 255, 0.1) 0%, transparent 50%);
  z-index: 1;
}

.pvp-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.pulse-badge {
  animation: pulse 2s ease-in-out infinite;
  border-color: var(--color-gold);
  color: var(--color-gold);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.3) 0%, rgba(212, 175, 55, 0.1) 100%);
}

@keyframes pulse {
  0%, 100% { 
    box-shadow: 0 0 0 0 var(--color-gold-glow), 0 0 20px var(--color-gold-glow);
  }
  50% { 
    box-shadow: 0 0 30px 15px rgba(212, 175, 55, 0.3), 0 0 40px var(--color-gold-glow);
  }
}

/* ============================================
   CTA Section - GTA Premium
   ============================================ */

.section-cta {
  background: var(--color-bg);
  position: relative;
  overflow: hidden;
}

.cta-gradient {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150%;
  height: 200%;
  background: 
    radial-gradient(ellipse at 30% 50%, rgba(0, 180, 255, 0.1) 0%, transparent 40%),
    radial-gradient(ellipse at 70% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 40%);
  pointer-events: none;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(4rem, 15vw, 7rem);
  letter-spacing: 0.12em;
  margin-bottom: var(--space-sm);
}

.cta-text {
  font-size: 1.3rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-lg);
}

.cta-buttons {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   Footer - GTA Premium
   ============================================ */

.footer {
  padding: var(--space-xl) 0 var(--space-lg);
  background: linear-gradient(
    180deg,
    var(--color-bg) 0%,
    #050508 100%
  );
  border-top: 2px solid rgba(0, 180, 255, 0.2);
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gta-gradient);
  box-shadow: 0 0 20px var(--color-blue-glow);
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
  text-align: center;
}

.footer-logo .logo-text {
  font-size: 3rem;
}

.footer-links {
  display: flex;
  gap: var(--space-md);
}

.footer-links a {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-blue);
  background: rgba(0, 180, 255, 0.1);
  border: 2px solid rgba(0, 180, 255, 0.3);
  border-radius: 0;
  transition: var(--transition-normal);
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
}

.footer-links a svg {
  width: 20px;
  height: 20px;
}

.footer-links a:hover {
  color: var(--color-gold);
  border-color: var(--color-gold);
  background: rgba(212, 175, 55, 0.15);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px var(--color-gold-glow);
}

.footer-disclaimer {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  opacity: 0.6;
  max-width: 500px;
  letter-spacing: 0.05em;
}

/* ============================================
   Scroll Animations
   ============================================ */

.scroll-reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), 
              transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   GTA Glitch Effect (for titles)
   ============================================ */

@keyframes glitch {
  0%, 100% { transform: translate(0); }
  20% { transform: translate(-2px, 2px); }
  40% { transform: translate(-2px, -2px); }
  60% { transform: translate(2px, 2px); }
  80% { transform: translate(2px, -2px); }
}

.section-title:hover,
.cta-title:hover {
  animation: glitch 0.3s ease-in-out;
}

/* ============================================
   Responsive
   ============================================ */

@media (max-width: 1024px) {
  .tokenomics-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .roadmap {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  body::before {
    opacity: 0.15;
  }
  
  .nav-links {
    display: none;
  }
  
  .hero-stats {
    gap: var(--space-lg);
    flex-direction: column;
    align-items: center;
  }
  
  .stat-value {
    font-size: 2.5rem;
  }
  
  .feature-row {
    flex-direction: column;
    align-items: center;
  }
  
  .tokenomics-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-sm);
  }
  
  .token-value {
    font-size: 2.75rem;
  }
  
  .contract-address {
    flex-direction: column;
    gap: var(--space-sm);
  }
}

@media (max-width: 480px) {
  .tokenomics-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .section {
    padding: var(--space-xl) 0;
  }
  
  .glass-pill {
    padding: 0.8rem 1.5rem;
  }
}
