/* =============================================================================
   MODAL — AI Terminal Phosphor Design System
   Dark phosphor aesthetic: black canvas, mint-green text, reactor green accents
   ============================================================================= */

/* =============================================================================
   GLOBAL BACKGROUND VIDEO
   ============================================================================= */

.epic-global-bg-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  pointer-events: none;
  filter: brightness(0.5) contrast(1.2) saturate(0.9);
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.epic-global-bg-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.6) 100%);
  z-index: -1;
  pointer-events: none;
}

:root {
  /* Colors — Phosphor palette */
  --color-phosphor-mint: #ddffdc;
  --color-reactor-green: #7fee64;
  --color-soft-glow: #c8f9b6;
  --color-pale-mist: #def0dd;
  --color-sage-tint: #aed2a4;
  --color-void: #000000;
  --color-carbon: #212525;
  --color-moss: #3e4a3c;
  --color-fern: #485346;
  --color-lichen: #677d64;
  --color-slate: #697368;
  --color-stone: #859085;
  --color-bone: #ffffff;

  /* Typography — Font Families */
  --font-goga: 'Inter Display', 'Satoshi', 'General Sans', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-inter-variable: 'Inter', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Typography — Scale */
  --text-caption: 12px;
  --leading-caption: 1.33;
  --tracking-caption: -0.31px;
  --text-body-sm: 14px;
  --leading-body-sm: 1.38;
  --tracking-body-sm: -0.31px;
  --text-body: 16px;
  --leading-body: 1.5;
  --tracking-body: -0.35px;
  --text-subheading: 20px;
  --leading-subheading: 1.5;
  --tracking-subheading: -0.12px;
  --text-heading-sm: 24px;
  --leading-heading-sm: 1.4;
  --tracking-heading-sm: -0.36px;
  --text-heading: 40px;
  --leading-heading: 1.3;
  --tracking-heading: -0.6px;
  --text-heading-lg: 54px;
  --leading-heading-lg: 1.2;
  --tracking-heading-lg: -0.81px;
  --text-display: 64px;
  --leading-display: 1.05;
  --tracking-display: -0.96px;

  /* Typography — Weights */
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;

  /* Spacing */
  --spacing-unit: 4px;
  --spacing-4: 4px;
  --spacing-8: 8px;
  --spacing-12: 12px;
  --spacing-16: 16px;
  --spacing-20: 20px;
  --spacing-24: 24px;
  --spacing-32: 32px;
  --spacing-36: 36px;
  --spacing-40: 40px;
  --spacing-48: 48px;
  --spacing-56: 56px;
  --spacing-60: 60px;
  --spacing-64: 64px;
  --spacing-80: 80px;
  --spacing-120: 120px;
  --spacing-128: 128px;

  /* Border Radius */
  --radius-buttons: 4px;
  --radius-links: 8px;
  --radius-cards: 16px;
  --radius-pills: 9999px;

  /* Layout */
  --page-max-width: 1200px;
  --section-gap: 64px;
  --card-padding: 20px;
  --element-gap: 16px;

  /* Shadows */
  --shadow-md: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.1) 0px 4px 6px -4px;
  --shadow-glow: 0 0 20px rgba(127, 238, 100, 0.2);
  --shadow-glow-lg: 0 0 40px rgba(127, 238, 100, 0.3);

  /* Surfaces */
  --surface-void: #000000;
  --surface-carbon: #212525;
  --surface-moss: #3e4a3c;
  --surface-fern: #485346;
  --surface-pale-mist: #def0dd;
}

/* =============================================================================
   GLOBAL BASE STYLES
   ============================================================================= */

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--color-void);
  color: var(--color-phosphor-mint);
  font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: var(--text-body);
  line-height: var(--leading-body);
  letter-spacing: var(--tracking-body);
  font-weight: var(--font-weight-regular);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  overflow-x: hidden;
}

/* Clear default link styles */
a {
  color: var(--color-phosphor-mint);
  text-decoration: none;
  transition: all 150ms ease-out;
}

a:hover {
  color: var(--color-reactor-green);
}

/* Ensure images respect container */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* =============================================================================
   TYPOGRAPHY UTILITIES
   ============================================================================= */

.text-caption {
  font-size: var(--text-caption);
  line-height: var(--leading-caption);
  letter-spacing: var(--tracking-caption);
  font-weight: var(--font-weight-regular);
}

.text-body-sm {
  font-size: var(--text-body-sm);
  line-height: var(--leading-body-sm);
  letter-spacing: var(--tracking-body-sm);
  font-weight: var(--font-weight-regular);
}

.text-body {
  font-size: var(--text-body);
  line-height: var(--leading-body);
  letter-spacing: var(--tracking-body);
  font-weight: var(--font-weight-regular);
}

.text-subheading {
  font-family: 'Inter Display', 'Inter', sans-serif;
  font-size: var(--text-subheading);
  line-height: var(--leading-subheading);
  letter-spacing: var(--tracking-subheading);
  font-weight: var(--font-weight-medium);
}

.text-heading-sm {
  font-family: 'Inter Display', 'Inter', sans-serif;
  font-size: var(--text-heading-sm);
  line-height: var(--leading-heading-sm);
  letter-spacing: var(--tracking-heading-sm);
  font-weight: var(--font-weight-medium);
}

.text-heading {
  font-family: 'Inter Display', 'Inter', sans-serif;
  font-size: var(--text-heading);
  line-height: var(--leading-heading);
  letter-spacing: var(--tracking-heading);
  font-weight: var(--font-weight-regular);
}

.text-heading-lg {
  font-family: 'Inter Display', 'Inter', sans-serif;
  font-size: var(--text-heading-lg);
  line-height: var(--leading-heading-lg);
  letter-spacing: var(--tracking-heading-lg);
  font-weight: var(--font-weight-regular);
}

.text-display {
  font-family: 'Inter Display', 'Inter', sans-serif;
  font-size: var(--text-display);
  line-height: var(--leading-display);
  letter-spacing: var(--tracking-display);
  font-weight: var(--font-weight-regular);
}

/* =============================================================================
   LAYOUT UTILITIES
   ============================================================================= */

.container {
  max-width: var(--page-max-width);
  margin: 0 auto;
  padding: 0 var(--spacing-20);
}

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

.section + .section {
  border-top: 0;
  padding-top: var(--section-gap);
}

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

.flex {
  display: flex;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-col {
  display: flex;
  flex-direction: column;
}

.grid {
  display: grid;
}

.grid-center {
  display: grid;
  place-items: center;
}

/* =============================================================================
   SPACING UTILITIES
   ============================================================================= */

.gap-8 { gap: var(--spacing-8); }
.gap-12 { gap: var(--spacing-12); }
.gap-16 { gap: var(--spacing-16); }
.gap-20 { gap: var(--spacing-20); }
.gap-24 { gap: var(--spacing-24); }
.gap-32 { gap: var(--spacing-32); }
.gap-40 { gap: var(--spacing-40); }
.gap-48 { gap: var(--spacing-48); }
.gap-64 { gap: var(--spacing-64); }

.p-12 { padding: var(--spacing-12); }
.p-16 { padding: var(--spacing-16); }
.p-20 { padding: var(--spacing-20); }
.p-24 { padding: var(--spacing-24); }
.p-32 { padding: var(--spacing-32); }

.mb-16 { margin-bottom: var(--spacing-16); }
.mb-20 { margin-bottom: var(--spacing-20); }
.mb-24 { margin-bottom: var(--spacing-24); }
.mb-32 { margin-bottom: var(--spacing-32); }
.mb-40 { margin-bottom: var(--spacing-40); }
.mb-64 { margin-bottom: var(--spacing-64); }

.mt-16 { margin-top: var(--spacing-16); }
.mt-20 { margin-top: var(--spacing-20); }
.mt-32 { margin-top: var(--spacing-32); }
.mt-64 { margin-top: var(--spacing-64); }

/* =============================================================================
   BUTTONS
   ============================================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-weight: var(--font-weight-medium);
  border: none;
  cursor: pointer;
  transition: all 150ms ease-out;
  text-decoration: none;
  user-select: none;
  border-radius: var(--radius-buttons);
  font-size: var(--text-body-sm);
  letter-spacing: var(--tracking-body-sm);
}

/* Reactor Primary Button */
.btn-primary {
  background-color: var(--color-reactor-green);
  color: var(--color-void);
  padding: var(--spacing-8) var(--spacing-20);
  box-shadow: 0 0 20px rgba(127, 238, 100, 0.2);
}

.btn-primary:hover {
  box-shadow: 0 0 30px rgba(127, 238, 100, 0.4);
  transform: translateY(-2px);
}

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

/* Ghost Secondary Button */
.btn-secondary {
  background-color: transparent;
  color: var(--color-phosphor-mint);
  border: 1px solid var(--color-fern);
  padding: var(--spacing-8) var(--spacing-20);
}

.btn-secondary:hover {
  border-color: var(--color-reactor-green);
  color: var(--color-reactor-green);
}

/* =============================================================================
   FORMS & INPUTS
   ============================================================================= */

input[type="text"],
input[type="email"],
input[type="password"],
input[type="search"],
textarea,
select {
  width: 100%;
  padding: var(--spacing-12) var(--spacing-16);
  border: 1px solid var(--color-fern);
  border-radius: var(--radius-buttons);
  background-color: var(--color-carbon);
  color: var(--color-phosphor-mint);
  font-family: 'Inter', sans-serif;
  font-size: var(--text-body-sm);
  line-height: var(--leading-body-sm);
  transition: all 150ms ease-out;
}

input[type="text"]::placeholder,
input[type="email"]::placeholder,
input[type="password"]::placeholder,
input[type="search"]::placeholder,
textarea::placeholder {
  color: var(--color-lichen);
  opacity: 0.6;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--color-reactor-green);
  box-shadow: 0 0 12px rgba(127, 238, 100, 0.15);
}

textarea {
  resize: vertical;
  min-height: 120px;
}

/* =============================================================================
   CARDS & SURFACES
   ============================================================================= */

.card {
  background-color: var(--color-carbon);
  border-radius: var(--radius-cards);
  padding: var(--card-padding);
  border: 1px solid var(--color-fern);
  transition: all 150ms ease-out;
}

.card:hover {
  border-color: var(--color-reactor-green);
  box-shadow: var(--shadow-glow);
}

.card-moss {
  background-color: var(--color-moss);
  border: 1px solid var(--color-fern);
}

.card-pale {
  background-color: var(--color-pale-mist);
  color: var(--color-void);
  border: none;
}

.card-pale a {
  color: var(--color-void);
}

/* =============================================================================
   LINKS & ANNOTATIONS
   ============================================================================= */

.link-editorial {
  color: var(--color-phosphor-mint);
  border-bottom: 1px solid var(--color-lichen);
  border-radius: var(--radius-links);
  text-decoration: none;
  transition: all 150ms ease-out;
  padding-bottom: 2px;
}

.link-editorial:hover {
  border-bottom-color: var(--color-reactor-green);
  color: var(--color-reactor-green);
}

/* =============================================================================
   CODE BLOCKS
   ============================================================================= */

.code-block {
  background-color: var(--color-void);
  border: 1px solid var(--color-fern);
  border-radius: var(--radius-cards);
  padding: var(--spacing-20);
  font-family: 'Fira Code', 'JetBrains Mono', 'Berkeley Mono', monospace;
  font-size: var(--text-caption);
  line-height: 1.6;
  color: var(--color-phosphor-mint);
  overflow-x: auto;
}

.code-keyword {
  color: var(--color-reactor-green);
}

.code-string {
  color: var(--color-soft-glow);
}

.code-comment {
  color: var(--color-lichen);
}

.code-line-number {
  color: var(--color-fern);
  margin-right: var(--spacing-16);
  user-select: none;
}

/* =============================================================================
   HERO SECTION
   ============================================================================= */

.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: var(--spacing-60) var(--spacing-20);
  background-color: var(--color-void);
  text-align: center;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin-bottom: var(--spacing-64);
}

.hero-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: var(--text-caption);
  line-height: var(--leading-caption);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-lichen);
  margin-bottom: var(--spacing-16);
  font-weight: var(--font-weight-medium);
}

.hero-headline {
  font-family: 'Inter Display', 'Inter', sans-serif;
  font-size: var(--text-display);
  line-height: var(--leading-display);
  letter-spacing: var(--tracking-display);
  color: var(--color-phosphor-mint);
  word-break: break-word;
  margin-bottom: var(--spacing-24);
  font-weight: var(--font-weight-regular);
}

.hero-subline {
  font-family: 'Inter', sans-serif;
  font-size: var(--text-body);
  line-height: var(--leading-body);
  color: var(--color-phosphor-mint);
  opacity: 0.8;
  max-width: 600px;
  margin: 0 auto var(--spacing-32);
}

.hero-cta-group {
  display: flex;
  gap: var(--spacing-12);
  justify-content: center;
  flex-wrap: wrap;
}

/* 3D Cube placeholder */
.hero-cube {
  width: 200px;
  height: 200px;
  margin: 0 auto;
  position: relative;
  animation: float 6s ease-in-out infinite;
}

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

/* =============================================================================
   NAVIGATION
   ============================================================================= */

header.nav-modal {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--color-carbon);
  border-bottom: 1px solid var(--color-fern);
  padding: 0 var(--spacing-20);
  height: 56px;
  display: flex;
  align-items: center;
  box-shadow: var(--shadow-md);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--page-max-width);
  margin: 0 auto;
  gap: var(--spacing-40);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--spacing-12);
  font-family: 'Inter Display', 'Inter', sans-serif;
  font-size: var(--text-subheading);
  font-weight: var(--font-weight-medium);
  color: var(--color-phosphor-mint);
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo-cube {
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, var(--color-reactor-green) 0%, var(--color-soft-glow) 100%);
  border-radius: 2px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: var(--spacing-32);
  list-style: none;
  flex: 1;
}

.nav-menu a {
  font-size: var(--text-body-sm);
  font-weight: var(--font-weight-medium);
  color: var(--color-phosphor-mint);
  text-decoration: none;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: all 150ms ease-out;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--color-reactor-green);
  border-bottom-color: var(--color-reactor-green);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--spacing-16);
  margin-left: auto;
}

.nav-login {
  color: var(--color-phosphor-mint);
  text-decoration: none;
  font-size: var(--text-body-sm);
  transition: all 150ms ease-out;
}

.nav-login:hover {
  color: var(--color-reactor-green);
}

/* =============================================================================
   FEATURE SECTIONS
   ============================================================================= */

.feature-section {
  display: grid;
  grid-template-columns: 30% 1fr;
  gap: var(--spacing-48);
  align-items: start;
}

.feature-tabs {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-20);
}

.feature-tab {
  padding: var(--spacing-12) 0;
  font-size: var(--text-caption);
  font-weight: var(--font-weight-medium);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-lichen);
  cursor: pointer;
  border-left: 2px solid transparent;
  padding-left: var(--spacing-16);
  transition: all 150ms ease-out;
  text-align: left;
}

.feature-tab:hover {
  color: var(--color-phosphor-mint);
}

.feature-tab.active {
  color: var(--color-reactor-green);
  border-left-color: var(--color-reactor-green);
}

.feature-content {
  position: relative;
}

.feature-heading {
  font-size: var(--text-heading);
  line-height: var(--leading-heading);
  letter-spacing: var(--tracking-heading);
  color: var(--color-phosphor-mint);
  margin-bottom: var(--spacing-20);
  font-weight: var(--font-weight-regular);
}

.feature-body {
  font-size: var(--text-body);
  line-height: var(--leading-body);
  color: var(--color-phosphor-mint);
  margin-bottom: var(--spacing-24);
}

.feature-visual {
  margin-top: var(--spacing-24);
  background-color: var(--color-moss);
  border: 1px solid var(--color-fern);
  border-radius: var(--radius-cards);
  padding: var(--spacing-24);
  min-height: 300px;
}

/* =============================================================================
   TESTIMONIAL SECTION
   ============================================================================= */

.testimonial-section {
  background-color: var(--color-pale-mist);
  color: var(--color-void);
  padding: var(--spacing-80) var(--spacing-20);
  margin: var(--spacing-80) 0;
}

.testimonial-container {
  max-width: var(--page-max-width);
  margin: 0 auto;
}

.testimonial-eyebrow {
  font-size: var(--text-caption);
  line-height: var(--leading-caption);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-lichen);
  margin-bottom: var(--spacing-16);
  font-weight: var(--font-weight-medium);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-16);
  margin-top: var(--spacing-32);
}

.testimonial-card {
  background-color: transparent;
  border: none;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--color-lichen);
  margin-bottom: var(--spacing-12);
}

.testimonial-name {
  font-size: var(--text-body-sm);
  font-weight: var(--font-weight-semibold);
  color: var(--color-void);
  margin-bottom: var(--spacing-4);
}

.testimonial-role {
  font-size: var(--text-caption);
  color: var(--color-lichen);
  margin-bottom: var(--spacing-12);
}

.testimonial-quote {
  font-size: var(--text-body);
  line-height: var(--leading-body);
  color: var(--color-void);
}

/* =============================================================================
   LOGO STRIP
   ============================================================================= */

.logo-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--spacing-32) 0;
  border-top: 1px solid var(--color-fern);
  border-bottom: 1px solid var(--color-fern);
}

.logo-item {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 var(--spacing-16);
  border-right: 1px solid var(--color-fern);
  height: 80px;
}

.logo-item:last-child {
  border-right: none;
}

.logo-item img {
  max-width: 120px;
  max-height: 40px;
  opacity: 0.5;
  transition: opacity 150ms ease-out;
}

.logo-item:hover img {
  opacity: 0.7;
}

/* =============================================================================
   CLOSING CTA
   ============================================================================= */

.cta-banner {
  background-color: var(--color-void);
  padding: var(--spacing-80) var(--spacing-20);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-60);
  align-items: center;
}

.cta-cubes {
  position: relative;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-cube {
  position: absolute;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--color-reactor-green) 0%, var(--color-soft-glow) 100%);
  border-radius: 4px;
  opacity: 0.7;
  animation: float 8s ease-in-out infinite;
}

.cta-cube:nth-child(2) {
  animation-delay: 0.5s;
  width: 60px;
  height: 60px;
}

.cta-cube:nth-child(3) {
  animation-delay: 1s;
  width: 40px;
  height: 40px;
}

.cta-content h2 {
  font-size: var(--text-heading-lg);
  line-height: var(--leading-heading-lg);
  letter-spacing: var(--tracking-heading-lg);
  color: var(--color-phosphor-mint);
  margin-bottom: var(--spacing-24);
  max-width: 480px;
}

/* =============================================================================
   ANIMATIONS
   ============================================================================= */

@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 0 20px rgba(127, 238, 100, 0.2); }
  50% { box-shadow: 0 0 40px rgba(127, 238, 100, 0.4); }
}

@keyframes slide-in-down {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slide-in-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.animate-glow {
  animation: glow-pulse 3s ease-in-out infinite;
}

.animate-slide-down {
  animation: slide-in-down 0.6s ease-out;
}

.animate-slide-up {
  animation: slide-in-up 0.6s ease-out;
}

.animate-fade {
  animation: fade-in 0.6s ease-out;
}

/* =============================================================================
   RESPONSIVE DESIGN
   ============================================================================= */

@media (max-width: 1024px) {
  .feature-section {
    grid-template-columns: 1fr;
    gap: var(--spacing-32);
  }

  .cta-banner {
    grid-template-columns: 1fr;
    gap: var(--spacing-40);
  }

  .cta-cubes {
    height: 200px;
  }
}

@media (max-width: 768px) {
  :root {
    --text-display: 48px;
    --text-heading-lg: 36px;
    --text-heading: 28px;
    --page-max-width: 100%;
  }

  .nav-menu {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: var(--spacing-40) var(--spacing-20);
  }

  .feature-tabs {
    flex-direction: row;
    gap: var(--spacing-12);
    overflow-x: auto;
    padding-bottom: var(--spacing-12);
  }

  .feature-tab {
    white-space: nowrap;
  }

  .logo-strip {
    flex-wrap: wrap;
  }

  .logo-item {
    flex: 0 0 50%;
    border-right: none;
    border-bottom: 1px solid var(--color-fern);
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .hero-cta-group {
    flex-direction: column;
    width: 100%;
  }

  .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  :root {
    --text-display: 32px;
    --text-heading-lg: 28px;
    --text-heading: 24px;
    --section-gap: 40px;
  }

  .nav-container {
    gap: var(--spacing-16);
  }

  .nav-menu {
    display: none;
  }

  header.nav-modal {
    height: auto;
    padding: var(--spacing-12) var(--spacing-16);
  }

  .hero {
    padding: var(--spacing-32) var(--spacing-16);
  }

  .hero-cube {
    width: 120px;
    height: 120px;
  }

  .logo-item {
    flex: 0 0 100%;
  }

  .cta-banner {
    padding: var(--spacing-40) var(--spacing-16);
  }
}

/* =============================================================================
   UTILITIES
   ============================================================================= */

.hidden {
  display: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

:focus {
  outline: 2px solid var(--color-reactor-green);
  outline-offset: 2px;
}

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

/* =============================================================================
   EPIC PLAY — HEADER, FOOTER, NOTIFICATIONS, COOKIES
   ============================================================================= */

/* HEADER LAYOUT & STRUCTURE */
.epic-header {
  position: fixed;
  top: var(--spacing-20);
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  width: calc(100% - 40px);
  max-width: 1200px;
}

.epic-nav {
  background: rgba(33, 37, 37, 0.85);
  backdrop-filter: blur(16px);
  border: 1px solid #485346;
  border-radius: 9999px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--spacing-32);
  box-shadow: 0 0 40px rgba(127, 238, 100, 0.15), 0 8px 32px rgba(0, 0, 0, 0.4);
  transition: all 200ms ease-out;
}

/* LOGO SECTION */
.epic-logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  transition: opacity 150ms ease-out;
}

.epic-logo-link:hover {
  opacity: 0.85;
}

.epic-nav-logo {
  height: 48px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 0 12px rgba(127,238,100,0.3));
  transition: filter 0.3s ease;
}
.epic-logo-link:hover .epic-nav-logo {
  filter: drop-shadow(0 0 18px rgba(127,238,100,0.55));
}

/* NAVIGATION MENU */
.epic-nav-list {
  display: flex;
  align-items: center;
  gap: var(--spacing-32);
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
  justify-content: center;
}

.epic-nav-item {
  list-style: none;
}

.epic-nav-link {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #ddffdc;
  text-decoration: none;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: all 150ms ease-out;
  letter-spacing: -0.26px;
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}

.epic-nav-link:hover {
  color: #7fee64;
  border-bottom-color: #7fee64;
}

/* DROPDOWN MENUS */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-menu {
  position: absolute;
  background: rgba(33, 37, 37, 0.95);
  backdrop-filter: blur(12px);
  border: 1px solid #485346;
  border-radius: 12px;
  padding: 12px 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transition: all 150ms ease-out;
  z-index: 1001;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4), 0 0 40px rgba(127, 238, 100, 0.1);
}

.nav-dropdown-menu.games-menu {
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  min-width: 220px;
}

.nav-dropdown-menu.utility-menu {
  top: calc(100% + 8px);
  left: 0;
  right: auto;
  transform: translateY(-10px);
  min-width: 150px;
}

.nav-dropdown-menu.utility-menu-small {
  top: calc(100% + 8px);
  left: 0;
  right: auto;
  transform: translateY(-10px);
  min-width: 120px;
}

.nav-dropdown-menu.account-menu {
  top: calc(100% + 12px);
  left: auto;
  right: 0;
  transform: translateY(-10px);
  min-width: 180px;
}

.nav-dropdown:hover > .nav-dropdown-menu {
  opacity: 1 !important;
  visibility: visible !important;
}

.nav-dropdown:hover > .nav-dropdown-menu.games-menu {
  transform: translateX(-50%) translateY(0) !important;
}

.nav-dropdown:hover > .nav-dropdown-menu.utility-menu,
.nav-dropdown:hover > .nav-dropdown-menu.utility-menu-small {
  transform: translateY(0) !important;
}

.nav-dropdown:hover > .nav-dropdown-menu.account-menu {
  transform: translateY(0) !important;
}

.nav-dropdown-item {
  list-style: none;
}

.nav-dropdown-link {
  display: block;
  padding: var(--spacing-12) var(--spacing-20);
  color: #ddffdc;
  text-decoration: none;
  font-size: 13px;
  transition: all 150ms ease-out;
  border-left: 2px solid transparent;
  letter-spacing: -0.26px;
}

.nav-dropdown-link:hover {
  background-color: rgba(127, 238, 100, 0.1);
  border-left-color: #7fee64;
  color: #7fee64;
}

.nav-dropdown-link.small {
  font-size: 12px;
  padding: var(--spacing-8) var(--spacing-16);
  letter-spacing: -0.24px;
}

.nav-dropdown-link.logout {
  color: #7fee64;
}

/* UTILITY BUTTONS & CONTROLS */
.epic-nav-actions {
  display: flex;
  align-items: center;
  gap: var(--spacing-20);
  flex-shrink: 0;
}

.epic-cart-btn {
  border: none;
  background: none;
  color: #ddffdc;
  cursor: pointer;
  position: relative;
  padding: 6px;
  transition: all 150ms ease-out;
  font-size: 14px;
}

.epic-cart-btn:hover {
  color: #7fee64;
  transform: scale(1.1);
}

.epic-cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: linear-gradient(135deg, #7fee64 0%, #c8f9b6 100%);
  color: #000000;
  font-size: 9px;
  font-weight: 700;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 0, 0, 0.2);
}

.epic-dropdown-btn {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  border: 1px solid #485346;
  background: transparent;
  color: #ddffdc;
  cursor: pointer;
  padding: 6px 12px;
  border-radius: 6px;
  transition: all 150ms ease-out;
  display: flex;
  align-items: center;
  gap: 4px;
  letter-spacing: -0.24px;
}

.epic-dropdown-btn:hover,
.nav-dropdown:hover > .epic-dropdown-btn {
  color: #7fee64;
  border-color: #7fee64;
  background-color: rgba(127, 238, 100, 0.05);
  box-shadow: 0 0 12px rgba(127, 238, 100, 0.2);
}

.epic-dropdown-btn-lg {
  font-size: 13px;
  border: none;
  padding: 6px 0;
}

/* AUTH LINKS */
.epic-login-link {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #ddffdc;
  text-decoration: none;
  padding: 6px 0;
  transition: all 150ms ease-out;
  white-space: nowrap;
  letter-spacing: -0.26px;
}

.epic-login-link:hover {
  color: #7fee64;
}

.epic-register-btn {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  background: linear-gradient(135deg, #7fee64 0%, #c8f9b6 100%);
  color: #000000;
  padding: 8px 20px;
  border-radius: 9999px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 150ms ease-out;
  box-shadow: 0 0 20px rgba(127, 238, 100, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  white-space: nowrap;
  height: 32px;
  letter-spacing: -0.26px;
  border: none;
}

.epic-register-btn:hover {
  box-shadow: 0 0 40px rgba(127, 238, 100, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

/* CART SIDEBAR */
.epic-cart-sidebar {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 450px;
  height: 100vh;
  background: rgba(33, 37, 37, 0.95);
  backdrop-filter: blur(12px);
  border-left: 1px solid #485346;
  z-index: 2000;
  overflow-y: auto;
  overflow-x: hidden;
  transition: right 300ms ease-out;
  padding: 20px;
}

.epic-cart-close-btn {
  position: fixed;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: #ddffdc;
  font-size: 20px;
  cursor: pointer;
  transition: all 150ms ease-out;
  z-index: 2001;
  padding: 8px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.epic-cart-close-btn:hover {
  color: #7fee64;
  transform: scale(1.1);
}

.epic-cart-title {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #ddffdc;
  margin-bottom: 20px;
  border-bottom: 1px solid #485346;
  padding-bottom: 16px;
  margin-top: 30px;
}

.epic-cart-item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(72, 83, 70, 0.3);
}

.epic-cart-item-img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
}

.epic-cart-item-info {
  flex: 1;
}

.epic-cart-item-title {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #ddffdc;
  margin-bottom: 6px;
  font-weight: 500;
}

.epic-cart-training-box {
  background: linear-gradient(135deg, #3e4a3c 0%, #2a3530 100%);
  border: 1px solid #7fee64;
  border-radius: 6px;
  padding: 8px 10px;
  margin-bottom: 8px;
}

.training-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
}

.training-label {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: #7fee64;
  font-weight: 600;
}

.training-remove-x {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  color: #dc3545;
  text-decoration: none;
  cursor: pointer;
  transition: color 150ms ease;
  line-height: 1;
  padding: 0 4px;
}

.training-remove-x:hover {
  color: #ff6b7a;
}

.training-breakdown {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: #aed2a4;
  margin: 0;
  font-weight: 500;
}

.epic-cart-item-qty {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: #aed2a4;
  margin-bottom: 8px;
}

.epic-cart-item-price {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #7fee64;
}

.epic-cart-item-delete {
  background: none;
  border: none;
  color: #aed2a4;
  cursor: pointer;
  font-size: 14px;
  padding: 4px;
  transition: color 150ms ease-out;
}

.epic-cart-item-delete:hover {
  color: #7fee64;
}

.epic-cart-empty {
  text-align: center;
  color: #aed2a4;
  padding: 20px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
}

.epic-cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 12px;
  background: rgba(127, 238, 100, 0.05);
  border-radius: 8px;
  margin: 20px 0;
  border: 1px solid #485346;
}

.epic-cart-total-label {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #ddffdc;
  font-weight: 500;
}

.epic-cart-total-amount {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #7fee64;
}

.epic-cart-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.epic-cart-action-link {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  border: 1px solid #485346;
  background: transparent;
  color: #ddffdc;
  padding: 10px 16px;
  border-radius: 6px;
  text-align: center;
  text-decoration: none;
  transition: all 150ms ease-out;
  display: block;
}

.epic-cart-action-link:hover {
  background: rgba(127, 238, 100, 0.05);
  border-color: #7fee64;
  color: #7fee64;
}

.epic-cart-checkout-btn {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  background: linear-gradient(135deg, #7fee64 0%, #c8f9b6 100%);
  color: #000000;
  padding: 10px 16px;
  border-radius: 6px;
  text-align: center;
  text-decoration: none;
  transition: all 150ms ease-out;
  display: block;
  border: none;
  cursor: pointer;
  box-shadow: 0 0 20px rgba(127, 238, 100, 0.3);
}

.epic-cart-checkout-btn:hover {
  box-shadow: 0 0 40px rgba(127, 238, 100, 0.5);
  transform: translateY(-2px);
}

/* ALERT / NOTIFICATION STYLING */
.alert {
  position: fixed !important;
  top: 110px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  z-index: 997 !important;
  max-width: 500px !important;
  width: calc(100vw - 40px) !important;
  margin: 0 !important;
  padding: 14px 20px !important;
  border-radius: 8px !important;
  border: 2px solid !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  letter-spacing: -0.26px !important;
  backdrop-filter: blur(16px) !important;
  text-align: center !important;
  animation: alertSlideDown 400ms cubic-bezier(0.34, 1.56, 0.64, 1) forwards !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3) !important;
}

.alert-message {
  margin: 0 !important;
  display: inline;
}

.alert.alert-success {
  background: rgba(127, 238, 100, 0.1) !important;
  border-color: #7fee64 !important;
  color: #7fee64 !important;
}

.alert.alert-danger {
  background: rgba(255, 107, 107, 0.1) !important;
  border-color: #ff6b6b !important;
  color: #ff6b6b !important;
}

.alert.alert-warning {
  background: rgba(255, 193, 7, 0.1) !important;
  border-color: #ffc107 !important;
  color: #ffc107 !important;
}

.alert.alert-info {
  background: rgba(100, 200, 255, 0.1) !important;
  border-color: #64c8ff !important;
  color: #64c8ff !important;
}

@keyframes alertSlideDown {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

@keyframes alertSlideUp {
  from {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  to {
    opacity: 0;
    transform: translateX(-50%) translateY(-20px);
  }
}

@media (max-width: 768px) {
  .alert {
    width: calc(100vw - 30px) !important;
    padding: 14px 16px !important;
    font-size: 13px !important;
    top: 100px !important;
  }
}

/* FOOTER STYLING */
.epic-footer {
  background: linear-gradient(180deg, rgba(33, 37, 37, 0.8) 0%, rgba(20, 24, 24, 0.95) 100%);
  border-top: 1px solid #485346;
  padding: 60px 0 0 0;
  margin-top: 80px;
}

/* Newsletter Section */
.epic-newsletter-section {
  padding: 40px 20px;
  background: rgba(127, 238, 100, 0.05);
  border-bottom: 1px solid #485346;
}

.epic-newsletter-container {
  max-width: 1200px;
  margin: 0 auto;
}

.epic-newsletter-inner {
  text-align: center;
}

.epic-newsletter-title {
  font-family: 'Inter', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #ddffdc;
  margin: 0 0 12px 0;
  letter-spacing: -0.56px;
}

.epic-newsletter-desc {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #aed2a4;
  margin: 0 0 24px 0;
  line-height: 1.6;
  letter-spacing: -0.28px;
}

.epic-newsletter-form {
  max-width: 500px;
  margin: 0 auto;
}

.epic-newsletter-form-group {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 16px;
}

.epic-newsletter-input {
  flex: 1;
  padding: 12px 16px;
  border: 1.5px solid #485346;
  border-radius: 8px;
  background: rgba(33, 37, 37, 0.6);
  color: #ddffdc;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  transition: all 200ms ease-out;
}

.epic-newsletter-input::placeholder {
  color: #7a8d7f;
}

.epic-newsletter-input:focus {
  outline: none;
  border-color: #7fee64;
  background: rgba(33, 37, 37, 0.8);
  box-shadow: 0 0 12px rgba(127, 238, 100, 0.2);
}

.epic-newsletter-btn {
  padding: 12px 24px;
  background: linear-gradient(135deg, #7fee64 0%, #c8f9b6 100%);
  color: #000000;
  border: none;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 200ms ease-out;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  box-shadow: 0 0 20px rgba(127, 238, 100, 0.3);
  letter-spacing: -0.26px;
}

.epic-newsletter-btn:hover:not(:disabled) {
  box-shadow: 0 0 40px rgba(127, 238, 100, 0.5);
  transform: translateY(-2px);
}

.epic-newsletter-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.epic-newsletter-success {
  display: none;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: rgba(127, 238, 100, 0.1);
  border: 1.5px solid #7fee64;
  border-radius: 8px;
  color: #7fee64;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  letter-spacing: -0.26px;
}

.epic-newsletter-success.show {
  display: flex;
  animation: slideUp 400ms ease-out forwards;
}

.epic-newsletter-success i {
  font-size: 16px;
  flex-shrink: 0;
}

/* Footer Content Grid */
.epic-footer-content {
  padding: 40px 20px;
}

.epic-footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.epic-footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* Left Column: Logo & Contact */
.epic-footer-logo-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.epic-footer-logo-section a {
  display: inline-flex;
  transition: all 150ms ease-out;
}

.epic-footer-logo-section a:hover {
  opacity: 0.8;
}

.epic-footer-logo {
  height: 90px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(127,238,100,0.2));
}

.epic-footer-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.epic-footer-info-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.epic-footer-info-icon {
  font-size: 16px;
  color: #7fee64;
  margin-top: 2px;
  flex-shrink: 0;
}

.epic-footer-info-text {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #aed2a4;
  margin: 0;
  line-height: 1.6;
  letter-spacing: -0.26px;
}

.epic-footer-info-text a {
  color: #7fee64;
  text-decoration: none;
  transition: all 150ms ease-out;
}

.epic-footer-info-text a:hover {
  color: #c8f9b6;
  text-shadow: 0 0 8px rgba(127, 238, 100, 0.4);
}

/* Center Column: Links */
.epic-footer-links-section,
.epic-footer-nav-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.epic-footer-links-title,
.epic-footer-nav-title {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #ddffdc;
  margin: 0;
  letter-spacing: -0.28px;
}

.epic-footer-links-list,
.epic-footer-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.epic-footer-links-item,
.epic-footer-nav-item {
  list-style: none;
}

.epic-footer-links-link,
.epic-footer-nav-link {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #aed2a4;
  text-decoration: none;
  transition: all 150ms ease-out;
  letter-spacing: -0.26px;
}

.epic-footer-links-link:hover,
.epic-footer-nav-link:hover {
  color: #7fee64;
  padding-left: 4px;
}

/* Footer Bottom */
.epic-footer-bottom {
  border-top: 1px solid #485346;
  padding: 32px 20px;
  background: rgba(0, 0, 0, 0.3);
}

.epic-footer-bottom-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.epic-footer-copyright {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: #7a8d7f;
  margin: 0;
  letter-spacing: -0.24px;
}

.epic-footer-copyright a {
  color: #7fee64;
  text-decoration: none;
  transition: all 150ms ease-out;
}

.epic-footer-copyright a:hover {
  color: #c8f9b6;
}

.epic-footer-payment-img {
  height: 24px;
  width: auto;
}

/* Scroll to Top Button */
.epic-scroll-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: linear-gradient(135deg, #7fee64 0%, #c8f9b6 100%);
  color: #000000;
  border: none;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 900;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 300ms ease-out;
  box-shadow: 0 0 20px rgba(127, 238, 100, 0.3);
}

.epic-scroll-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.epic-scroll-top:hover {
  box-shadow: 0 0 40px rgba(127, 238, 100, 0.5);
  transform: translateY(-4px);
}

/* FOOTER ANIMATIONS */
@keyframes floatUp {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
}

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

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

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

@keyframes bounceIcon {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

@keyframes glowPulse {
  0%, 100% {
    text-shadow: 0 0 8px rgba(127, 238, 100, 0.4);
  }
  50% {
    text-shadow: 0 0 16px rgba(127, 238, 100, 0.8);
  }
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Apply animations to footer elements */
.epic-newsletter-section {
  animation: slideInUp 800ms ease-out;
}

.epic-footer-logo-section {
  animation: slideInLeft 800ms ease-out 100ms both;
}

.epic-footer-links-section {
  animation: slideInUp 800ms ease-out 200ms both;
}

.epic-footer-nav-section {
  animation: slideInRight 800ms ease-out 300ms both;
}

.epic-footer-logo-section a {
  animation: none;
}

.epic-footer-info-icon {
  animation: bounceIcon 2s ease-in-out infinite;
}

.epic-footer-links-link,
.epic-footer-nav-link {
  position: relative;
}

.epic-footer-links-link::before,
.epic-footer-nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #7fee64, #c8f9b6);
  transition: width 300ms ease-out;
}

.epic-footer-links-link:hover::before,
.epic-footer-nav-link:hover::before {
  width: 100%;
}

.epic-footer-links-link:hover,
.epic-footer-nav-link:hover {
  color: #7fee64;
  padding-left: 6px;
  text-shadow: 0 0 8px rgba(127, 238, 100, 0.3);
}

.epic-footer-info-text a {
  position: relative;
}

.epic-footer-info-text a:hover {
  animation: glowPulse 1s ease-in-out infinite;
}

.epic-newsletter-title {
  animation: fadeInScale 600ms ease-out;
}

.epic-newsletter-form {
  animation: fadeInScale 600ms ease-out 200ms both;
}

.epic-footer-links-title,
.epic-footer-nav-title {
  position: relative;
  padding-bottom: 12px;
}

.epic-footer-links-title::after,
.epic-footer-nav-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, #7fee64, transparent);
  animation: expandWidth 800ms ease-out;
}

@keyframes expandWidth {
  from {
    width: 0;
  }
  to {
    width: 30px;
  }
}

.epic-scroll-top {
  animation: fadeInScale 500ms ease-out;
}

.epic-scroll-top:hover {
  animation: glowPulse 1s ease-in-out infinite;
}

.epic-newsletter-input {
  transition: all 300ms ease-out;
  position: relative;
}

.epic-newsletter-input:focus {
  animation: none;
}

.epic-newsletter-btn {
  position: relative;
  overflow: hidden;
}

.epic-newsletter-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transition: left 300ms ease-out;
}

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

.epic-footer-bottom-inner {
  animation: slideInUp 800ms ease-out 400ms both;
  border-top: 1px solid rgba(127, 238, 100, 0.1);
  padding-top: 20px;
}

.epic-cart-item {
  animation: slideInUp 600ms ease-out;
  transition: all 300ms ease-out;
}

.epic-cart-item:hover {
  background: rgba(127, 238, 100, 0.05);
  border-radius: 8px;
  padding: 12px;
  margin: 0 -12px;
}

.epic-footer-grid {
  animation: fadeInScale 800ms ease-out;
}

.epic-footer-info-item {
  transition: all 300ms ease-out;
}

.epic-footer-info-item:hover {
  padding-left: 8px;
  animation: glowPulse 1s ease-in-out infinite;
}

/* Newsletter success message animation */
.epic-newsletter-success.show {
  animation: slideInUp 400ms ease-out forwards, glowPulse 2s ease-in-out 400ms infinite;
}

/* EPIC RESPONSIVE DESIGN */
@media (max-width: 1024px) {
  .epic-footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .epic-footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .epic-newsletter-section {
    padding: 30px 20px;
  }

  .epic-newsletter-title {
    font-size: 22px;
  }

  .epic-newsletter-form-group {
    flex-direction: column;
  }

  .epic-footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }

  .epic-newsletter-btn {
    width: 100%;
    justify-content: center;
  }

  .epic-scroll-top {
    width: 40px;
    height: 40px;
    font-size: 14px;
    bottom: 16px;
    right: 16px;
  }
}

@media (max-width: 480px) {
  .epic-footer {
    margin-top: 40px;
  }

  .epic-newsletter-title {
    font-size: 20px;
  }

  .epic-footer-copyright {
    font-size: 11px;
  }

  .epic-footer-payment-img {
    height: 20px;
  }
}
  /* Hero Section Container */
  .epic-hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 60px;
    z-index: 1;
  }

  /* Portal Rings */
  .epic-portal-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    z-index: 2;
  }

  .epic-portal-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 2px solid rgba(127, 238, 100, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: portalRotate 20s linear infinite;
  }

  .portal-1 {
    width: 300px;
    height: 300px;
    animation-duration: 20s;
    box-shadow: 0 0 30px rgba(127, 238, 100, 0.2), inset 0 0 30px rgba(127, 238, 100, 0.1);
  }

  .portal-2 {
    width: 400px;
    height: 400px;
    animation-duration: 25s;
    animation-direction: reverse;
    border-color: rgba(127, 238, 100, 0.2);
    box-shadow: 0 0 40px rgba(127, 238, 100, 0.15), inset 0 0 40px rgba(127, 238, 100, 0.05);
  }

  .portal-3 {
    width: 500px;
    height: 500px;
    animation-duration: 30s;
    border-color: rgba(127, 238, 100, 0.1);
    box-shadow: 0 0 50px rgba(127, 238, 100, 0.1), inset 0 0 50px rgba(127, 238, 100, 0);
  }

  @keyframes portalRotate {
    from {
      transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
      transform: translate(-50%, -50%) rotate(360deg);
    }
  }

  /* Particles */
  .epic-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
  }

  .particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: rgba(127, 238, 100, 0.6);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(127, 238, 100, 0.8);
    animation: floatParticles 20s infinite;
  }

  .particle-1 { top: 20%; left: 10%; animation-delay: 0s; }
  .particle-2 { top: 30%; left: 20%; animation-delay: 2s; }
  .particle-3 { top: 40%; left: 70%; animation-delay: 4s; }
  .particle-4 { top: 60%; left: 80%; animation-delay: 6s; }
  .particle-5 { top: 70%; left: 30%; animation-delay: 8s; }
  .particle-6 { top: 80%; left: 60%; animation-delay: 10s; }

  @keyframes floatParticles {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0; }
    50% { transform: translate(30px, -30px) scale(1.5); opacity: 1; }
  }

  /* Light Rays */
  .epic-light-rays {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
  }

  .light-ray {
    position: absolute;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, rgba(127, 238, 100, 0.3), transparent);
    filter: blur(3px);
    animation: rayMove 8s ease-in-out infinite;
  }

  .ray-1 { left: 25%; animation-delay: 0s; }
  .ray-2 { left: 50%; animation-delay: 2s; }
  .ray-3 { left: 75%; animation-delay: 4s; }

  @keyframes rayMove {
    0%, 100% { opacity: 0; }
    50% { opacity: 0.6; }
  }

  /* Hero Content */
  .epic-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 900px;
    padding: 40px 20px;
  }

  /* Hero Eyebrow (Modal Style) */
  .epic-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    margin-bottom: 32px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: var(--color-lichen, #677d64);
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .eyebrow-dot {
    display: inline-block;
    width: 4px;
    height: 4px;
    background: var(--color-reactor-green, #7fee64);
    border-radius: 50%;
  }

  /* Hero Title (Modal Display Heading) */
  .epic-hero-title {
    font-family: 'Inter Display', 'Inter', sans-serif;
    font-size: 64px;
    font-weight: 400;
    color: var(--color-phosphor-mint, #ddffdc);
    line-height: 1.05;
    margin-bottom: 24px;
    letter-spacing: -0.96px;
    max-width: 900px;
  }

  /* Hero Subtitle (Modal Body) */
  .epic-hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: var(--color-phosphor-mint, #ddffdc);
    line-height: 1.5;
    margin-bottom: 48px;
    letter-spacing: -0.35px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    opacity: 0.9;
  }

  /* CTA Buttons */
  .epic-hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
  }

  /* Primary Action Button (Modal Reactor) */
  .epic-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 14px;
    transition: all 150ms ease-out;
    border: none;
    cursor: pointer;
    background: var(--color-reactor-green, #7fee64);
    color: var(--color-void, #000000);
    letter-spacing: -0.31px;
  }

  .epic-btn-primary:hover {
    background: #95ff89;
    transform: translateY(-2px);
  }

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

  /* Secondary Ghost Button (Modal) */
  .epic-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 14px;
    transition: all 150ms ease-out;
    border: 1px solid var(--color-fern, #485346);
    cursor: pointer;
    background: transparent;
    color: var(--color-phosphor-mint, #ddffdc);
    letter-spacing: -0.31px;
  }

  .epic-btn-secondary:hover {
    border-color: var(--color-reactor-green, #7fee64);
    color: var(--color-reactor-green, #7fee64);
    background: transparent;
  }

  .epic-btn-secondary:active {
    opacity: 0.8;
  }

  /* Button Text & Icon */
  .btn-text {
    font-size: 14px;
    letter-spacing: -0.31px;
  }

  .btn-icon {
    display: none;
  }

  .btn-glow {
    display: none;
  }

  /* Stats Removed - Modal Design System */

  /* Scroll Indicator */
  .epic-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    z-index: 4;
    animation: scrollBounce 2.5s ease-in-out infinite;
  }

  .epic-scroll-indicator span {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: #aed2a4;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    font-weight: 700;
    opacity: 0.8;
  }

  .scroll-mouse {
    width: 26px;
    height: 44px;
    border: 2.5px solid rgba(127, 238, 100, 0.5);
    border-radius: 13px;
    display: flex;
    justify-content: center;
    padding-top: 10px;
    box-shadow: 0 0 15px rgba(127, 238, 100, 0.25), inset 0 0 10px rgba(127, 238, 100, 0.1);
    background: rgba(127, 238, 100, 0.05);
  }

  .scroll-wheel {
    width: 4px;
    height: 10px;
    background: #7fee64;
    border-radius: 2px;
    animation: wheelScroll 1.8s ease-in-out infinite;
    box-shadow: 0 0 8px rgba(127, 238, 100, 0.6);
  }

  @keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
  }

  @keyframes wheelScroll {
    0%, 100% { opacity: 1; transform: translateY(-6px); }
    50% { opacity: 0; transform: translateY(8px); }
  }

  /* Premium Gaming Discovery Section */
  .epic-gaming-discovery-section {
    position: relative;
    padding: 100px 20px;
    background: transparent;
    border-top: 1px solid rgba(127, 238, 100, 0.08);
    overflow: hidden;
    z-index: 1;
  }

  .epic-discovery-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
  }

  /* Section Header */
  .epic-discovery-header {
    margin-bottom: 60px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }

  .epic-discovery-title {
    font-family: 'Inter Display', 'Inter', sans-serif;
    font-size: 56px;
    font-weight: 400;
    color: #ddffdc;
    margin: 0 0 12px 0;
    letter-spacing: -0.7px;
    line-height: 1.1;
  }

  .epic-discovery-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #677d64;
    font-weight: 400;
    margin: 0;
    letter-spacing: -0.32px;
  }

  /* Category Filters */
  .epic-category-filters {
    display: flex;
    gap: 12px;
    margin-bottom: 48px;
    flex-wrap: wrap;
  }

  .epic-filter-btn {
    padding: 12px 24px;
    background: transparent;
    border: 1px solid rgba(127, 238, 100, 0.2);
    border-radius: 8px;
    color: #ddffdc;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 300ms ease-out;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: -0.28px;
  }

  .epic-filter-btn:hover {
    border-color: #7fee64;
    color: #7fee64;
    background: rgba(127, 238, 100, 0.05);
  }

  .epic-filter-btn-active {
    background: rgba(127, 238, 100, 0.15);
    border-color: #7fee64;
    color: #7fee64;
  }

  /* Carousel Wrapper */
  .epic-carousel-wrapper {
    position: relative;
    margin-bottom: 60px;
  }

  .epic-gaming-carousel {
    position: relative;
    padding: 0 50px;
    overflow: visible;
  }

  .epic-gaming-carousel .swiper-wrapper {
    display: flex;
    align-items: stretch;
    padding: 10px 0;
  }

  .epic-gaming-carousel .swiper-slide {
    display: flex;
    align-items: stretch;
    height: auto;
    width: auto;
  }

  /* Game Card - Vertical Layout */
  .epic-game-card {
    background: rgba(33, 37, 37, 0.8);
    border: 1px solid rgba(127, 238, 100, 0.15);
    border-radius: 24px;
    backdrop-filter: blur(20px);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 400ms cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
    width: 100%;
    height: 100%;
  }

  .epic-game-card:hover {
    transform: translateY(-6px);
    border-color: rgba(127, 238, 100, 0.5);
    box-shadow: 0 20px 60px rgba(127, 238, 100, 0.15), inset 0 1px 0 rgba(127, 238, 100, 0.1);
  }

  /* Game Cover - Top */
  .epic-game-card-cover {
    position: relative;
    width: 100%;
    padding-bottom: 140%;
    overflow: hidden;
    background: #0a0a0a;
  }

  .epic-game-card-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 600ms cubic-bezier(0.34, 1.56, 0.64, 1);
  }

  .epic-game-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 100%);
    transition: all 300ms ease-out;
  }

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

  .epic-game-card:hover .epic-game-card-overlay {
    background: linear-gradient(180deg, rgba(127, 238, 100, 0.1) 0%, rgba(0, 0, 0, 0.6) 100%);
  }

  /* Game Card Content - Bottom */
  .epic-game-card-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
    gap: 14px;
  }

  .epic-game-card-title {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #ddffdc;
    margin: 0;
    letter-spacing: -0.32px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .epic-game-card-desc {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: #677d64;
    margin: 0;
    line-height: 1.5;
    letter-spacing: -0.24px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    position: relative;
  }

  .epic-game-card-desc::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    width: 20px;
    height: 1.5em;
    background: linear-gradient(90deg, transparent, rgba(33, 37, 37, 0.8));
    pointer-events: none;
  }

  .epic-game-card-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 18px;
    background: #7fee64;
    color: #000000;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: -0.24px;
    cursor: pointer;
    transition: all 300ms ease-out;
    width: fit-content;
  }

  .epic-game-card-cta:hover {
    background: #95ff89;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(127, 238, 100, 0.3);
  }

  .epic-game-card-cta i {
    font-size: 12px;
    transition: transform 300ms ease-out;
  }

  .epic-game-card-cta:hover i {
    transform: translateX(3px);
  }

  /* Navigation Controls */
  .epic-carousel-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: rgba(33, 37, 37, 0.9);
    border: 1px solid rgba(127, 238, 100, 0.2);
    border-radius: 8px;
    color: #ddffdc;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 300ms ease-out;
    z-index: 10;
    backdrop-filter: blur(10px);
  }

  .epic-carousel-nav-btn:hover {
    background: rgba(127, 238, 100, 0.1);
    border-color: #7fee64;
    color: #7fee64;
    box-shadow: 0 0 24px rgba(127, 238, 100, 0.2);
  }

  .epic-carousel-nav-prev {
    left: 0;
  }

  .epic-carousel-nav-next {
    right: 0;
  }

  /* Pagination Indicators */
  .epic-carousel-pagination {
    display: flex;
    gap: 8px;
    justify-content: center;
    align-items: center;
  }

  .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: rgba(127, 238, 100, 0.2);
    border-radius: 50%;
    cursor: pointer;
    transition: all 300ms ease-out;
  }

  .swiper-pagination-bullet:hover {
    background: rgba(127, 238, 100, 0.5);
  }

  .swiper-pagination-bullet-active {
    background: #7fee64;
    width: 28px;
    border-radius: 4px;
  }

  /* Background Glow */
  .epic-discovery-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(127, 238, 100, 0.03) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
  }

  /* Responsive Gaming Discovery */
  @media (max-width: 1400px) {
    .epic-discovery-title {
      font-size: 48px;
      letter-spacing: -0.6px;
    }

    .epic-gaming-carousel {
      padding: 0 40px;
    }
  }

  @media (max-width: 1200px) {
    .epic-gaming-carousel {
      padding: 0 35px;
    }
  }

  @media (max-width: 1024px) {
    .epic-gaming-discovery-section {
      padding: 80px 20px;
    }

    .epic-discovery-header {
      flex-direction: column;
      margin-bottom: 48px;
    }

    .epic-discovery-title {
      font-size: 40px;
      letter-spacing: -0.5px;
    }

    .epic-discovery-subtitle {
      font-size: 15px;
    }

    .epic-gaming-carousel {
      padding: 0 25px;
    }

    .epic-game-card-cover {
      padding-bottom: 140%;
    }

    .epic-game-card-content {
      padding: 20px;
      gap: 12px;
    }

    .epic-game-card-title {
      font-size: 15px;
      letter-spacing: -0.3px;
    }

    .epic-game-card-desc {
      font-size: 12px;
      letter-spacing: -0.24px;
      -webkit-line-clamp: 2;
    }

    .epic-game-card-cta {
      font-size: 12px;
      padding: 9px 16px;
    }
  }

  @media (max-width: 768px) {
    .epic-gaming-discovery-section {
      padding: 60px 16px;
    }

    .epic-discovery-title {
      font-size: 32px;
      letter-spacing: -0.4px;
      margin-bottom: 8px;
    }

    .epic-discovery-subtitle {
      font-size: 14px;
    }

    .epic-category-filters {
      margin-bottom: 40px;
      gap: 10px;
    }

    .epic-filter-btn {
      padding: 10px 16px;
      font-size: 12px;
    }

    .epic-gaming-carousel {
      padding: 0 15px;
    }

    .epic-carousel-nav-btn {
      width: 40px;
      height: 40px;
      font-size: 16px;
    }

    .epic-game-card-cover {
      padding-bottom: 140%;
    }

    .epic-game-card-content {
      padding: 18px;
      gap: 12px;
    }

    .epic-game-card-title {
      font-size: 14px;
      letter-spacing: -0.28px;
    }

    .epic-game-card-desc {
      font-size: 11px;
      letter-spacing: -0.22px;
      -webkit-line-clamp: 2;
    }

    .epic-game-card-cta {
      padding: 8px 14px;
      font-size: 11px;
    }
  }

  @media (max-width: 640px) {
    .epic-gaming-carousel {
      padding: 0 10px;
    }

    .epic-carousel-nav-btn {
      width: 38px;
      height: 38px;
      font-size: 15px;
    }
  }

  @media (max-width: 480px) {
    .epic-gaming-discovery-section {
      padding: 40px 12px;
    }

    .epic-discovery-title {
      font-size: 24px;
      letter-spacing: -0.3px;
    }

    .epic-discovery-subtitle {
      font-size: 13px;
    }

    .epic-category-filters {
      margin-bottom: 32px;
      gap: 8px;
    }

    .epic-filter-btn {
      padding: 8px 12px;
      font-size: 11px;
    }

    .epic-gaming-carousel {
      padding: 0;
    }

    .epic-carousel-nav-btn {
      width: 36px;
      height: 36px;
      font-size: 14px;
    }

    .epic-game-card {
      border-radius: 16px;
    }

    .epic-game-card-cover {
      padding-bottom: 140%;
    }

    .epic-game-card-content {
      padding: 16px;
      gap: 10px;
    }

    .epic-game-card-title {
      font-size: 14px;
      letter-spacing: -0.28px;
    }

    .epic-game-card-desc {
      font-size: 11px;
      letter-spacing: -0.22px;
      -webkit-line-clamp: 2;
    }

    .epic-game-card-cta {
      padding: 8px 14px;
      font-size: 11px;
    }

    .epic-discovery-glow {
      width: 400px;
      height: 400px;
    }
  }

  /* Premium Why Choose Section */
  .epic-why-section-premium {
    position: relative;
    padding: 100px 20px;
    background: transparent;
    border-top: 1px solid rgba(127, 238, 100, 0.08);
    overflow: hidden;
    z-index: 1;
  }

  .epic-why-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
  }

  /* Why Choose Header */
  .epic-why-header {
    text-align: center;
    margin-bottom: 70px;
  }

  .epic-why-title {
    font-family: 'Inter Display', 'Inter', sans-serif;
    font-size: 56px;
    font-weight: 400;
    color: #ddffdc;
    margin: 0 0 12px 0;
    letter-spacing: -0.7px;
    line-height: 1.1;
  }

  .epic-why-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #677d64;
    font-weight: 400;
    margin: 0;
    letter-spacing: -0.32px;
  }

  /* Why Choose Cards Grid */
  .epic-why-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    width: 100%;
  }

  /* Why Choose Card */
  .epic-why-card-premium {
    background: rgba(33, 37, 37, 0.8);
    border: 1px solid rgba(127, 238, 100, 0.15);
    border-radius: 24px;
    backdrop-filter: blur(20px);
    padding: 44px 32px;
    text-align: center;
    transition: all 400ms cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    cursor: pointer;
  }

  .epic-why-card-premium:hover {
    transform: translateY(-6px);
    border-color: rgba(127, 238, 100, 0.5);
    box-shadow: 0 20px 60px rgba(127, 238, 100, 0.15), inset 0 1px 0 rgba(127, 238, 100, 0.1);
  }

  /* Why Choose Card Icon */
  .epic-why-card-icon {
    width: 64px;
    height: 64px;
    background: rgba(127, 238, 100, 0.1);
    border: 1px solid rgba(127, 238, 100, 0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #7fee64;
    transition: all 300ms ease-out;
  }

  .epic-why-card-premium:hover .epic-why-card-icon {
    background: rgba(127, 238, 100, 0.2);
    border-color: #7fee64;
    box-shadow: 0 0 24px rgba(127, 238, 100, 0.2);
  }

  /* Why Choose Card Title */
  .epic-why-card-title {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #ddffdc;
    margin: 0;
    letter-spacing: -0.4px;
    line-height: 1.3;
  }

  /* Why Choose Card Text */
  .epic-why-card-text {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #677d64;
    margin: 0;
    line-height: 1.6;
    letter-spacing: -0.28px;
  }

  /* Why Choose Background Glow */
  .epic-why-glow {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(127, 238, 100, 0.03) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
  }

  /* Responsive Why Choose Section */
  @media (max-width: 1400px) {
    .epic-why-title {
      font-size: 48px;
      letter-spacing: -0.6px;
    }
  }

  @media (max-width: 1024px) {
    .epic-why-section-premium {
      padding: 80px 20px;
    }

    .epic-why-header {
      margin-bottom: 60px;
    }

    .epic-why-title {
      font-size: 40px;
      letter-spacing: -0.5px;
    }

    .epic-why-subtitle {
      font-size: 15px;
    }

    .epic-why-cards-grid {
      gap: 28px;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .epic-why-card-premium {
      padding: 36px 28px;
    }

    .epic-why-card-icon {
      width: 56px;
      height: 56px;
      font-size: 24px;
    }

    .epic-why-card-title {
      font-size: 18px;
      letter-spacing: -0.36px;
    }

    .epic-why-card-text {
      font-size: 13px;
      letter-spacing: -0.26px;
    }

    .epic-why-glow {
      width: 400px;
      height: 400px;
    }
  }

  @media (max-width: 768px) {
    .epic-why-section-premium {
      padding: 60px 16px;
    }

    .epic-why-header {
      margin-bottom: 48px;
    }

    .epic-why-title {
      font-size: 32px;
      letter-spacing: -0.4px;
    }

    .epic-why-subtitle {
      font-size: 14px;
    }

    .epic-why-cards-grid {
      gap: 24px;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .epic-why-card-premium {
      padding: 32px 24px;
      gap: 16px;
    }

    .epic-why-card-icon {
      width: 52px;
      height: 52px;
      font-size: 22px;
    }

    .epic-why-card-title {
      font-size: 16px;
      letter-spacing: -0.32px;
    }

    .epic-why-card-text {
      font-size: 12px;
      letter-spacing: -0.24px;
    }
  }

  @media (max-width: 480px) {
    .epic-why-section-premium {
      padding: 40px 12px;
    }

    .epic-why-header {
      margin-bottom: 40px;
    }

    .epic-why-title {
      font-size: 24px;
      letter-spacing: -0.3px;
    }

    .epic-why-subtitle {
      font-size: 13px;
    }

    .epic-why-cards-grid {
      gap: 20px;
      grid-template-columns: 1fr;
    }

    .epic-why-card-premium {
      padding: 28px 20px;
    }

    .epic-why-card-icon {
      width: 48px;
      height: 48px;
      font-size: 20px;
    }

    .epic-why-card-title {
      font-size: 15px;
      letter-spacing: -0.3px;
    }

    .epic-why-card-text {
      font-size: 11px;
      letter-spacing: -0.22px;
    }

    .epic-why-glow {
      width: 300px;
      height: 300px;
    }
  }

  /* Products Section */
  .epic-products-section {
    position: relative;
    padding: 100px 20px;
    background: transparent;
    border-top: 1px solid rgba(127, 238, 100, 0.08);
    overflow: hidden;
    z-index: 1;
  }

  .epic-products-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
  }

  /* Products Header */
  .epic-products-header {
    text-align: center;
    margin-bottom: 70px;
  }

  .epic-products-title {
    font-family: 'Inter Display', 'Inter', sans-serif;
    font-size: 56px;
    font-weight: 400;
    color: #ddffdc;
    margin: 0 0 12px 0;
    letter-spacing: -0.7px;
    line-height: 1.1;
  }

  .epic-products-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #677d64;
    font-weight: 400;
    margin: 0;
    letter-spacing: -0.32px;
  }

  /* Products Grid */
  .epic-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 28px;
    margin-bottom: 60px;
  }

  /* Product Card */
  .epic-product-card {
    background: rgba(33, 37, 37, 0.8);
    border: 1px solid rgba(127, 238, 100, 0.15);
    border-radius: 20px;
    backdrop-filter: blur(20px);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 400ms cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
  }

  .epic-product-card:hover {
    transform: translateY(-8px);
    border-color: rgba(127, 238, 100, 0.5);
    box-shadow: 0 20px 60px rgba(127, 238, 100, 0.15), inset 0 1px 0 rgba(127, 238, 100, 0.1);
  }

  /* Product Image */
  .epic-product-image {
    position: relative;
    width: 100%;
    padding-bottom: 125%;
    overflow: hidden;
    background: #0a0a0a;
  }

  .epic-product-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 600ms cubic-bezier(0.34, 1.56, 0.64, 1);
  }

  .epic-product-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 100%);
    transition: all 300ms ease-out;
  }

  .epic-product-card:hover .epic-product-img {
    transform: scale(1.08);
  }

  .epic-product-card:hover .epic-product-overlay {
    background: linear-gradient(180deg, rgba(127, 238, 100, 0.1) 0%, rgba(0, 0, 0, 0.6) 100%);
  }

  /* Product Badge */
  .epic-product-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 8px 12px;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: -0.22px;
    z-index: 5;
  }

  .epic-product-badge-hot {
    background: rgba(255, 107, 107, 0.2);
    color: #ff6b6b;
    border: 1px solid rgba(255, 107, 107, 0.3);
  }

  .epic-product-badge-new {
    background: rgba(127, 238, 100, 0.2);
    color: #7fee64;
    border: 1px solid rgba(127, 238, 100, 0.3);
  }

  .epic-product-badge-sale {
    background: rgba(127, 238, 100, 0.2);
    color: #7fee64;
    border: 1px solid rgba(127, 238, 100, 0.3);
  }

  /* Product Content */
  .epic-product-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
    gap: 12px;
  }

  .epic-product-title {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #ddffdc;
    margin: 0;
    letter-spacing: -0.3px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .epic-product-summary {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    color: #677d64;
    margin: 0;
    line-height: 1.4;
    letter-spacing: -0.22px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  /* Product Pricing */
  .epic-product-pricing {
    margin: 8px 0;
  }

  .epic-product-price {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .epic-product-price .price {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #7fee64;
    letter-spacing: -0.32px;
  }

  .epic-product-price .original-price {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: #677d64;
    text-decoration: line-through;
    letter-spacing: -0.24px;
  }

  /* Product CTA */
  .epic-product-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 16px;
    background: #7fee64;
    color: #000000;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: -0.24px;
    cursor: pointer;
    transition: all 300ms ease-out;
    width: fit-content;
  }

  .epic-product-cta:hover {
    background: #95ff89;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(127, 238, 100, 0.3);
  }

  .epic-product-cta i {
    font-size: 10px;
    transition: transform 300ms ease-out;
  }

  .epic-product-cta:hover i {
    transform: translateX(3px);
  }

  /* Load More Button */
  .epic-products-action {
    display: flex;
    justify-content: center;
    margin-top: 60px;
  }

  .epic-load-more-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 40px;
    background: #7fee64;
    color: #000000;
    border: none;
    border-radius: 12px;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: -0.3px;
    cursor: pointer;
    transition: all 300ms ease-out;
  }

  .epic-load-more-btn:hover {
    background: #95ff89;
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(127, 238, 100, 0.3);
  }

  .epic-load-more-btn i {
    font-size: 14px;
    transition: transform 300ms ease-out;
  }

  .epic-load-more-btn:hover i {
    transform: translateY(3px);
  }

  /* Fade In Up Animation */
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Products Background Glow */
  .epic-products-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(127, 238, 100, 0.02) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
  }

  /* Responsive Products Section */
  @media (max-width: 1400px) {
    .epic-products-title {
      font-size: 48px;
      letter-spacing: -0.6px;
    }

    .epic-products-grid {
      grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
      gap: 24px;
    }
  }

  @media (max-width: 1024px) {
    .epic-products-section {
      padding: 80px 20px;
    }

    .epic-products-header {
      margin-bottom: 60px;
    }

    .epic-products-title {
      font-size: 40px;
      letter-spacing: -0.5px;
    }

    .epic-products-subtitle {
      font-size: 15px;
    }

    .epic-products-grid {
      grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
      gap: 20px;
    }

    .epic-product-content {
      padding: 18px;
    }

    .epic-product-title {
      font-size: 14px;
      letter-spacing: -0.28px;
    }

    .epic-product-summary {
      font-size: 11px;
    }

    .epic-product-price .price {
      font-size: 15px;
    }

    .epic-products-glow {
      width: 500px;
      height: 500px;
    }
  }

  @media (max-width: 768px) {
    .epic-products-section {
      padding: 60px 16px;
    }

    .epic-products-header {
      margin-bottom: 48px;
    }

    .epic-products-title {
      font-size: 32px;
      letter-spacing: -0.4px;
    }

    .epic-products-subtitle {
      font-size: 14px;
    }

    .epic-products-grid {
      grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
      gap: 16px;
      margin-bottom: 40px;
    }

    .epic-product-card {
      border-radius: 16px;
    }

    .epic-product-content {
      padding: 16px;
      gap: 10px;
    }

    .epic-product-title {
      font-size: 13px;
      letter-spacing: -0.26px;
      -webkit-line-clamp: 2;
    }

    .epic-product-price .price {
      font-size: 14px;
    }

    .epic-view-all-btn {
      padding: 14px 32px;
      font-size: 14px;
    }

    .epic-products-glow {
      width: 400px;
      height: 400px;
    }
  }

  @media (max-width: 480px) {
    .epic-products-section {
      padding: 40px 12px;
    }

    .epic-products-header {
      margin-bottom: 40px;
    }

    .epic-products-title {
      font-size: 24px;
      letter-spacing: -0.3px;
    }

    .epic-products-subtitle {
      font-size: 13px;
    }

    .epic-products-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 12px;
      margin-bottom: 32px;
    }

    .epic-product-card {
      border-radius: 12px;
    }

    .epic-product-image {
      padding-bottom: 130%;
    }

    .epic-product-content {
      padding: 12px;
      gap: 8px;
    }

    .epic-product-title {
      font-size: 12px;
      letter-spacing: -0.24px;
    }

    .epic-product-summary {
      font-size: 10px;
    }

    .epic-product-price .price {
      font-size: 13px;
    }

    .epic-product-cta {
      padding: 8px 12px;
      font-size: 11px;
    }

    .epic-view-all-btn {
      padding: 12px 24px;
      font-size: 13px;
    }

    .epic-products-glow {
      width: 300px;
      height: 300px;
    }
  }

  /* Featured Games Section */
  .epic-featured-section {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.8) 0%, rgba(20, 24, 24, 0.9) 100%);
    border-top: 1px solid rgba(127, 238, 100, 0.1);
    padding: 80px 20px;
    position: relative;
  }

  .epic-section-header {
    text-align: center;
    margin-bottom: 60px;
  }

  .epic-section-title {
    font-family: 'Inter Display', 'Inter', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #ddffdc;
    margin-bottom: 15px;
    letter-spacing: -0.96px;
  }

  .epic-section-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #aed2a4;
    letter-spacing: -0.32px;
  }

  /* Games Grid */
  .epic-games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
  }

  .epic-game-card {
    background: rgba(33, 37, 37, 0.5);
    border: 1px solid rgba(127, 238, 100, 0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: all 300ms ease-out;
    cursor: pointer;
    group: hover;
  }

  .epic-game-card:hover {
    border-color: rgba(127, 238, 100, 0.3);
    box-shadow: 0 0 30px rgba(127, 238, 100, 0.2);
    transform: translateY(-8px);
  }

  .game-card-bg {
    position: relative;
    width: 100%;
    padding-bottom: 100%;
    overflow: hidden;
    background: #000000;
  }

  .game-card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 300ms ease-out;
  }

  .epic-game-card:hover .game-card-image {
    transform: scale(1.1);
  }

  .game-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(5px);
  }

  .game-card-content {
    padding: 24px;
  }

  .game-card-title {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #ddffdc;
    margin-bottom: 8px;
    letter-spacing: -0.32px;
  }

  .game-card-price {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #7fee64;
    margin-bottom: 16px;
    text-shadow: 0 0 10px rgba(127, 238, 100, 0.3);
  }

  .game-card-actions {
    display: flex;
    gap: 12px;
  }

  .epic-btn-small {
    flex: 1;
    padding: 10px 16px;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 200ms ease-out;
    border: none;
    cursor: pointer;
    letter-spacing: -0.24px;
  }

  .epic-btn-primary-small {
    background: linear-gradient(135deg, #7fee64 0%, #c8f9b6 100%);
    color: #000000;
    box-shadow: 0 0 15px rgba(127, 238, 100, 0.3);
  }

  .epic-btn-primary-small:hover {
    box-shadow: 0 0 30px rgba(127, 238, 100, 0.5);
    transform: translateY(-2px);
  }

  .epic-btn-secondary-small {
    background: rgba(127, 238, 100, 0.1);
    color: #7fee64;
    border: 1px solid rgba(127, 238, 100, 0.3);
  }

  .epic-btn-secondary-small:hover {
    background: rgba(127, 238, 100, 0.2);
    box-shadow: 0 0 15px rgba(127, 238, 100, 0.2);
  }

  /* Categories Section */
  .epic-categories-section {
    background: rgba(0, 0, 0, 0.5);
    border-top: 1px solid rgba(127, 238, 100, 0.1);
    padding: 80px 20px;
  }

  .epic-categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    max-width: 1400px;
    margin: 0 auto;
  }

  .epic-category-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1;
  }

  .category-card-link {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    text-decoration: none;
  }

  .category-card-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }

  .category-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 300ms ease-out;
  }

  .epic-category-card:hover .category-card-image img {
    transform: scale(1.15);
  }

  .category-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    transition: all 300ms ease-out;
  }

  .epic-category-card:hover .category-card-overlay {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
  }

  .category-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2;
  }

  .category-card-title {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #ddffdc;
    margin: 0;
    letter-spacing: -0.36px;
  }

  .category-card-arrow {
    font-size: 20px;
    color: #7fee64;
    opacity: 0;
    transition: all 300ms ease-out;
    transform: translateX(-10px);
  }

  .epic-category-card:hover .category-card-arrow {
    opacity: 1;
    transform: translateX(0);
  }

  .category-card-glow {
    position: absolute;
    inset: 0;
    border-radius: 12px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(127, 238, 100, 0.5), rgba(200, 249, 182, 0.3));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 300ms ease-out;
    pointer-events: none;
  }

  .epic-category-card:hover .category-card-glow {
    opacity: 1;
  }

  /* Why Choose Section */
  .epic-why-section {
    background: linear-gradient(180deg, rgba(20, 24, 24, 0.9) 0%, rgba(0, 0, 0, 0.8) 100%);
    border-top: 1px solid rgba(127, 238, 100, 0.1);
    padding: 100px 20px;
  }

  .epic-why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    margin-top: 60px;
  }

  .epic-why-card {
    background: rgba(33, 37, 37, 0.4);
    border: 1px solid rgba(127, 238, 100, 0.1);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: all 300ms ease-out;
  }

  .epic-why-card:hover {
    border-color: rgba(127, 238, 100, 0.3);
    box-shadow: 0 0 30px rgba(127, 238, 100, 0.15);
    transform: translateY(-8px);
    background: rgba(33, 37, 37, 0.6);
  }

  .why-card-icon {
    font-size: 40px;
    color: #7fee64;
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(127, 238, 100, 0.4);
  }

  .why-card-title {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #ddffdc;
    margin-bottom: 12px;
    letter-spacing: -0.36px;
  }

  .why-card-text {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #aed2a4;
    line-height: 1.6;
    letter-spacing: -0.28px;
    margin: 0;
  }

  /* CTA Section */
  .epic-cta-section {
    background: linear-gradient(135deg, rgba(127, 238, 100, 0.1) 0%, rgba(200, 249, 182, 0.05) 100%);
    border: 1px solid rgba(127, 238, 100, 0.2);
    border-radius: 20px;
    padding: 80px 40px;
    margin: 80px 20px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    box-shadow: 0 0 50px rgba(127, 238, 100, 0.1);
  }

  .epic-cta-title {
    font-family: 'Inter Display', 'Inter', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #ddffdc;
    margin-bottom: 20px;
    letter-spacing: -0.84px;
  }

  .epic-cta-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #aed2a4;
    margin-bottom: 40px;
    letter-spacing: -0.32px;
  }

  .epic-btn-large {
    padding: 18px 50px;
    font-size: 16px;
  }

  /* Responsive - Modal Design System */
  @media (max-width: 1024px) {
    .epic-hero-title {
      font-size: 54px;
    }

    .epic-hero-subtitle {
      font-size: 16px;
    }
  }

  @media (max-width: 768px) {
    .epic-hero-section {
      min-height: 500px;
      height: 70vh;
      padding: 0 20px;
    }

    .epic-hero-eyebrow {
      font-size: 11px;
      margin-bottom: 24px;
    }

    .epic-hero-title {
      font-size: 40px;
      line-height: 1.1;
      margin-bottom: 20px;
      letter-spacing: -0.6px;
    }

    .epic-hero-subtitle {
      font-size: 15px;
      margin-bottom: 32px;
    }

    .epic-hero-buttons {
      gap: 12px;
      flex-wrap: wrap;
      justify-content: center;
    }

    .epic-btn-primary,
    .epic-btn-secondary {
      padding: 10px 18px;
      font-size: 13px;
    }

    .epic-portal-container {
      width: 280px;
      height: 280px;
    }

    .portal-1 { width: 180px; height: 180px; }
    .portal-2 { width: 250px; height: 250px; }
    .portal-3 { width: 320px; height: 320px; }

    .epic-section-title {
      font-size: 36px;
    }

    .epic-games-grid {
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 16px;
    }

    .epic-categories-grid {
      grid-template-columns: repeat(2, 1fr);
    }

    .epic-why-grid {
      grid-template-columns: 1fr;
    }

    .scroll-mouse {
      width: 20px;
      height: 34px;
    }

    .epic-scroll-indicator span {
      font-size: 11px;
    }
  }

  @media (max-width: 480px) {
    .epic-hero-section {
      height: 60vh;
      min-height: 400px;
      padding: 0 16px;
    }

    .epic-hero-eyebrow {
      font-size: 10px;
      margin-bottom: 20px;
    }

    .epic-hero-title {
      font-size: 32px;
      line-height: 1.1;
      margin-bottom: 16px;
      letter-spacing: -0.48px;
    }

    .epic-hero-subtitle {
      font-size: 14px;
      margin-bottom: 24px;
      line-height: 1.5;
    }

    .epic-hero-buttons {
      gap: 10px;
      flex-direction: column;
      width: 100%;
    }

    .epic-btn-primary,
    .epic-btn-secondary {
      width: 100%;
      padding: 10px 16px;
      font-size: 12px;
      border-radius: 4px;
    }

    .epic-portal-container {
      width: 200px;
      height: 200px;
    }

    .portal-1 { width: 130px; height: 130px; }
    .portal-2 { width: 180px; height: 180px; }
    .portal-3 { width: 230px; height: 230px; }

    .epic-section-title {
      font-size: 28px;
    }

    .epic-games-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 12px;
    }

    .epic-categories-grid {
      grid-template-columns: 1fr;
    }
  }

  /* ========== ABOUT PAGE - BREADCRUMB & ABOUT SECTION ========== */

  /* Modern Premium Breadcrumb Section */
  .epic-breadcrumb-section {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(10, 20, 15, 0.9) 50%, rgba(0, 0, 0, 0.8) 100%);
    border-bottom: 1px solid rgba(127, 238, 100, 0.15);
    z-index: 1;
  }

  /* Animated Background Blurs */
  .epic-breadcrumb-bg-blur {
    position: absolute;
    border-radius: 50%;
    opacity: 0.3;
    filter: blur(80px);
    animation: float 8s ease-in-out infinite;
  }

  .blur-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(127, 238, 100, 0.4) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    animation-delay: 0s;
  }

  .blur-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(127, 238, 100, 0.2) 0%, transparent 70%);
    bottom: -50px;
    left: -100px;
    animation-delay: 3s;
  }

  .epic-breadcrumb-bg-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
    pointer-events: none;
  }

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

  /* Breadcrumb Content */
  .epic-breadcrumb-content {
    position: relative;
    z-index: 2;
    text-align: center;
  }

  .epic-breadcrumb-title {
    font-family: 'Inter Display', 'Inter', sans-serif;
    font-size: 56px;
    font-weight: 700;
    background: linear-gradient(135deg, #ddffdc 0%, #7fee64 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 20px 0;
    letter-spacing: -0.7px;
    line-height: 1.1;
    text-transform: capitalize;
  }

  /* Breadcrumb Menu */
  .epic-breadcrumb-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    list-style: none;
    padding: 0;
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
  }

  .epic-breadcrumb-menu li {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .epic-breadcrumb-menu li:not(:last-child)::after {
    content: '/';
    color: rgba(127, 238, 100, 0.5);
    font-weight: 300;
  }

  .epic-breadcrumb-menu a {
    color: #7fee64;
    text-decoration: none;
    transition: all 300ms ease-out;
    letter-spacing: -0.28px;
    font-weight: 500;
  }

  .epic-breadcrumb-menu a:hover {
    color: #a5ff89;
    text-shadow: 0 0 20px rgba(127, 238, 100, 0.5);
    transform: translateY(-2px);
  }

  .epic-breadcrumb-active {
    color: #aed2a4;
    letter-spacing: -0.28px;
    font-weight: 500;
  }

  /* Premium About Section */
  .epic-about-premium-section {
    position: relative;
    width: 100%;
    padding: 60px 20px 80px 20px;
    border-top: 1px solid rgba(127, 238, 100, 0.1);
    z-index: 1;
  }

  .epic-about-wrapper {
    max-width: 1400px;
    margin: 0 auto;
  }

  .epic-about-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }

  /* About Content */
  .epic-about-content {
    z-index: 2;
  }

  .epic-about-text {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .epic-about-subheading {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #7fee64;
    margin-bottom: 8px;
  }

  .epic-about-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
    letter-spacing: -1px;
    margin: 0;
  }

  .epic-about-description {
    font-size: 16px;
    line-height: 1.7;
    color: #aed2a4;
    margin: 16px 0 24px 0;
    max-width: 500px;
  }

  .epic-about-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    background: #7fee64;
    color: #000000;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 300ms ease;
    width: fit-content;
    cursor: pointer;
  }

  .epic-about-cta:hover {
    background: #6fd856;
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(127, 238, 100, 0.25);
  }

  /* About Image */
  .epic-about-image {
    position: relative;
    height: 450px;
  }

  .epic-about-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 12px;
    background: rgba(127, 238, 100, 0.05);
    border: 1px solid rgba(127, 238, 100, 0.15);
    backdrop-filter: blur(8px);
  }

  .epic-about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.95) contrast(1.05) saturate(1.1);
    transition: transform 500ms ease;
  }

  .epic-about-image-wrapper:hover .epic-about-img {
    transform: scale(1.02);
  }

  .epic-about-image-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    pointer-events: none;
  }

  .epic-about-image-glow {
    position: absolute;
    inset: -1px;
    border-radius: 12px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(127, 238, 100, 0.3), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 300ms ease;
    pointer-events: none;
  }

  .epic-about-image-wrapper:hover .epic-about-image-glow {
    opacity: 1;
  }

  /* Responsive Breadcrumb */
  @media (max-width: 1024px) {
    .epic-breadcrumb-section {
      height: 350px;
    }

    .epic-breadcrumb-title {
      font-size: 40px;
      letter-spacing: -0.5px;
    }

    .epic-breadcrumb-menu {
      font-size: 13px;
      gap: 12px;
    }

    .blur-1 {
      width: 300px;
      height: 300px;
    }

    .blur-2 {
      width: 250px;
      height: 250px;
    }

    .epic-about-premium-section {
      padding: 50px 20px 60px 20px;
    }

    .epic-about-row {
      grid-template-columns: 1fr;
      gap: 40px;
    }

    .epic-about-title {
      font-size: 40px;
    }

    .epic-about-image {
      height: 380px;
    }
  }

  @media (max-width: 768px) {
    .epic-breadcrumb-section {
      height: 280px;
      align-items: center;
      justify-content: center;
    }

    .epic-breadcrumb-title {
      font-size: 32px;
      letter-spacing: -0.4px;
      margin-bottom: 16px;
    }

    .epic-breadcrumb-menu {
      font-size: 12px;
      gap: 10px;
      flex-wrap: wrap;
    }

    .blur-1 {
      width: 250px;
      height: 250px;
    }

    .blur-2 {
      width: 200px;
      height: 200px;
    }

    .epic-about-premium-section {
      padding: 35px 16px 40px 16px;
    }

    .epic-about-row {
      gap: 30px;
    }

    .epic-about-title {
      font-size: 32px;
      line-height: 1.3;
    }

    .epic-about-description {
      font-size: 15px;
      line-height: 1.6;
    }

    .epic-about-image {
      height: 300px;
    }
  }

  @media (max-width: 480px) {
    .epic-breadcrumb-section {
      height: 220px;
      padding: 20px;
    }

    .epic-breadcrumb-title {
      font-size: 24px;
      letter-spacing: -0.3px;
      margin-bottom: 12px;
    }

    .epic-breadcrumb-menu {
      font-size: 11px;
      gap: 8px;
    }

    .epic-breadcrumb-menu li:not(:last-child)::after {
      margin: 0 4px;
    }

    .blur-1 {
      width: 200px;
      height: 200px;
      top: -80px;
      right: -80px;
    }

    .blur-2 {
      width: 150px;
      height: 150px;
      bottom: -40px;
      left: -80px;
    }

    .epic-about-premium-section {
      padding: 25px 12px 30px 12px;
    }

    .epic-about-subheading {
      font-size: 12px;
    }

    .epic-about-title {
      font-size: 24px;
      line-height: 1.2;
    }

    .epic-about-description {
      font-size: 14px;
      line-height: 1.5;
    }

    .epic-about-image {
      height: 240px;
    }

    .epic-about-cta {
      font-size: 13px;
      padding: 10px 24px;
    }
  }

  /* ========== CONTACT PAGE - FORM SECTION ========== */

  .epic-contact-section {
    position: relative;
    width: 100%;
    padding: 80px 20px;
    z-index: 1;
  }

  .epic-contact-header {
    text-align: center;
    margin-bottom: 60px;
  }

  .epic-contact-title {
    font-size: 48px;
    font-weight: 500;
    color: #ddffdc;
    letter-spacing: -0.81px;
    margin-bottom: 12px;
    font-family: 'Inter Display', 'Inter', sans-serif;
  }

  .epic-contact-subtitle {
    font-size: 12px;
    color: #677d64;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 500;
  }

  /* Contact Details Grid (Top) */
  .epic-contact-details-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1400px;
    margin: 0 auto 60px auto;
  }

  /* Form Wrapper */
  .epic-contact-form-wrapper {
    max-width: 1400px;
    margin: 0 auto;
  }

  /* Info Cards */
  .epic-contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .epic-info-card {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: #212525;
    border: 1px solid #485346;
    border-radius: 16px;
    transition: border-color 150ms ease-out;
  }

  .epic-info-card:hover {
    border-color: #7fee64;
  }

  .epic-info-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: rgba(127, 238, 100, 0.1);
    border: 1px solid rgba(127, 238, 100, 0.2);
    border-radius: 8px;
    color: #7fee64;
    font-size: 20px;
  }

  .epic-info-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .epic-info-title {
    font-size: 16px;
    font-weight: 600;
    color: #ddffdc;
    margin: 0;
  }

  .epic-info-text {
    font-size: 14px;
    color: #aed2a4;
    margin: 0;
    line-height: 1.6;
  }

  .epic-info-link {
    color: #7fee64;
    text-decoration: none;
    transition: all 300ms ease;
    font-weight: 500;
  }

  .epic-info-link:hover {
    color: #a5ff89;
    text-shadow: 0 0 12px rgba(127, 238, 100, 0.3);
  }

  /* Main Contact Grid: Image (Left) + Form (Right) */
  .epic-contact-main-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: stretch;
    min-height: 540px;
  }

  /* Image Section (Left) */
  .epic-contact-image-section {
    position: relative;
    display: flex;
    flex-direction: column;
  }

  /* Form fills its column height */
  .epic-contact-form-premium {
    flex: 1;
    display: flex;
    flex-direction: column;
  }

  .epic-image-with-details {
    position: relative;
    width: 100%;
    flex: 1;
    min-height: 0;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #485346;
  }

  .epic-contact-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8) contrast(1.15) saturate(1.1);
    transition: transform 500ms ease, filter 500ms ease;
  }

  .epic-image-with-details:hover .epic-contact-bg-img {
    transform: scale(1.05);
    filter: brightness(0.9) contrast(1.15) saturate(1.2);
  }

  /* Company Details Overlay (Top of Image) */
  .epic-details-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
    display: flex;
    flex-direction: column;
    gap: 16px;
    z-index: 10;
    animation: slideDown 600ms ease;
  }

  /* Overlay Info Cards */
  .epic-info-card-overlay {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 12px;
    background: rgba(33, 37, 37, 0.6);
    border: 1px solid rgba(127, 238, 100, 0.2);
    border-radius: 8px;
    backdrop-filter: blur(10px);
    transition: all 300ms ease;
  }

  .epic-info-card-overlay:hover {
    background: rgba(33, 37, 37, 0.8);
    border-color: rgba(127, 238, 100, 0.4);
  }

  .epic-info-icon-overlay {
    width: 40px;
    height: 40px;
    min-width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(127, 238, 100, 0.15);
    border: 1px solid rgba(127, 238, 100, 0.3);
    border-radius: 6px;
    color: #7fee64;
    font-size: 18px;
  }

  .epic-info-content-overlay {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .epic-info-title-overlay {
    font-size: 14px;
    font-weight: 600;
    color: #ddffdc;
    margin: 0;
  }

  .epic-info-text-overlay {
    font-size: 13px;
    color: #aed2a4;
    margin: 0;
  }

  .epic-info-link-overlay {
    color: #7fee64;
    text-decoration: none;
    font-weight: 500;
    transition: all 300ms ease;
    font-size: 13px;
  }

  .epic-info-link-overlay:hover {
    color: #a5ff89;
    text-shadow: 0 0 12px rgba(127, 238, 100, 0.3);
  }

  /* Form Section (Right) — fills the grid row height */
  .epic-contact-form-section {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  /* Premium Contact Form */
  .epic-contact-form-premium {
    display: flex;
    flex-direction: column;
    gap: 28px;
    padding: 32px;
    background: #212525;
    border: 1px solid #485346;
    border-radius: 16px;
    transition: border-color 150ms ease-out;
  }

  .epic-contact-form-premium:hover {
    border-color: #7fee64;
  }

  /* Form Fields */
  .epic-form-fields {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  /* Captcha Grid: Image (Left) + Input (Right) */
  .epic-captcha-grid {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 24px;
    align-items: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(127, 238, 100, 0.15);
    border-radius: 8px;
    backdrop-filter: blur(10px);
  }

  /* Captcha Image Column (Left) */
  .epic-captcha-image-col {
    /* display: flex; */
    /* align-items: center; */
    justify-content: center;
    height: 100%;
  }

  .epic-captcha-image-col img {
    border-radius: 6px;
    border: 1px solid rgba(127, 238, 100, 0.2);
    width: 100%;
    max-width: 200px;
    height: auto;
    display: block;
  }

  /* Captcha Input Column (Right) */
  .epic-captcha-input-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .epic-captcha-input-col .epic-form-label {
    font-size: 14px;
    font-weight: 600;
    color: #ddffdc;
    margin: 0;
  }

  .epic-captcha-input-col .epic-form-input {
    width: 100%;
    padding: 12px 16px;
  }

  /* Submit Button - Full Width */
  .epic-submit-full-width {
    width: 100%;
    padding: 14px 24px;
    font-size: 16px;
  }

  /* Contact Form Wrapper */
  .epic-contact-form-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
  }

  /* Alert Messages */
  .epic-alert {
    display: flex;
    gap: 16px;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid;
    animation: slideDown 300ms ease;
  }

  .epic-alert-success {
    background: rgba(127, 238, 100, 0.1);
    border-left-color: #7fee64;
  }

  .epic-alert-success i {
    color: #7fee64;
    font-size: 20px;
    flex-shrink: 0;
  }

  .epic-alert-error {
    background: rgba(255, 107, 107, 0.1);
    border-left-color: #ff6b6b;
  }

  .epic-alert-error i {
    color: #ff6b6b;
    font-size: 20px;
    flex-shrink: 0;
  }

  .epic-alert-content {
    flex: 1;
  }

  .epic-alert-content h4 {
    font-size: 14px;
    font-weight: 600;
    color: #ddffdc;
    margin: 0 0 8px 0;
  }

  .epic-alert-content p {
    font-size: 14px;
    color: #aed2a4;
    margin: 0;
    line-height: 1.5;
  }

  .epic-alert-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .epic-alert-list li {
    font-size: 14px;
    color: #aed2a4;
    margin-bottom: 4px;
    padding-left: 20px;
    position: relative;
  }

  .epic-alert-list li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: #ff6b6b;
  }

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

  /* Form */
  .epic-contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .epic-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .epic-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .epic-form-label {
    font-size: 14px;
    font-weight: 600;
    color: #ddffdc;
    letter-spacing: -0.28px;
  }

  .epic-form-input {
    padding: 12px 16px;
    background: #000000;
    border: 1px solid #485346;
    border-radius: 8px;
    color: #ddffdc;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.31px;
    transition: border-color 150ms ease-out;
    width: 100%;
  }

  .epic-form-input::placeholder {
    color: #677d64;
  }

  .epic-form-input:focus {
    outline: none;
    border-color: #7fee64;
  }

  .epic-form-input:-webkit-autofill {
    -webkit-box-shadow: inset 0 0 0 1000px #000000 !important;
    -webkit-text-fill-color: #ddffdc !important;
  }

  .epic-form-textarea {
    resize: vertical;
    min-height: 120px;
  }

  .epic-form-error {
    font-size: 12px;
    color: #ff6b6b;
    font-weight: 500;
    margin-top: 4px;
    display: block;
    animation: slideDown 200ms ease;
  }

  .epic-form-group.error .epic-form-input {
    border-color: #ff6b6b;
    background: rgba(255, 107, 107, 0.05);
  }

  label.error {
    color: #ff6b6b !important;
    font-size: 12px !important;
    margin-top: 4px !important;
    display: block !important;
  }

  /* Checkbox */
  .epic-form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 8px;
  }

  .epic-checkbox {
    width: 18px;
    height: 18px;
    min-width: 18px;
    cursor: pointer;
    accent-color: #7fee64;
    margin-top: 2px;
  }

  .epic-checkbox-label {
    font-size: 14px;
    color: #aed2a4;
    cursor: pointer;
    line-height: 1.6;
  }

  .epic-checkbox-link {
    color: #7fee64;
    text-decoration: none;
    font-weight: 500;
    transition: all 300ms ease;
  }

  .epic-checkbox-link:hover {
    color: #a5ff89;
    text-shadow: 0 0 12px rgba(127, 238, 100, 0.3);
  }

  /* Responsive Contact */
  @media (max-width: 1024px) {
    .epic-contact-section {
      padding: 60px 20px;
    }

    .epic-contact-main-grid {
      grid-template-columns: 1fr;
      gap: 40px;
    }

    .epic-image-with-details {
      height: 380px;
    }

    .epic-details-overlay {
      padding: 25px;
      gap: 14px;
    }

    .epic-info-card-overlay {
      padding: 10px;
      gap: 12px;
    }

    .epic-info-icon-overlay {
      width: 36px;
      height: 36px;
      font-size: 16px;
    }

    .epic-info-title-overlay {
      font-size: 13px;
    }

    .epic-info-text-overlay {
      font-size: 12px;
    }

    .epic-contact-title {
      font-size: 40px;
    }

    .epic-contact-form-premium {
      padding: 28px;
    }

    .epic-form-row {
      grid-template-columns: 1fr;
    }
  }

  @media (max-width: 768px) {
    .epic-contact-section {
      padding: 40px 16px;
    }

    .epic-contact-header {
      margin-bottom: 40px;
    }

    .epic-contact-title {
      font-size: 32px;
      margin-bottom: 8px;
    }

    .epic-contact-subtitle {
      font-size: 15px;
    }

    .epic-image-with-details {
      height: 320px;
    }

    .epic-details-overlay {
      padding: 20px;
      gap: 12px;
    }

    .epic-info-card-overlay {
      padding: 9px;
      gap: 10px;
    }

    .epic-info-icon-overlay {
      width: 34px;
      height: 34px;
      font-size: 15px;
    }

    .epic-info-title-overlay {
      font-size: 12px;
    }

    .epic-info-text-overlay {
      font-size: 11px;
    }

    .epic-contact-info {
      gap: 16px;
    }

    .epic-info-card {
      padding: 18px;
      gap: 16px;
    }

    .epic-info-icon {
      width: 42px;
      height: 42px;
      font-size: 18px;
    }

    .epic-info-title {
      font-size: 15px;
    }

    .epic-info-text {
      font-size: 13px;
    }

    .epic-contact-form-premium {
      padding: 24px;
      gap: 24px;
    }

    .epic-form-group {
      gap: 6px;
    }

    .epic-form-label {
      font-size: 13px;
    }

    .epic-form-input {
      padding: 10px 14px;
      font-size: 13px;
    }

    .epic-form-row {
      gap: 16px;
    }

    .epic-captcha-grid {
      grid-template-columns: 160px 1fr;
      gap: 20px;
      padding: 16px;
    }

    .epic-captcha-image-col {
      width: 160px;
    }

    .epic-captcha-image-col img {
      width: 100%;
      max-width: 160px;
    }
  }

  @media (max-width: 480px) {
    .epic-contact-section {
      padding: 30px 12px;
    }

    .epic-contact-header {
      margin-bottom: 30px;
    }

    .epic-contact-title {
      font-size: 24px;
    }

    .epic-contact-subtitle {
      font-size: 14px;
    }

    .epic-image-with-details {
      height: 280px;
    }

    .epic-details-overlay {
      padding: 16px;
      gap: 10px;
    }

    .epic-info-card-overlay {
      padding: 8px;
      gap: 8px;
    }

    .epic-info-icon-overlay {
      width: 32px;
      height: 32px;
      font-size: 14px;
    }

    .epic-info-title-overlay {
      font-size: 11px;
    }

    .epic-info-text-overlay {
      font-size: 10px;
    }

    .epic-contact-info {
      gap: 12px;
    }

    .epic-info-card {
      padding: 16px;
      gap: 12px;
    }

    .epic-info-icon {
      width: 40px;
      height: 40px;
      font-size: 16px;
    }

    .epic-info-title {
      font-size: 14px;
    }

    .epic-info-text {
      font-size: 12px;
    }

    .epic-contact-form-premium {
      padding: 20px;
      gap: 20px;
    }

    .epic-form-label {
      font-size: 12px;
    }

    .epic-form-input {
      padding: 9px 12px;
      font-size: 12px;
    }

    .epic-form-checkbox-label {
      font-size: 13px;
    }

    .epic-checkbox {
      width: 16px;
      height: 16px;
    }

    .epic-form-row {
      grid-template-columns: 1fr;
      gap: 14px;
    }

    .epic-captcha-grid {
      grid-template-columns: 140px 1fr;
      gap: 16px;
      padding: 14px;
      align-items: center;
    }

    .epic-captcha-image-col {
      width: 140px;
    }

    .epic-captcha-image-col img {
      width: 100%;
      max-width: 140px;
    }
  }
