/**
 * EASPC Site-Specific Styles
 * Consolidated from eautc-base.css, eautc.css, and eautc-overrides.css
 * Now contains: base styles, currency/language dropdowns, live feed, and all overrides
 */

/* Hide delivery badge above hero containers */
.delivery-badge {
  display: none !important;
}

/* FC Coin Network footer card */
.site-footer {
  color: #e7e7e3;
  background: #151616;
  border-top-color: rgba(231, 231, 227, 0.14);
}

.footer-trust-network-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
  width: 100%;
  max-width: 100%;
  margin: 24px auto 24px;
}

.footer-trustpilot-card {
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(231, 231, 227, 0.055);
  border: 1px solid rgba(231, 231, 227, 0.14);
  text-align: center;
}

.footer-trustpilot-card__header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-trustpilot-card__stars {
  color: #00b67a;
  letter-spacing: 0.12em;
  font-size: 14px;
  font-weight: 800;
}

.footer-trustpilot-card__name {
  color: #e7e7e3;
  font-size: 13px;
  font-weight: 700;
}

.footer-trustpilot-card__copy {
  margin: 8px 0 0;
  color: #afafaf;
  font-size: 13px;
  line-height: 1.5;
}

.footer-trustpilot-card__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
  font-size: 13px;
  font-weight: 700;
  color: #e7e7e3;
  text-decoration: none;
}

.footer-trustpilot-card__link:hover {
  color: #d6ff59;
}

.footer-network-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  margin: 0;
  padding: 16px 20px 16px 22px;
  color: #e7e7e3;
  border-radius: 14px;
  text-decoration: none;
  border: 1px solid rgba(231, 231, 227, 0.14);
  background: rgba(231, 231, 227, 0.055);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.footer-network-card:hover,
.footer-network-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(231, 231, 227, 0.28);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

.footer-network-card:focus-visible {
  outline: 2px solid rgba(214, 255, 89, 0.72);
  outline-offset: 3px;
}

.footer-network-card__logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.footer-network-card__content strong {
  display: block;
  margin-bottom: 4px;
  color: #e7e7e3;
  font-size: 15px;
  line-height: 1.35;
}

.footer-network-card__content p {
  margin: 0;
  color: #afafaf;
  font-size: 12.5px;
  line-height: 1.52;
  max-width: 42ch;
}

.footer-network-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #e7e7e3;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.footer-network-card__arrow {
  display: inline-block;
  transition: transform 180ms ease;
}

.footer-network-card:hover .footer-network-card__arrow,
.footer-network-card:focus-visible .footer-network-card__arrow {
  transform: translateX(2px);
}

@media screen and (max-width: 768px) {
  .footer-trust-network-row {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .footer-network-card {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 14px;
    padding: 14px 14px 14px 16px;
  }

  .footer-network-card__logo {
    width: 40px;
    height: 40px;
  }

  .footer-network-card__content p {
    max-width: none;
  }

  .footer-network-card__cta {
    grid-column: 1 / -1;
    margin-top: 2px;
  }
}

/* Mobile modal overrides (ensure below header, shrink cards) */
@media screen and (max-width: 768px) {
  .modal {
    inset: auto 0 0 0 !important;
    top: 64px !important;         /* sit below mobile header */
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    align-items: flex-start !important;
    justify-content: center !important;
    padding-top: 16px !important;
    box-sizing: border-box !important;
    z-index: 100020 !important;   /* above header/banner */
  }

  .modal-backdrop {
    z-index: 100019 !important;
    background: rgba(0, 0, 0, 0.35) !important; /* slightly lighter dim */
    backdrop-filter: none !important;           /* avoid blurring popup edges */
  }

  /* Default mobile modal size */
  #contact-modal .modal-content,
  #account-modal .modal-content,
  #auth-modal .modal-content,
  #live-pricing-modal .modal-content {
    position: relative !important;
    z-index: 100021 !important;  /* ensure content sits above backdrop */
    pointer-events: auto !important;
    width: 92vw !important;
    max-height: calc(100vh - 140px) !important;
    margin: 0 auto 16px !important;
    border-radius: 16px !important;
  }

  /* Extra shrink + center for FAQ & Cashback (problematic popups) */
  #faq-modal,
  #rewards-modal {
    align-items: center !important;
    justify-content: center !important;
    inset: 0 !important;
    top: 0 !important;
    padding-top: 0 !important;
  }

  #faq-modal .modal-content,
  #rewards-modal .modal-content {
    position: relative !important;
    z-index: 100021 !important;
    pointer-events: auto !important;
    width: 85vw !important;
    max-height: 60vh !important;
    margin: 0 auto !important;
    border-radius: 16px !important;
  }
}
/* Currency Dropdown Styles */
.currency-dropdown {
  position: relative;
  display: inline-block;
}
#currency-toggle { cursor: pointer; }
.currency-menu {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.5rem 0;
  margin-top: 0.5rem;
  min-width: 180px;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
.currency-menu.active { display: block; }
.currency-option {
  display: block;
  width: 100%;
  padding: 0.75rem 1rem;
  background: transparent;
  border: none;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  transition: background 0.2s ease;
  font-size: 0.95rem;
}
.currency-option:hover { background: var(--bg-secondary); }
/* Language Dropdown Styles */
.lang-dropdown { position: relative; display: inline-block; }
#lang-toggle { cursor: pointer; }
.lang-menu {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.5rem 0;
  margin-top: 0.5rem;
  min-width: 180px;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
.lang-menu.active { display: block; }
.lang-option {
  display: block;
  width: 100%;
  padding: 0.75rem 1rem;
  background: transparent;
  border: none;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  transition: background 0.2s ease;
  font-size: 0.95rem;
}
.lang-option:hover { background: var(--bg-secondary); }

/* Live Feed Styles */
.live-feed-card {
  background: var(--card) !important;
  border: 1px solid var(--border) !important;
  border-radius: 10px;
  padding: 12px !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.live-feed-card .section-title {
  color: var(--text-primary) !important;
  font-size: 15px !important;
  font-weight: 700;
  margin: 0 0 12px 0 !important;
  padding-bottom: 8px !important;
  border-bottom: 1px solid var(--border-color) !important;
}

.live-feed-card #live-feed-date {
  color: var(--text-secondary) !important;
  font-size: 10px !important;
}

.live-feed-card #live-feed-total {
  color: var(--text-primary) !important;
  font-size: 16px !important;
  font-weight: 800;
}

.activity-list {
  max-height: 180px !important;
  overflow-y: auto;
  border-top: 1px solid var(--border) !important;
  padding-top: 6px !important;
  margin-top: 8px;
}

.activity-list::-webkit-scrollbar {
  width: 6px;
}

.activity-list::-webkit-scrollbar-track {
  background: var(--bg);
  border-radius: 3px;
}

.activity-list::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 3px;
}

.activity-list::-webkit-scrollbar-thumb:hover {
  background: var(--text-secondary);
}

.activity-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 6px 4px;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s ease;
}

.activity-item:last-child {
  border-bottom: none;
}

.activity-item:hover {
  background: var(--bg);
}

.activity-icon {
  font-size: 16px;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}

.activity-content {
  flex: 1;
  min-width: 0;
}

.activity-text {
  color: var(--text-primary);
  font-size: 12px;
  line-height: 1.4;
  margin-bottom: 2px;
}

.activity-text strong {
  color: var(--text-primary);
  font-weight: 600;
}

.activity-time {
  color: var(--text-secondary);
  font-size: 10px;
  line-height: 1.2;
}


/* EASPC site-specific overrides layered on top of EAFCShop theme */

:root {
  --eautc-brand: #d8ff3d;
  --eautc-accent: #f4b840;
}

/* Header and brand */
.site-header {
  border-bottom: 2px solid var(--eautc-brand);
}

/* Hide rotating text initially to prevent flash of default text */
.brand-text .rotating-text {
  /* Removed purple color override - using original theme color */
  font-weight: 700;
  letter-spacing: 0.5px;
  opacity: 0;
  transition: opacity 0.3s ease-in;
}

/* Show rotating text after it's ready */
.brand-text .rotating-text.ready {
  opacity: 1;
}

/* Primary buttons */
.btn.btn-primary,
.primary-btn {
  background: var(--eautc-brand);
  border-color: var(--eautc-brand);
  color: #111507;
}
.btn.btn-primary:hover,
.primary-btn:hover {
  filter: brightness(0.95);
}

/* Links and small accents */
.link-btn:hover,
.sell-coins-btn:hover {
  color: var(--eautc-brand);
}
.indicator-dot {
  background: var(--eautc-accent);
}

/* Sections */
.section-title {
  color: var(--eautc-brand);
}

/* Platform section spacing - center between header and SEO body */
/* Use ID selector to override the styles.css ID selector */
#platform-section {
  margin-top: 60px !important;
  margin-bottom: 60px !important;
  padding-top: 20px !important;
  padding-bottom: 20px !important;
}

.platform-section {
  margin-top: 60px !important;
  margin-bottom: 60px !important;
  padding-top: 20px !important;
  padding-bottom: 20px !important;
}

/* Platform cards border accent */
.platform-card.placeholder {
  outline: 2px dashed var(--eautc-brand);
}

/* Footer partner layout - equal size containers */
.footer-branding-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.footer-branding-row .partner-column {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
  min-width: 200px;
  max-width: 250px;
}
.footer-branding-row .partner-column-left {
  text-align: right;
  align-items: flex-end;
}
.footer-branding-row .partner-column-right {
  text-align: left;
  align-items: flex-start;
}
.partner-link {
  display: flex;
  flex-direction: column;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--card);
  transition: all 0.2s ease;
  width: 100%;
  box-sizing: border-box;
}
.partner-link:hover {
  border-color: var(--eautc-brand);
  background: rgba(91, 33, 182, 0.1);
}
.partner-column-left .partner-link {
  align-items: flex-end;
  text-align: right;
}
.partner-column-right .partner-link {
  align-items: flex-start;
  text-align: left;
}
@media (max-width: 768px) {
  .footer-branding-row {
    flex-direction: column;
    gap: 20px;
  }
  .footer-branding-row .partner-column {
    align-items: center;
    text-align: center;
  }

  /* (Updated) Keep header-left visible on mobile so IG, currency, language and live prices remain accessible */

  /* Hide footer partner links on mobile */
  .partner-column,
  .partner-link {
    display: none !important;
  }

  /* Compact header on mobile */
  .site-header {
    flex-direction: row !important;
    justify-content: space-between !important;
  }

  /* Hide rotating text on mobile */
  .brand-text,
  .rotating-text {
    display: none !important;
  }

  /* Larger touch targets for buttons */
  .platform-card .btn,
  .quantity-btn,
  .buy-btn {
    min-height: 48px;
    font-size: 1rem;
  }

  /* Better quantity selector on mobile */
  .quantity-selector {
    gap: 8px;
  }

  .quantity-btn {
    width: 44px;
    height: 44px;
    font-size: 1.2rem;
  }

  /* Compact platform cards */
  .platform-card {
    padding: 16px;
  }

  .platform-card .price {
    font-size: 1.5rem;
  }

  /* Full-width checkout on mobile (modals excluded) */
  .checkout-section {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    border-radius: 0 !important;
    min-height: 100vh;
  }

  /* Sticky bottom CTA area */
  .checkout-actions {
    position: sticky;
    bottom: 0;
    background: var(--card);
    padding: 16px;
    border-top: 1px solid var(--border);
    margin: 0 -16px -16px;
    z-index: 100;
  }

  /* Compact hero section */
  .hero {
    padding: 20px 16px;
  }

  .hero .title {
    font-size: 1.5rem;
  }

}

/* Mobile Currency Dropdown */
.currency-dropdown-mobile {
  width: 100%;
}

.currency-menu-mobile {
  display: none;
  width: 100%;
  background: rgba(20, 20, 20, 0.95);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 8px;
  margin-top: 8px;
  overflow: hidden;
}

.currency-menu-mobile.active {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.currency-option-mobile {
  display: block;
  width: 100%;
  padding: 12px 16px;
  background: rgba(30, 30, 30, 0.8);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 0.95rem;
  font-weight: 500;
}

.currency-option-mobile:hover,
.currency-option-mobile.active {
  background: rgba(0, 200, 83, 0.2);
  border-color: #00c853;
}

/* Mobile Language Dropdown */
.lang-dropdown-mobile {
  width: 100%;
}

.lang-menu-mobile {
  display: none;
  width: 100%;
  background: rgba(20, 20, 20, 0.95);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 8px;
  margin-top: 8px;
  overflow: hidden;
}

.lang-menu-mobile.active {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.lang-option-mobile {
  display: block;
  width: 100%;
  padding: 12px 16px;
  background: rgba(30, 30, 30, 0.8);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 0.95rem;
  font-weight: 500;
}

.lang-option-mobile:hover,
.lang-option-mobile.active {
  background: rgba(0, 200, 83, 0.2);
  border-color: #00c853;
}

/* Hero container for product images with neon green glow (EASPC) */
.platform-image {
  position: relative !important;
  /* Equal padding on all sides around the game case */
  padding: 8px !important;
  border-radius: 16px !important;
  /* Dual-layer background to create a gradient border with neon green glow */
  background-color: transparent !important;
  background:
    linear-gradient(var(--card), var(--card)) padding-box,
    linear-gradient(135deg, #00ff88, #00ff88) border-box !important;
  border: 2px solid transparent !important;
  box-shadow: 
    0 10px 24px rgba(0, 0, 0, 0.35),
    0 0 20px rgba(0, 255, 136, 0.4),
    0 0 40px rgba(0, 255, 136, 0.2) !important;
  /* Clip content to rounded corners for hover effects */
  overflow: hidden !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: flex-start !important;
  /* Allow container to grow to fit image content */
  height: auto !important;
  min-height: auto !important;
  max-height: none !important;
  width: 100% !important;
  max-width: 270px !important;
  margin: 0 auto !important;
}

.platform-image img {
  border-radius: 10px;
  display: block;
  width: 100% !important;
  height: auto !important;
  margin: 0 auto !important;
  margin-bottom: 0 !important;
  /* Ensure full image displays without bottom spacing */
  object-fit: contain !important;
  object-position: center top !important;
  max-height: none !important;
}

/* Price overlay - hidden by default, show on hover like fcutstore */
.price-overlay {
  opacity: 0 !important;
  transition: opacity 0.3s ease !important;
  border-radius: 10px !important; /* Match the image border-radius */
  /* Position overlay to match image area (accounting for 8px padding) */
  inset: 8px !important;
  /* Ensure overlay respects rounded corners */
  overflow: hidden !important;
}

.platform-image:hover .price-overlay {
  opacity: 1 !important;
}

.platform-image:hover img {
  filter: brightness(0.7) !important;
}

/* Fix live feed colors in dark theme - override inline styles */
body .live-feed-card,
body .seo-text-block .live-feed-card,
body:not([data-theme="light"]) .live-feed-card,
body:not([data-theme="light"]) .seo-text-block .live-feed-card,
.live-feed-section .live-feed-card {
  background: rgba(30, 30, 30, 0.95) !important;
  border: 2px solid rgba(91, 33, 182, 0.3) !important;
  color: #ffffff !important;
}

body .live-feed-card .section-title,
body .live-feed-card #live-feed-title,
.live-feed-card .section-title,
.live-feed-card #live-feed-title {
  color: #ffffff !important;
}

body .live-feed-card #live-feed-date,
.live-feed-card #live-feed-date {
  color: rgba(255, 255, 255, 0.6) !important;
}

body .live-feed-card #live-feed-total,
.live-feed-card #live-feed-total {
  color: #ffffff !important;
}

body .live-feed-card div[style*="opacity"],
.live-feed-card div[style*="opacity"] {
  color: rgba(255, 255, 255, 0.7) !important;
}

body .activity-list .activity-text,
body .live-feed-card .activity-text,
.activity-list .activity-text,
.live-feed-card .activity-text {
  color: rgba(255, 255, 255, 0.9) !important;
}

body .activity-list .activity-text strong,
body .live-feed-card .activity-text strong,
.activity-list .activity-text strong,
.live-feed-card .activity-text strong {
  color: #ffffff !important;
}

body .activity-list .activity-time,
body .live-feed-card .activity-time,
.activity-list .activity-time,
.live-feed-card .activity-time {
  color: rgba(255, 255, 255, 0.5) !important;
}

body .activity-list .activity-item,
body .live-feed-card .activity-item,
.activity-list .activity-item,
.live-feed-card .activity-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
  background: transparent !important;
}

body .activity-list .activity-item:hover,
body .live-feed-card .activity-item:hover,
.activity-list .activity-item:hover,
.live-feed-card .activity-item:hover {
  background: rgba(255, 255, 255, 0.05) !important;
}

/* Live feed icon */
body .activity-list .activity-icon,
body .live-feed-card .activity-icon,
.activity-list .activity-icon,
.live-feed-card .activity-icon {
  background: rgba(91, 33, 182, 0.2) !important;
  color: var(--eautc-accent) !important;
}

/* Premium Stat Cards */
.premium-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  padding: 20px 0;
}

.premium-stat-card {
  background: linear-gradient(135deg, rgba(91, 33, 182, 0.1), rgba(168, 85, 247, 0.05));
  border: 2px solid rgba(91, 33, 182, 0.3);
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.premium-stat-card:hover {
  transform: translateY(-5px);
  border-color: var(--eautc-brand);
  box-shadow: 0 10px 30px rgba(91, 33, 182, 0.2);
}

.premium-stat-card.highlight {
  background: linear-gradient(135deg, rgba(91, 33, 182, 0.2), rgba(168, 85, 247, 0.1));
  border-color: var(--eautc-brand);
}

.premium-stat-card .stat-number {
  font-size: 48px;
  font-weight: 800;
  color: var(--eautc-brand);
  line-height: 1;
  margin-bottom: 10px;
}

.premium-stat-card .stat-label {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 8px;
}

.premium-stat-card .stat-description {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.4;
}

/* Process Timeline */
.process-timeline-section {
  margin: 60px 0;
}

.timeline-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  color: var(--eautc-brand);
  margin-bottom: 40px;
}

.process-timeline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 10px;
}

.timeline-step {
  flex: 1;
  text-align: center;
}

.timeline-step .step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--eautc-brand), var(--eautc-accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 800;
  color: #ffffff;
  margin: 0 auto 15px;
  box-shadow: 0 4px 15px rgba(91, 33, 182, 0.3);
}

.timeline-step .step-content h3 {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 8px;
}

.timeline-step .step-content p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.4;
}

.timeline-connector {
  flex: 0 0 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--eautc-brand), var(--eautc-accent));
  margin-bottom: 60px;
}

/* Comparison Table */
.comparison-section {
  margin: 60px 0;
}

.comparison-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  color: var(--eautc-brand);
  margin-bottom: 30px;
}

.comparison-table-wrapper {
  overflow-x: auto;
  border-radius: 12px;
  background: rgba(30, 30, 30, 0.5);
  padding: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: transparent;
}

.comparison-table thead th {
  padding: 20px;
  text-align: center;
  border-bottom: 2px solid rgba(91, 33, 182, 0.5);
  font-size: 16px;
  color: #ffffff;
}

.comparison-table .highlight-col {
  background: linear-gradient(180deg, rgba(91, 33, 182, 0.2), rgba(91, 33, 182, 0.05));
  border-left: 2px solid var(--eautc-brand);
  border-right: 2px solid var(--eautc-brand);
}

.table-header-badge {
  background: var(--eautc-brand);
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 14px;
  display: inline-block;
}

.comparison-table tbody tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-table tbody td {
  padding: 16px 20px;
  text-align: center;
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
}

.comparison-table .feature-name {
  font-weight: 600;
  text-align: left;
  color: #ffffff;
}

.check-icon {
  color: var(--eautc-accent);
  font-weight: 900;
  font-size: 18px;
  margin-right: 8px;
}

.cross-icon {
  color: #f44336;
  font-weight: 900;
  font-size: 18px;
  margin-right: 8px;
}

/* Live Feed Section */
.live-feed-section {
  margin: 60px 0;
}

.live-feed-section-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  color: var(--eautc-brand);
  margin-bottom: 30px;
}

.live-feed-section .live-feed-card {
  max-width: 800px;
  margin: 0 auto;
  background: rgba(30, 30, 30, 0.95) !important;
  border: 2px solid rgba(91, 33, 182, 0.3) !important;
  border-radius: 12px;
  padding: 20px;
}

/* Premium SEO Content */
.premium-seo-content {
  margin: 60px 0;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.premium-seo-content h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--eautc-brand);
  margin-bottom: 20px;
  text-align: center;
}

.premium-seo-content h3 {
  font-size: 22px;
  font-weight: 600;
  color: var(--eautc-accent);
  margin-top: 30px;
  margin-bottom: 15px;
  text-align: center;
}

.premium-seo-content p {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 15px;
  text-align: left;
}

.premium-seo-content ul {
  list-style: none;
  padding-left: 0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* Override remote green styling with purple */
body .seo-content-fullwidth .seo-text-block .premium-seo-content ul li,
body:not([data-theme="light"]) .seo-content-fullwidth .seo-text-block .premium-seo-content ul li,
[data-theme="light"] .seo-content-fullwidth .seo-text-block .premium-seo-content ul li,
.premium-seo-content ul li {
  font-size: 15px !important;
  line-height: 1.8 !important;
  color: rgba(255, 255, 255, 0.85) !important;
  margin-bottom: 10px !important;
  padding: 0.5rem 0 !important;
  position: relative !important;
  background: transparent !important;
  border-left: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  text-align: center !important;
  display: block !important;
}

body .seo-content-fullwidth .seo-text-block .premium-seo-content ul li:before,
body:not([data-theme="light"]) .seo-content-fullwidth .seo-text-block .premium-seo-content ul li:before,
[data-theme="light"] .seo-content-fullwidth .seo-text-block .premium-seo-content ul li:before,
.premium-seo-content ul li:before {
  content: "▸ " !important;
  color: var(--eautc-brand) !important;
  font-weight: 900 !important;
  position: relative !important;
  left: auto !important;
  text-shadow: none !important;
  display: inline !important;
  margin-right: 8px !important;
}

body .seo-content-fullwidth .seo-text-block .premium-seo-content ul li:hover,
body:not([data-theme="light"]) .seo-content-fullwidth .seo-text-block .premium-seo-content ul li:hover,
[data-theme="light"] .seo-content-fullwidth .seo-text-block .premium-seo-content ul li:hover,
.premium-seo-content ul li:hover {
  background: transparent !important;
  border-left: none !important;
  box-shadow: none !important;
}

.premium-seo-content ul li strong {
  color: #ffffff;
}

/* Mobile tweaks */
@media screen and (max-width: 768px) {
  .rotating-text {
    font-size: 16px !important;
  }
  .site-header {
    border-bottom-width: 1px;
  }

  .premium-stats-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .premium-stat-card {
    padding: 20px 15px;
  }

  .premium-stat-card .stat-number {
    font-size: 36px;
  }

  .process-timeline {
    flex-direction: column;
    gap: 4px;
  }

  .timeline-connector {
    display: none !important; /* remove vertical dividers on mobile */
  }

  .timeline-title,
  .comparison-title,
  .live-feed-section-title {
    font-size: 18px;
  }

  /* Mobile: make How It Works timeline more compact */
  .process-timeline-section {
    margin: 8px 0;
  }

  .timeline-step .step-number {
    width: 24px;
    height: 24px;
    font-size: 12px;
    margin: 0 auto 2px;
  }

  .timeline-step h3 {
    font-size: 13px;
    margin-bottom: 2px;
  }

  .timeline-step p {
    font-size: 11px;
    margin: 0;
  }

  .comparison-table-wrapper {
    padding: 10px;
  }

  .comparison-table thead th,
  .comparison-table tbody td {
    padding: 10px 8px;
    font-size: 13px;
  }

  /* Mobile: hide live feed section to reduce clutter */
  .live-feed-section {
    display: none !important;
  }

  .table-header-badge {
    font-size: 12px;
    padding: 6px 12px;
  }

  .premium-seo-content h2 {
    font-size: 22px;
  }

  .premium-seo-content h3 {
    font-size: 18px;
  }

  .premium-seo-content p,
  .premium-seo-content ul li {
    font-size: 14px;
  }
}

/* Compact Footer Trust Signals */
.footer-trust-signals.compact {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  padding: 20px 0;
  flex-wrap: wrap;
}

.footer-trust-signals.compact .trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-trust-signals.compact .trust-stars {
  color: var(--eautc-accent);
  font-size: 14px;
  line-height: 1;
}

.footer-trust-signals.compact .trust-number {
  font-weight: 700;
  font-size: 16px;
  color: #ffffff;
}

.footer-trust-signals.compact .trust-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

@media screen and (max-width: 768px) {
  .footer-trust-signals.compact {
    gap: 20px;
    padding: 15px 0;
  }

  .footer-trust-signals.compact .trust-item {
    gap: 6px;
  }

  .footer-trust-signals.compact .trust-number,
  .footer-trust-signals.compact .trust-text {
    font-size: 13px;
  }

  .footer-trust-signals.compact .trust-stars {
    font-size: 12px;
  }
}


/* EASPC Quantity Preset Buttons */
.quantity-presets {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.preset-btn {
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.2);
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 90px;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.05);
  position: relative;
}

.preset-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.2),
              0 0 25px rgba(255, 255, 255, 0.15);
  color: #ffffff;
}

.preset-btn.active {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.1));
  color: #ffffff;
  border-color: #ffffff;
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.3),
              inset 0 0 20px rgba(255, 255, 255, 0.1);
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {
  .quantity-presets {
    gap: 0.5rem;
  }

  .preset-btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
    min-width: 75px;
  }
}

/* Mobile Modal Improvements - Legacy block removed; use main styles instead */

/* Live Pricing – Price Comparison Styles (match FCUTSTORE) */
.price-comparison-box {
  background: rgba(245, 245, 245, 0.5);
  padding: 8px;
  border-radius: 6px;
  margin-bottom: 6px;
}

[data-theme="light"] .price-comparison-box {
  background: rgba(0, 0, 0, 0.03);
}

.price-comparison-title {
  margin: 0 0 6px 0;
  font-size: 13px;
  text-align: center;
  color: #fff;
}

[data-theme="light"] .price-comparison-title {
  color: #333;
}

.price-comparison-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 6px;
}

.price-comparison-our-price {
  background: #4CAF50;
  color: white;
  padding: 6px;
  border-radius: 4px;
  text-align: center;
}

.price-comparison-competitor {
  background: rgba(255, 255, 255, 0.9);
  padding: 6px;
  border-radius: 4px;
  text-align: center;
}

[data-theme="light"] .price-comparison-competitor {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.price-comparison-label {
  font-size: 9px;
  margin-bottom: 2px;
  opacity: 0.9;
  color: inherit;
}

.price-comparison-competitor .price-comparison-label {
  color: #666;
}

.price-comparison-value {
  font-size: 16px;
  font-weight: bold;
  color: inherit;
}

.price-comparison-competitor .price-comparison-value {
  font-size: 15px;
  color: #333;
}

.price-comparison-badge {
  font-size: 8px;
  margin-top: 2px;
  opacity: 0.9;
}

.price-comparison-savings {
  font-size: 8px;
  margin-top: 2px;
  color: #4CAF50;
}

.price-comparison-summary {
  margin-top: 4px;
  text-align: center;
  font-size: 11px;
  color: #4CAF50;
  font-weight: 600;
}

/* Extra small mobile devices */
@media screen and (max-width: 480px) {
  .modal {
    padding: 8px !important;
  }

  .modal-content {
    width: calc(100vw - 16px) !important;
    padding: 20px 16px !important;
    border-radius: 12px !important;
  }

  .auth-modal-content,
  .customer-dashboard {
    width: calc(100vw - 16px) !important;
    padding: 20px 16px !important;
  }

  .modal-title {
    font-size: 18px !important;
    padding-right: 45px !important;
  }

  .modal-close {
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    min-height: 40px !important;
    font-size: 24px !important;
  }
}

/* Footer Network Logos */
.footer-network-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: nowrap;
  padding: 20px 10px 15px;
  max-width: 1200px;
  margin: 0 auto;
}

.network-logo-link {
  display: block;
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0.9;
}

.network-logo-link:hover {
  transform: translateY(-5px);
  opacity: 1;
}

.network-logo {
  height: 150px;
  width: auto;
  max-width: 540px;
  object-fit: contain;
  display: block;
}

.footer-network-tagline {
  text-align: center;
  padding: 10px 20px 20px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  opacity: 0.9;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .footer-network-logos {
    flex-wrap: wrap;
    gap: 12px;
    padding: 15px 10px 10px;
    justify-content: center;
  }

  .network-logo {
    height: 60px;
    max-width: 150px;
  }

  .footer-network-tagline {
    font-size: 13px;
  }
}

/* Temporarily hide Sell Coins (feature not ready yet) */
body #sell-coins-btn,
body #sell-coins-btn-mobile {
  display: none !important;
}
/* === UNIFIED MOBILE HEADER (single menu system) === */
@media (max-width: 768px) {
  body .site-header {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 10px 12px !important;
    min-height: 60px !important;
    height: auto !important;
  }

  body .header-actions,
  body .header-actions * {
    display: none !important;
    visibility: hidden !important;
  }

  body .header-actions {
    display: flex !important;
    visibility: visible !important;
    align-items: center !important;
    gap: 6px !important;
    width: auto !important;
  }

  body .header-actions > :not(#account-btn) {
    display: none !important;
    visibility: hidden !important;
  }

  body #account-btn {
    display: flex !important;
    visibility: visible !important;
    align-items: center !important;
    justify-content: center !important;
    height: 34px !important;
    padding: 0 10px !important;
    font-size: 12px !important;
    max-width: 140px !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }

  body .header-left {
    position: static !important;
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
    width: auto !important;
  }

  body .mobile-menu-btn {
    display: flex !important;
    visibility: visible !important;
    width: 34px !important;
    height: 34px !important;
  }

  body .header-left > :not(.mobile-menu-btn):not(.whatsapp-btn):not(.lang-dropdown):not(.currency-dropdown) {
    display: none !important;
    visibility: hidden !important;
  }

  body .brand-text {
    display: flex !important;
    justify-content: center !important;
    font-size: 14px !important;
    flex: 1 !important;
  }

  body .brand-text { order: 2 !important; }
  body .header-left { order: 1 !important; }
  body .header-actions { order: 3 !important; }

  body .lang-dropdown,
  body .currency-dropdown {
    position: relative !important;
  }

  body .lang-menu,
  body .currency-menu {
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) !important;
    min-width: 200px !important;
  }

  body .mobile-nav-overlay {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: rgba(0, 0, 0, 0.9) !important;
    backdrop-filter: blur(8px) !important;
    z-index: 100020 !important;
  }

  body .mobile-nav-content {
    width: 100% !important;
    height: 100% !important;
    padding: 20px !important;
    align-items: center !important;
    justify-content: flex-start !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
  }

  body .mobile-nav-header {
    display: grid !important;
    grid-template-columns: 1fr auto 1fr !important;
    align-items: center !important;
    gap: 8px !important;
    width: 100% !important;
    padding: 6px 0 12px !important;
  }

  body .mobile-nav-logo {
    height: 96px !important;
    width: auto !important;
    max-width: 240px !important;
    object-fit: contain !important;
  }

  body .mobile-nav-header .mobile-nav-logo {
    grid-column: 2;
    justify-self: center;
  }

  body .mobile-nav-header .mobile-menu-close {
    grid-column: 3;
    justify-self: end;
  }
}

@media (max-width: 768px) {
  #checkout-section .payment-option-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  #checkout-section .payment-option-tile {
    display: grid !important;
    width: 100% !important;
    min-width: 0 !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  #checkout-section .payment-more-toggle {
    display: inline-flex !important;
    align-items: center !important;
  }

  #checkout-section .payment-more-grid.is-hidden {
    display: none !important;
  }

  #checkout-section .payment-option-tile__top {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 6px !important;
  }

  #checkout-section .payment-option-tile__title,
  #checkout-section .payment-option-tile__logos {
    width: 100% !important;
  }

  #checkout-section .payment-option-tile__badge {
    justify-self: start !important;
  }
}

/* EASPORTSCOINS V2 hero rollout */
.site-header.eautc-v2-header {
  position: sticky !important;
  top: 0 !important;
  z-index: 100010 !important;
  display: block !important;
  min-height: 0 !important;
  height: auto !important;
  padding: 4px clamp(18px, 4vw, 44px) !important;
  overflow: visible !important;
  background: rgba(7, 8, 11, 0.98) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.22);
  /* backdrop-filter removed - causes scroll jank on sticky elements */
}

.eautc-v2-header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
}

.eautc-v2-header-left {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.site-header.eautc-v2-header .mobile-menu-btn {
  display: none;
  position: static !important;
}

.eautc-v2-brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #f7f8fb;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 0;
  text-decoration: none;
  white-space: nowrap;
}

.eautc-v2-brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 38px;
  padding: 0 9px;
  color: #111507;
  background: #d8ff3d;
  border-radius: 8px;
  font-size: 19px;
}

.eautc-v2-brand-text {
  line-height: 1;
}

.eautc-v2-logo {
  max-height: 80px;
  width: auto;
  display: block;
  object-fit: contain;
}

.eautc-v2-header-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 30px);
}

.eautc-v2-header-nav a,
.eautc-v2-header-nav button {
  margin: 0;
  padding: 0;
  color: rgba(247, 248, 251, 0.78);
  background: transparent;
  border: 0;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.eautc-v2-header-nav a:hover,
.eautc-v2-header-nav button:hover {
  color: #d8ff3d;
}

.eautc-v2-header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

.eautc-v2-currency-dropdown,
.eautc-v2-lang-dropdown {
  position: relative;
}

.eautc-v2-header-icon,
.eautc-v2-currency-toggle {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-width: 46px;
  height: 46px;
  padding: 0 12px !important;
  color: #f7f8fb !important;
  background: rgba(255, 255, 255, 0.09) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 8px !important;
  font-size: 15px !important;
  font-weight: 900 !important;
  text-decoration: none !important;
  box-shadow: none !important;
}

.eautc-v2-header-icon:hover,
.eautc-v2-currency-toggle:hover {
  border-color: rgba(216, 255, 61, 0.34) !important;
  background: rgba(216, 255, 61, 0.1) !important;
}

.eautc-v2-header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  color: #111507;
  background: #d8ff3d;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(216, 255, 61, 0.16);
}

.eautc-v2-header-utility {
  display: none !important;
}

.site-header.eautc-v2-header .lang-menu,
.site-header.eautc-v2-header .currency-menu {
  top: calc(100% + 8px);
  right: 0;
}

.eautc-v2-home {
  --bg-image: none;
  --eautc-v2-header-offset: 75px;
  position: relative;
  min-height: auto;
  margin-top: calc(var(--eautc-v2-header-offset) * -1) !important;
  padding-top: var(--eautc-v2-header-offset) !important;
  overflow-x: hidden;
  background: #07080b;
}

.eautc-v2-atmosphere {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.eautc-v2-spark {
  position: absolute;
  display: block;
  width: 6px;
  height: 6px;
  border: 1px solid rgba(216, 255, 61, 0.72);
  box-shadow: 0 0 16px rgba(216, 255, 61, 0.35);
  opacity: 0;
  transform: rotate(45deg);
  animation: eautcSparkFloat 8s ease-in-out infinite;
}

.eautc-v2-spark::before,
.eautc-v2-spark::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 14px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(216, 255, 61, 0.6), transparent);
  transform: translate(-50%, -50%) rotate(-45deg);
}

.eautc-v2-spark::after {
  transform: translate(-50%, -50%) rotate(45deg);
}

.eautc-v2-spark:nth-child(1) { left: 12%; top: 20%; animation-delay: 0.2s; }
.eautc-v2-spark:nth-child(2) { left: 38%; top: 15%; animation-delay: 1.3s; }
.eautc-v2-spark:nth-child(3) { left: 76%; top: 25%; animation-delay: 2.1s; }
.eautc-v2-spark:nth-child(4) { left: 66%; top: 56%; animation-delay: 3.3s; }
.eautc-v2-spark:nth-child(5) { left: 22%; top: 68%; animation-delay: 4.2s; }
.eautc-v2-spark:nth-child(6) { left: 91%; top: 46%; animation-delay: 5.4s; }
.eautc-v2-spark:nth-child(7) { left: 50%; top: 78%; animation-delay: 6.1s; }

.eautc-v2-home::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    url("assets/eautc-hero-original-stadium.png"),
    radial-gradient(circle at 76% 22%, rgba(216, 255, 61, 0.12), transparent 30%),
    linear-gradient(90deg, rgba(7, 8, 11, 0.94), rgba(7, 8, 11, 0.45) 48%, rgba(7, 8, 11, 0.86)),
    linear-gradient(180deg, rgba(7, 8, 11, 0.08), #07080b 96%) !important;
  background-position:
    center,
    center,
    center,
    center !important;
  background-size:
    cover,
    auto,
    auto,
    auto !important;
  background-repeat: no-repeat !important;
  background-attachment:
    scroll,
    scroll,
    scroll,
    scroll !important;
  transform: none;
}

.eautc-v2-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: none;
  padding: 0;
  overflow-x: clip;
}

.eautc-v2-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 520px;
  gap: 44px;
  align-items: start;
  min-height: 680px;
  padding: 48px 64px 70px;
  text-align: left;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.eautc-v2-hero-copy {
  min-width: 0;
  width: 100%;
  max-width: 760px;
}

.eautc-v2-live-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding: 9px 12px;
  color: rgba(247, 248, 251, 0.92);
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 800;
}

.eautc-v2-hero .title {
  max-width: 760px;
  margin: 0;
  color: #f7f8fb;
  font-size: 64px;
  line-height: 0.98;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

.eautc-v2-home:not(.eautc-v2-flow-active) .eautc-v2-live-pill {
  animation: eautcHeroRise 0.55s cubic-bezier(0.2, 0.8, 0.2, 1) 0.06s both;
}

.eautc-v2-home:not(.eautc-v2-flow-active) .eautc-v2-hero .title {
  animation: eautcHeroRise 0.65s cubic-bezier(0.2, 0.8, 0.2, 1) 0.16s both;
}

.eautc-v2-home:not(.eautc-v2-flow-active) .eautc-v2-hero .subtitle {
  animation: eautcHeroRise 0.65s cubic-bezier(0.2, 0.8, 0.2, 1) 0.28s both;
}

.eautc-v2-home:not(.eautc-v2-flow-active) .eautc-v2-hero-actions {
  animation: eautcHeroRise 0.65s cubic-bezier(0.2, 0.8, 0.2, 1) 0.4s both;
}

.eautc-v2-home:not(.eautc-v2-flow-active) .eautc-v2-metric-row {
  animation: eautcHeroRise 0.65s cubic-bezier(0.2, 0.8, 0.2, 1) 0.52s both;
}

.eautc-v2-home:not(.eautc-v2-flow-active) .eautc-v2-order-card {
  animation: eautcCardEnter 0.78s cubic-bezier(0.18, 0.86, 0.24, 1) 0.52s both;
}

.eautc-v2-hero .subtitle {
  max-width: 640px;
  margin: 18px 0 0;
  color: #d4d9e4;
  font-size: 19px;
  line-height: 1.55;
}

.eautc-v2-hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}

.eautc-v2-primary-link,
.eautc-v2-secondary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 900;
  text-decoration: none;
}

.eautc-v2-primary-link {
  color: #111507;
  background: #d8ff3d;
  animation: eautcCtaPulse 2.8s ease-in-out 1.25s 2;
}

.eautc-v2-secondary-link {
  color: #f7f8fb;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.eautc-v2-metric-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 650px;
  margin-top: 28px;
}

.eautc-v2-trust-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: space-between;
  min-height: 104px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.075);
  border-radius: 8px;
  color: inherit;
  text-decoration: none;
}

.eautc-v2-metric-row strong,
.eautc-v2-metric-row span {
  display: block;
}

.eautc-v2-metric-row strong {
  color: #f7f8fb;
  font-size: 17px;
}

.eautc-v2-metric-row span {
  margin-top: 4px;
  color: #aab3c3;
  font-size: 13px;
}

.eautc-v2-trustpilot-mini:hover {
  border-color: rgba(216, 255, 61, 0.34);
  background: rgba(216, 255, 61, 0.1);
}

.eautc-v2-stars {
  margin: 0 0 8px !important;
  color: #00b67a !important;
  font-size: 17px !important;
  letter-spacing: 0.03em;
  line-height: 1;
}

.eautc-v2-platform-badges,
.eautc-v2-payment-badges {
  display: flex !important;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px;
  min-height: 28px;
  margin: 0 0 8px !important;
}

.eautc-v2-platform-badges span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  height: 26px;
  margin: 0;
  color: #111507;
  background: #d8ff3d;
  border: 1px solid rgba(216, 255, 61, 0.56);
  border-radius: 8px;
  font-size: 11px;
  font-weight: 950;
}

.eautc-v2-payment-badges .payment-option-logo {
  display: inline-flex !important;
  min-height: 24px;
  margin: 0;
  padding: 0 7px;
  border-radius: 6px;
  font-size: 9px;
}

.eautc-v2-payment-badges .payment-option-logo--visa,
.eautc-v2-payment-badges .payment-option-logo--apple,
.eautc-v2-payment-badges .payment-option-logo--revolut {
  color: #ffffff;
}

.eautc-v2-payment-badges .payment-option-logo--mastercard {
  color: #fff7ed;
}

#platform-section.eautc-v2-order-card {
  position: relative;
  display: block !important;
  width: 100%;
  max-width: 520px;
  min-width: 0;
  margin: 0 !important;
  padding: 18px !important;
  background: rgba(18, 22, 29, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(22px);
  box-sizing: border-box;
  overflow: hidden;
}

.eautc-price-loading-overlay {
  position: absolute;
  inset: 0;
  z-index: 9;
  display: grid;
  place-items: center;
  min-height: 100%;
  padding: 24px;
  color: #f7f8fb;
  background:
    radial-gradient(circle at 18% 12%, rgba(216, 255, 61, 0.2), transparent 32%),
    radial-gradient(circle at 90% 86%, rgba(42, 147, 255, 0.2), transparent 34%),
    linear-gradient(145deg, rgba(5, 8, 13, 0.995), rgba(13, 18, 26, 0.99) 48%, rgba(4, 9, 16, 0.995));
  backdrop-filter: blur(14px) saturate(1.1);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 360ms ease, visibility 360ms ease;
}

.eautc-price-loading-overlay::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(216, 255, 61, 0.26);
  border-radius: 8px;
  box-shadow: inset 0 0 36px rgba(216, 255, 61, 0.08), 0 0 48px rgba(0, 0, 0, 0.28);
  pointer-events: none;
}

.eautc-price-loading-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.06), transparent),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 9px);
  opacity: 0.55;
  transform: translateX(-40%);
  animation: eautcPriceSweep 2.6s ease-in-out infinite;
  pointer-events: none;
}

.eautc-price-loading-overlay.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.eautc-price-loading-overlay__shine {
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(216, 255, 61, 0.13);
  filter: blur(42px);
  transform: translate(32%, -28%);
  pointer-events: none;
}

.eautc-price-loading-overlay__content {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 9px;
  width: min(100%, 390px);
  padding: 22px;
  text-align: left;
}

.eautc-price-loading-overlay__eyebrow {
  color: #d8ff3d;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eautc-price-loading-overlay strong {
  max-width: 330px;
  color: #ffffff;
  font-size: 26px;
  font-weight: 950;
  line-height: 1.05;
}

.eautc-price-loading-overlay__message {
  max-width: 340px;
  color: #c7d0df;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}

.eautc-price-loading-overlay.is-delayed .eautc-price-loading-overlay__message::after {
  content: " Live rates are taking a little longer than usual.";
  color: #f4b840;
}

.eautc-price-loading-overlay__bar {
  position: relative;
  width: 100%;
  height: 7px;
  margin-top: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
}

.eautc-price-loading-overlay__bar span {
  position: absolute;
  inset: 0 auto 0 0;
  width: 46%;
  border-radius: inherit;
  background: linear-gradient(90deg, #d8ff3d, #f4b840, #2a93ff);
  box-shadow: 0 0 24px rgba(216, 255, 61, 0.36);
  animation: eautcPriceBar 1.45s ease-in-out infinite;
}

@keyframes eautcPriceSweep {
  0% { transform: translateX(-60%); }
  55%, 100% { transform: translateX(60%); }
}

@keyframes eautcPriceBar {
  0% { transform: translateX(-110%); }
  100% { transform: translateX(230%); }
}

.eautc-v2-card-top,
.eautc-v2-card-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.eautc-v2-eyebrow {
  display: block;
  color: #d8ff3d;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eautc-v2-card-top h2 {
  margin: 6px 0 0;
  color: #f7f8fb;
  font-size: 22px;
}

.eautc-v2-safe-badge {
  padding: 7px 10px;
  color: #d8ff3d;
  background: rgba(216, 255, 61, 0.12);
  border: 1px solid rgba(216, 255, 61, 0.28);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.eautc-v2-platform-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px;
  margin-top: 14px;
}

.eautc-v2-platform-grid-three {
  grid-template-columns: repeat(3, 160px) !important;
  justify-content: center !important;
}

.eautc-v2-platform-card {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  width: 160px !important;
  height: 160px !important;
  min-height: auto !important;
  padding: 0 !important;
  color: #f7f8fb !important;
  background: transparent !important;
  border: 2px solid rgba(255, 255, 255, 0.13) !important;
  border-radius: 12px !important;
  text-align: center !important;
  overflow: hidden !important;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease, box-shadow 180ms ease !important;
}

.eautc-v2-platform-card:hover,
.eautc-v2-platform-card:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(216, 255, 61, 0.4);
  outline: none;
}

.eautc-v2-platform-card.selected {
  transform: translateY(-2px);
  border-color: rgba(216, 255, 61, 1) !important;
  background: rgba(216, 255, 61, 0.15) !important;
  box-shadow:
    0 0 30px rgba(216, 255, 61, 0.6),
    0 0 60px rgba(216, 255, 61, 0.4),
    0 0 90px rgba(216, 255, 61, 0.2),
    inset 0 0 30px rgba(216, 255, 61, 0.15) !important;
  outline: none;
}

.eautc-v2-platform-card .delivery-badge {
  display: none !important;
}

.eautc-v2-platform-card .platform-image {
  position: relative !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex: 0 0 auto !important;
  width: 160px !important;
  height: 160px !important;
  max-width: 160px !important;
  min-height: 160px !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 10px !important;
  box-shadow: none !important;
}

.eautc-v2-platform-card .platform-image img {
  display: block !important;
  width: 160px !important;
  height: 160px !important;
  max-width: 160px !important;
  max-height: 160px !important;
  margin: 0 !important;
  object-fit: cover !important;
  object-position: center !important;
  border-radius: 12px !important;
  opacity: 1 !important;
  transition: filter 0.3s ease !important;
}

.eautc-v2-platform-card .price-overlay {
  position: absolute !important;
  inset: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 4px !important;
  background: rgba(0, 0, 0, 0.75) !important;
  border-radius: 12px !important;
  opacity: 0 !important;
  transition: opacity 0.3s ease !important;
  pointer-events: none !important;
}

.eautc-v2-platform-card:hover .price-overlay,
.eautc-v2-platform-card:focus-visible .price-overlay {
  opacity: 1 !important;
}

.eautc-v2-platform-card:hover .platform-image img,
.eautc-v2-platform-card:focus-visible .platform-image img {
  filter: brightness(0.7) !important;
}

.eautc-v2-platform-card .price-overlay .platform-heading {
  margin: 0 !important;
  color: #ffffff !important;
  font-size: 14px !important;
  font-weight: 900 !important;
}

.eautc-v2-platform-card .price-overlay .price-label {
  margin: 0 !important;
  color: #aab3c3 !important;
  font-size: 9px !important;
  font-weight: 800 !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase !important;
}

.eautc-v2-platform-card .price-overlay .price-value {
  margin: 0 !important;
  color: #f4b840 !important;
  font-size: 18px !important;
  font-weight: 900 !important;
}

.eautc-v2-platform-card .eautc-v2-console-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 76px;
  height: 32px;
}

.eautc-v2-platform-card .eautc-v2-console-icons img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.eautc-v2-platform-card .eautc-v2-console-icons img:first-child {
  filter: invert(1) brightness(1.6);
}

.eautc-v2-platform-card .platform-heading {
  color: #f7f8fb;
  min-height: 16px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: none;
  white-space: nowrap;
}

.eautc-v2-platform-card .price-label {
  display: block;
  width: 100%;
  margin-top: 4px;
  color: #aab3c3;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
}

.eautc-v2-platform-card .price-value {
  display: block;
  width: 100%;
  margin-top: 3px;
  color: #f4b840;
  font-size: 17px;
  font-weight: 900;
  line-height: 1;
  text-align: center;
}

.eautc-v2-card-summary {
  display: none;
  margin-top: 16px;
  padding: 16px;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
}

.eautc-v2-card-summary span {
  display: block;
  color: #aab3c3;
  font-size: 12px;
  font-weight: 800;
}

.eautc-v2-card-summary strong {
  display: block;
  margin-top: 4px;
  color: #f7f8fb;
  font-size: 16px;
}

.eautc-v2-card-note {
  margin: 14px 0 0;
  color: #aab3c3;
  font-size: 13px;
  line-height: 1.45;
}

.eautc-v2-inline-quantity {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.eautc-v2-inline-head {
  display: grid;
  grid-template-columns: minmax(120px, 1fr) auto;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.eautc-v2-inline-head > div:first-child {
  min-width: 0;
}

.eautc-v2-selected-platform {
  display: block;
  margin-bottom: 2px;
  color: #f4b840;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eautc-v2-inline-head .section-title {
  margin: 2px 0 0;
  color: #f7f8fb;
  font-size: 16px;
  line-height: 1.12;
  text-align: left;
}

.eautc-v2-flow-active .eautc-v2-hero {
  display: none;
}

.eautc-v2-flow-active .quantity-section,
.eautc-v2-flow-active .account-section,
.eautc-v2-flow-active .dump-section,
.eautc-v2-flow-active #checkout-section {
  width: min(960px, calc(100% - 48px));
  margin: 110px auto 36px;
  background: rgba(18, 22, 29, 0.94);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(18px);
}

.eautc-v2-quantity-card .section-title {
  margin: 6px 0 0;
  color: #f7f8fb;
  font-size: 28px;
  line-height: 1.1;
  text-align: left;
}

.eautc-v2-quantity-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.eautc-v2-presets.quantity-presets {
  display: grid;
  grid-template-columns: repeat(6, 46px);
  justify-content: end;
  gap: 6px;
  margin: 0;
}

.eautc-v2-presets .preset-btn {
  aspect-ratio: 1 / 1;
  width: 100%;
  min-width: 0;
  min-height: 0;
  padding: 0;
  color: #f7f8fb;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 900;
}

.eautc-v2-presets .preset-btn:hover,
.eautc-v2-presets .preset-btn.active {
  color: #111507;
  background: #d8ff3d;
  border-color: #d8ff3d;
  box-shadow: none;
}

.eautc-v2-slider-row.slider-row {
  margin: 10px 0 0;
  padding: 10px 12px;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
}

.eautc-v2-slider-row input[type="range"] {
  accent-color: #d8ff3d;
}

.eautc-v2-quantity-readout.quantity-readout {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  gap: 12px;
  margin-top: 8px;
  color: #aab3c3;
}

.eautc-v2-quantity-readout > div {
  padding: 9px 10px;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
}

.eautc-v2-quantity-readout span {
  display: block;
  color: #aab3c3;
  font-size: 10px;
  font-weight: 800;
}

.eautc-v2-quantity-readout strong {
  display: block;
  margin-top: 4px;
  color: #f7f8fb;
  font-size: 16px;
  line-height: 1.15;
}

.eautc-v2-quantity-readout #payout-display {
  color: #f4b840;
}

.eautc-v2-order-summary dl {
  display: grid;
  gap: 6px;
  margin: 7px 0 0;
}

.eautc-v2-order-summary dl div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}

.eautc-v2-order-summary dt,
.eautc-v2-order-summary dd {
  margin: 0;
  font-size: 11px;
  line-height: 1.2;
}

.eautc-v2-order-summary dt {
  color: #8f99aa;
  font-weight: 800;
}

.eautc-v2-order-summary dd {
  color: #f7f8fb;
  font-weight: 900;
  text-align: right;
}

.eautc-v2-order-summary dd #quantity-display {
  display: inline;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
}

.eautc-v2-pay-earn {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  align-items: stretch;
}

.eautc-v2-pay-earn > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 0;
  text-align: center;
}

#payout-display {
  white-space: nowrap;
}

.eautc-v2-cashback-amount {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 2px !important;
  line-height: 1.2 !important;
}

.eautc-v2-cashback-label {
  font-size: 0.7em !important;
  font-weight: 400 !important;
  opacity: 0.75 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
}

.eautc-v2-pay-earn > div + div {
  padding-left: 8px;
  border-left: 1px solid rgba(255, 255, 255, 0.13);
}

.eautc-v2-pay-earn > div > span {
  width: 100%;
}

.eautc-v2-pay-earn #payout-display {
  margin-top: 6px;
  color: #f4b840;
  font-size: 28px;
  font-weight: 950;
  line-height: 0.96;
  text-align: center;
}

.eautc-v2-pay-earn #payout-display.is-placeholder {
  color: #f7f8fb;
  font-size: 16px;
  line-height: 1.15;
}

.eautc-v2-pay-earn #cashback-display {
  display: inline;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
}

.eautc-v2-pay-earn strong {
  white-space: normal;
}

.eautc-v2-page-sections {
  display: grid;
  gap: 22px;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto 56px;
}

.eautc-v2-section {
  color: #f7f8fb;
}

.eautc-v2-feature-grid article,
.eautc-v2-step-grid article,
.eautc-v2-faq-grid article {
  padding: 18px;
  background: rgba(18, 22, 29, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
}

.eautc-v2-info-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1.18fr);
  gap: 22px;
  align-items: start;
  padding-top: 12px;
}

.eautc-v2-section-head {
  max-width: 520px;
}

.eautc-v2-section-head h2,
.eautc-v2-support-band h2 {
  margin: 8px 0 0;
  color: #f7f8fb;
  font-size: 34px;
  line-height: 1.06;
}

.eautc-v2-section-head p,
.eautc-v2-support-band p {
  margin: 12px 0 0;
  color: #aab3c3;
  font-size: 15px;
  line-height: 1.62;
}

.eautc-v2-feature-grid,
.eautc-v2-step-grid,
.eautc-v2-faq-grid {
  display: grid;
  gap: 12px;
}

.eautc-v2-feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.eautc-v2-feature-grid article span,
.eautc-v2-step-grid article span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 30px;
  padding: 0 8px;
  color: #111507;
  background: #d8ff3d;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 950;
}

.eautc-v2-feature-grid h3,
.eautc-v2-step-grid h3,
.eautc-v2-faq-grid h3 {
  margin: 14px 0 0;
  color: #f7f8fb;
  font-size: 17px;
  line-height: 1.2;
}

.eautc-v2-feature-grid h3 {
  margin-top: 0;
  font-family: "Rajdhani", "Inter", system-ui, sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.08;
}

.eautc-v2-feature-grid p,
.eautc-v2-step-grid p,
.eautc-v2-faq-grid p {
  margin: 9px 0 0;
  color: #aab3c3;
  font-size: 13px;
  line-height: 1.55;
}

.eautc-v2-card-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  margin-top: 16px;
  padding: 0 16px;
  color: #111507;
  background: #d8ff3d;
  border: 1px solid rgba(216, 255, 61, 0.72);
  border-radius: 8px;
  box-shadow: 0 12px 26px rgba(216, 255, 61, 0.16);
  font: 800 13px/1 "Inter", system-ui, sans-serif;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.eautc-v2-card-action:hover,
.eautc-v2-card-action:focus-visible {
  background: #e6ff68;
  box-shadow: 0 16px 32px rgba(216, 255, 61, 0.22);
  transform: translateY(-1px);
}

.eautc-v2-card-action:focus-visible {
  outline: 2px solid rgba(247, 248, 251, 0.86);
  outline-offset: 3px;
}

.eautc-v2-cashback-rate {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-top: 16px;
  padding: 13px 14px;
  background: rgba(216, 255, 61, 0.08);
  border: 1px solid rgba(216, 255, 61, 0.28);
  border-radius: 8px;
}

.eautc-v2-cashback-rate span {
  color: #d4dbe7;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
}

.eautc-v2-cashback-rate strong {
  color: #d8ff3d;
  font-family: "Rajdhani", "Inter", system-ui, sans-serif;
  font-size: 34px;
  font-weight: 700;
  line-height: 0.9;
}

.eautc-v2-steps {
  padding: 28px 0 4px;
}

.eautc-v2-step-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 18px;
}

.eautc-v2-support-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 28px;
  background:
    radial-gradient(circle at 82% 20%, rgba(216, 255, 61, 0.14), transparent 34%),
    rgba(18, 22, 29, 0.92);
  border: 1px solid rgba(216, 255, 61, 0.18);
  border-radius: 8px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.24);
}

.eautc-v2-support-band .eautc-v2-secondary-link {
  white-space: nowrap;
}

.eautc-v2-faq-strip {
  display: grid;
  grid-template-columns: minmax(220px, 0.34fr) minmax(0, 0.66fr);
  gap: 22px;
  align-items: start;
}

.eautc-v2-faq-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.eautc-v2-flow-active .eautc-v2-page-sections {
  display: none;
}

.eautc-v2-quantity-actions.actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  width: 100%;
  margin-top: 10px;
}

.eautc-v2-quantity-actions .btn {
  width: 100%;
  min-height: 44px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 900;
}

.eautc-v2-quantity-actions .btn-primary {
  color: #111507;
  background: #d8ff3d;
  border-color: #d8ff3d;
  animation: eautcCtaPulse 2.8s ease-in-out 1.8s 2;
}

.eautc-v2-checkout-card,
.eautc-v2-account-card,
.eautc-v2-delivery-card {
  color: #f7f8fb;
}

.eautc-v2-checkout-card .section-title,
.eautc-v2-account-card .section-title,
.eautc-v2-delivery-card .section-title {
  margin: 0 0 20px;
  color: #f7f8fb;
  font-size: 30px;
  line-height: 1.12;
  text-align: left;
}

.eautc-v2-checkout-card .form,
.eautc-v2-account-card .form {
  display: grid;
  gap: 16px;
}

.eautc-v2-checkout-card .form-row,
.eautc-v2-account-card .form-row {
  display: grid;
  gap: 8px;
}

.eautc-v2-checkout-card label,
.eautc-v2-account-card label {
  color: #aab3c3;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.eautc-v2-checkout-card input,
.eautc-v2-checkout-card select,
.eautc-v2-account-card input,
.eautc-v2-account-card select {
  width: 100%;
  min-height: 48px;
  color: #f7f8fb;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  box-sizing: border-box;
}

.eautc-v2-checkout-card input:focus,
.eautc-v2-checkout-card select:focus,
.eautc-v2-account-card input:focus,
.eautc-v2-account-card select:focus {
  border-color: rgba(216, 255, 61, 0.7);
  box-shadow: 0 0 0 3px rgba(216, 255, 61, 0.14);
  outline: none;
}

.eautc-v2-checkout-card .info-note,
.eautc-v2-account-card .info-notice,
.eautc-v2-account-card .status-message,
.eautc-v2-delivery-card .summary {
  color: #d4d9e4;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
}

.eautc-v2-checkout-card .info-note a {
  color: #d8ff3d;
  font-weight: 900;
}

.eautc-v2-checkout-card #epayouts-instructions {
  color: #d4d9e4 !important;
  background: rgba(255, 255, 255, 0.075) !important;
  border-color: rgba(255, 255, 255, 0.13) !important;
}

.eautc-v2-checkout-card #epayouts-instructions strong,
.eautc-v2-checkout-card #epayouts-instructions p,
.eautc-v2-checkout-card #epayouts-methods-loading {
  color: #d4d9e4 !important;
}

.eautc-v2-checkout-card #epayouts-country {
  color: #f7f8fb !important;
  background: rgba(7, 8, 11, 0.82) !important;
  border-color: rgba(255, 255, 255, 0.14) !important;
}

.eautc-v2-checkout-card #epayouts-more-toggle {
  color: #f7f8fb !important;
  border-color: rgba(255, 255, 255, 0.18) !important;
}

.eautc-v2-checkout-card .payment-option-grid,
.eautc-v2-checkout-card .payment-more-grid {
  gap: 10px;
}

.eautc-v2-checkout-card .payment-option-tile {
  min-height: 108px;
  color: #f7f8fb;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  box-shadow: none;
}

.eautc-v2-checkout-card .payment-option-tile:hover,
.eautc-v2-checkout-card .payment-option-tile.is-selected {
  background: rgba(216, 255, 61, 0.12);
  border-color: rgba(216, 255, 61, 0.6);
  transform: translateY(-1px);
}

.eautc-v2-checkout-card .payment-option-tile__description,
.eautc-v2-checkout-card .payment-option-tile__badge {
  color: #aab3c3;
}

.eautc-v2-checkout-card .payment-more-toggle {
  color: #f7f8fb;
  background: rgba(255, 255, 255, 0.075);
  border-color: rgba(255, 255, 255, 0.13);
  border-radius: 8px;
}

.eautc-v2-checkout-card .price-summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px 16px;
  padding: 18px;
  color: #aab3c3;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
}

.eautc-v2-checkout-card .price-summary div:nth-child(even),
.eautc-v2-checkout-card .price-summary strong {
  color: #f7f8fb;
}

.eautc-v2-checkout-card #total-amount,
.eautc-v2-checkout-card #total-amount strong {
  color: #f4b840;
  font-size: 20px;
}

.eautc-v2-checkout-card .actions {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 4px;
}

.eautc-v2-account-card .actions,
.eautc-v2-delivery-card .actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 4px;
}

.eautc-v2-delivery-card .actions {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.eautc-v2-checkout-card .btn,
.eautc-v2-account-card .btn,
.eautc-v2-delivery-card .btn {
  min-height: 50px;
  border-radius: 8px;
  font-weight: 900;
}

.eautc-v2-checkout-card .btn-primary,
.eautc-v2-account-card .btn-primary,
.eautc-v2-delivery-card .btn-primary {
  color: #111507;
  background: #d8ff3d;
  border-color: #d8ff3d;
}

.eautc-v2-account-card small,
.eautc-v2-delivery-card .summary,
.eautc-v2-delivery-card .verification-message {
  color: #aab3c3;
}

.eautc-v2-account-card .info-notice__title,
.eautc-v2-account-card .info-notice strong,
.eautc-v2-delivery-card .summary-label {
  color: #f7f8fb;
}

body .top-banner.info {
  color: #d8ff3d;
  background: rgba(7, 8, 11, 0.96);
  border-bottom-color: rgba(216, 255, 61, 0.42);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
}

.eautc-v2-home #progress-section .live-status-container {
  color: #f7f8fb;
}

.eautc-v2-home #progress-section .section-title,
.eautc-v2-home #progress-section .progress-title,
.eautc-v2-home #progress-section .status-step-title,
.eautc-v2-home #progress-section .sidebar-title,
.eautc-v2-home #progress-section .sidebar-value,
.eautc-v2-home #progress-section .order-detail-value {
  color: #f7f8fb;
}

.eautc-v2-home #progress-section .sidebar-card,
.eautc-v2-home #progress-section .order-details-card,
.eautc-v2-home #progress-section .progress-container,
.eautc-v2-home #progress-section .status-timeline,
.eautc-v2-home #progress-section .order-details-container {
  background: rgba(18, 22, 29, 0.94);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.26);
}

.eautc-v2-home #progress-section .sidebar-item,
.eautc-v2-home #progress-section .order-detail-icon,
.eautc-v2-home #progress-section .progress-stat,
.eautc-v2-home #progress-section .progress-bar-track {
  background: rgba(255, 255, 255, 0.075);
}

.eautc-v2-home #progress-section .sidebar-label,
.eautc-v2-home #progress-section .order-detail-label,
.eautc-v2-home #progress-section .progress-stat-label,
.eautc-v2-home #progress-section .status-step-time,
.eautc-v2-home #progress-section .proof-images-subtitle {
  color: #aab3c3;
}

.eautc-v2-home #progress-section .progress-percentage {
  background: none;
  -webkit-text-fill-color: currentColor;
  color: #d8ff3d;
}

.eautc-v2-home #progress-section .progress-bar-fill {
  background: linear-gradient(90deg, #d8ff3d, #a9e92f);
  box-shadow: 0 0 18px rgba(216, 255, 61, 0.34);
}

.eautc-v2-home #progress-section .status-badge.status-processing,
.eautc-v2-home #progress-section .status-badge.status-active,
.eautc-v2-home #progress-section .status-badge.status-paid {
  color: #111507;
  background: #d8ff3d;
  box-shadow: 0 10px 26px rgba(216, 255, 61, 0.22);
}

.eautc-v2-home #progress-section .status-badge.status-shipped {
  color: #111507;
  background: #d8ff3d;
  box-shadow: 0 10px 26px rgba(216, 255, 61, 0.22);
}

.eautc-v2-home #progress-section .status-badge.status-completed,
.eautc-v2-home #progress-section .status-step.status-completed .status-step-icon {
  color: #111507;
  background: #d8ff3d;
  box-shadow: 0 10px 26px rgba(216, 255, 61, 0.2);
}

.eautc-v2-home #progress-section .status-step.status-completed {
  background: rgba(216, 255, 61, 0.1);
}

.eautc-v2-home #progress-section .status-step.status-completed::after {
  background: #d8ff3d;
}

.eautc-v2-home #progress-section .status-step.status-active {
  background: rgba(216, 255, 61, 0.1);
  border-color: rgba(216, 255, 61, 0.32);
}

.eautc-v2-home #progress-section .status-step.status-active::after {
  background: linear-gradient(to bottom, #d8ff3d, rgba(255, 255, 255, 0.16));
}

.eautc-v2-home #progress-section .status-step.status-active .status-step-icon {
  color: #111507;
  background: #d8ff3d;
}

.eautc-v2-home #progress-section .status-step:not(.status-completed):not(.status-active) .status-step-icon {
  background: rgba(255, 255, 255, 0.075);
  color: #aab3c3;
}

.eautc-v2-home #progress-section .order-notice {
  color: #f7f8fb !important;
  background: rgba(255, 255, 255, 0.075) !important;
  border-color: rgba(216, 255, 61, 0.24) !important;
}

.eautc-v2-home #progress-section .order-notice .notice-content,
.eautc-v2-home #progress-section #keep-page-open-notice .notice-content {
  color: #f7f8fb !important;
}

.eautc-v2-home #progress-section #keep-page-open-notice {
  color: #f7f8fb !important;
  background: rgba(216, 255, 61, 0.1) !important;
  border-color: rgba(216, 255, 61, 0.32) !important;
}

.eautc-v2-home #progress-section .error-notice {
  background:
    radial-gradient(circle at 100% 0%, rgba(216, 255, 61, 0.09), transparent 34%),
    rgba(18, 22, 29, 0.94);
  border-color: rgba(216, 255, 61, 0.24);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
}

.eautc-v2-home #progress-section .error-notice-icon {
  color: #d8ff3d;
}

.eautc-v2-home #progress-section .error-notice-list {
  background: rgba(255, 255, 255, 0.075);
  border-color: rgba(255, 255, 255, 0.13);
}

.eautc-v2-home #progress-section .error-notice-title,
.eautc-v2-home #progress-section .proof-images-title {
  color: #f7f8fb !important;
}

.eautc-v2-home #progress-section .error-notice-message,
.eautc-v2-home #progress-section .error-notice-admin-note,
.eautc-v2-home #progress-section .error-notice-list {
  color: #d4d9e4;
}

body .modal-title {
  background: none;
  -webkit-text-fill-color: currentColor;
  color: #d8ff3d;
}

body .modal-content,
body .auth-modal-content,
body .customer-dashboard {
  color: #f7f8fb;
  background: rgba(18, 22, 29, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

body #review-modal {
  position: fixed !important;
  inset: 0 !important;
  z-index: 2147483000 !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 18px !important;
  overflow: hidden !important;
}

body #review-modal .modal-overlay {
  position: fixed !important;
  inset: 0 !important;
  background: rgba(0, 0, 0, 0.74) !important;
  backdrop-filter: blur(8px);
}

body #review-modal .modal-content {
  width: min(560px, calc(100vw - 36px)) !important;
  max-width: 560px !important;
  max-height: calc(100dvh - 36px) !important;
  margin: 0 !important;
  padding: 24px !important;
  overflow-y: auto !important;
  overscroll-behavior: contain;
  box-sizing: border-box;
}

body #review-modal .modal-header {
  margin-bottom: 18px;
}

body #review-modal .modal-title {
  margin: 0 0 8px !important;
}

body #review-modal .review-form {
  display: grid;
  gap: 14px;
}

body #review-modal .modal-actions {
  position: sticky;
  bottom: -24px;
  z-index: 2;
  margin: 8px -24px -24px;
  padding: 14px 24px 24px;
  background: linear-gradient(180deg, rgba(18, 22, 29, 0), rgba(18, 22, 29, 0.98) 34%);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

body.review-modal-open {
  overflow: hidden !important;
}

body.review-modal-open .site-footer,
body.review-modal-open .top-banner,
body.review-modal-open .chat-widget,
body.review-modal-open .chat-notification-banner,
body.review-modal-open iframe[src*="tawk.to"],
body.review-modal-open iframe[title*="tawk" i],
body.review-modal-open iframe[title*="chat" i],
body.review-modal-open div[id*="tawk" i],
body.review-modal-open div[class*="tawk" i] {
  opacity: 0 !important;
  pointer-events: none !important;
  visibility: hidden !important;
}

body .modal-backdrop {
  background: rgba(0, 0, 0, 0.66);
}

body .modal-title,
body #auth-modal .modal-title,
body #account-modal .modal-title,
body #faq-modal .modal-title,
body #contact-modal .modal-title,
body #live-pricing-modal .modal-title,
body #rewards-modal .modal-title {
  color: #f7f8fb !important;
  background: none !important;
  -webkit-text-fill-color: #f7f8fb !important;
  text-shadow: none !important;
}

body .auth-subtitle,
body .modal-subtitle,
body .form-hint,
body .form-row label,
body .customer-dashboard .detail-label,
body .customer-dashboard .activity-text,
body .customer-dashboard .empty-description {
  color: #aab3c3 !important;
}

body .form-row input,
body .form-row textarea,
body .detail-input,
body .tabs-mobile-select {
  color: #f7f8fb !important;
  background: rgba(7, 8, 11, 0.52) !important;
  border-color: rgba(255, 255, 255, 0.14) !important;
  border-radius: 8px !important;
}

body .form-row input:focus,
body .form-row textarea:focus,
body .detail-input:focus {
  border-color: rgba(216, 255, 61, 0.72) !important;
  box-shadow: 0 0 0 3px rgba(216, 255, 61, 0.12) !important;
}

body #forgot-username-btn,
body #forgot-password-btn,
body a {
  color: #d8ff3d;
}

body #forgot-username-btn,
body #forgot-password-btn {
  color: #d8ff3d !important;
  text-decoration-color: rgba(216, 255, 61, 0.55) !important;
}

body .btn.btn-primary,
body .form-actions .btn-primary,
body .modal-actions .btn-primary,
body .customer-dashboard .btn-primary {
  color: #111507 !important;
  background: #d8ff3d !important;
  border-color: #d8ff3d !important;
  box-shadow: none !important;
}

body .btn.btn-primary:hover,
body .form-actions .btn-primary:hover,
body .modal-actions .btn-primary:hover,
body .customer-dashboard .btn-primary:hover {
  background: #efff8a !important;
  border-color: #efff8a !important;
}

body .btn.btn-secondary,
body .btn.btn-ghost,
body .modal-actions .btn-secondary,
body .modal-actions .btn-ghost,
body .form-actions .btn-ghost,
body .customer-dashboard .btn-ghost,
body .customer-dashboard .btn-secondary {
  color: #f7f8fb !important;
  background: rgba(255, 255, 255, 0.075) !important;
  border-color: rgba(255, 255, 255, 0.16) !important;
}

body .tab {
  color: #f7f8fb !important;
  background: rgba(255, 255, 255, 0.075) !important;
  border-color: rgba(255, 255, 255, 0.14) !important;
  border-radius: 8px !important;
}

body .tab:hover,
body .tab.is-active,
body .tab.active {
  color: #111507 !important;
  background: #d8ff3d !important;
  border-color: #d8ff3d !important;
}

body #contact-modal {
  align-items: flex-start;
}

body #contact-modal .modal-content {
  width: min(560px, calc(100vw - 28px));
  max-width: 560px;
  margin: 80px auto 16px;
  padding: 22px;
  transition: width 0.22s ease;
}

body #contact-modal.eautc-support-modal--email .modal-content {
  width: min(720px, calc(100vw - 28px));
  max-width: 720px;
}

.eautc-support-modal-subtitle {
  margin: -4px 0 16px;
  color: #aab3c3;
  font-size: 14px;
  line-height: 1.45;
}

.eautc-support-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 14px;
}

.eautc-support-tab {
  min-height: 40px;
  padding: 0 10px;
  color: #f7f8fb;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.eautc-support-tab:hover,
.eautc-support-tab:focus-visible {
  border-color: rgba(216, 255, 61, 0.55);
}

.eautc-support-tab:focus-visible {
  outline: 2px solid rgba(216, 255, 61, 0.48);
  outline-offset: 2px;
}

.eautc-support-tab.is-active {
  color: #111507;
  background: #d8ff3d;
  border-color: #d8ff3d;
}

.eautc-support-panel.is-hidden {
  display: none !important;
}

.eautc-support-option {
  display: grid;
  gap: 10px;
  padding: 18px;
  background: rgba(7, 8, 11, 0.38);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
}

.eautc-support-option h3 {
  margin: 0;
  color: #f7f8fb;
  font-family: "Rajdhani", "Inter", system-ui, sans-serif;
  font-size: 25px;
  font-weight: 700;
  line-height: 1;
}

.eautc-support-option p {
  margin: 0;
  color: #aab3c3;
  font-size: 14px;
  line-height: 1.5;
}

.eautc-support-soon {
  display: inline-flex;
  width: fit-content;
  padding: 7px 10px;
  color: #111507 !important;
  background: #d8ff3d;
  border-radius: 8px;
  font-weight: 900;
}

.eautc-support-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 40px;
  padding: 0 16px;
  color: #111507 !important;
  background: #d8ff3d;
  border: 1px solid #d8ff3d;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

#support-panel-email #contact-form {
  margin-top: 0;
}

#support-panel-email .actions {
  display: flex;
  justify-content: flex-end;
}

@media (max-width: 560px) {
  .eautc-support-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body #contact-modal .modal-content {
    padding: 18px;
  }

  .eautc-support-option {
    padding: 16px;
  }
}

body .customer-stats .stat-card,
body .detail-container,
body .cashback-balance-card,
body .cashback-card,
body .history-list .empty-state,
body .orders-list .empty-state,
body .activity-item {
  color: #f7f8fb !important;
  background: rgba(255, 255, 255, 0.075) !important;
  border-color: rgba(255, 255, 255, 0.14) !important;
  border-radius: 8px !important;
  box-shadow: none !important;
}

body .customer-stats .stat-value,
body .detail-value,
body .balance-amount {
  color: #f4b840 !important;
}

body .auth-inline-message.is-info,
body .info-note {
  color: #d8ff3d !important;
  background: rgba(216, 255, 61, 0.1) !important;
  border-color: rgba(216, 255, 61, 0.28) !important;
}

@media (max-width: 980px) {
  html,
  body {
    overflow-x: hidden;
  }

  .site-header.eautc-v2-header {
    padding: 4px 12px !important;
    max-width: 100vw;
    overflow: visible;
  }

  .eautc-v2-header-main {
    gap: 8px;
    min-width: 0;
  }

  .site-header.eautc-v2-header .mobile-menu-btn {
    display: inline-flex !important;
    visibility: visible !important;
    width: 42px !important;
    height: 42px !important;
    flex: 0 0 auto !important;
  }

  .eautc-v2-brand {
    font-size: 20px;
    gap: 7px;
  }

  .eautc-v2-brand-mark {
    min-width: 38px;
    height: 36px;
    font-size: 18px;
  }

  .eautc-v2-brand-text {
    display: none;
  }

  .eautc-v2-logo {
    max-height: 64px;
  }

  .eautc-v2-header-nav {
    display: none;
  }

  .eautc-v2-header-actions {
    gap: 8px;
    min-width: 0;
  }

  .eautc-v2-lang-dropdown {
    display: none;
  }

  .eautc-v2-header-icon,
  .eautc-v2-currency-toggle {
    min-width: 42px !important;
    height: 42px !important;
    padding: 0 9px !important;
    font-size: 13px !important;
  }

  .eautc-v2-header-cta {
    min-height: 42px;
    padding: 0 12px;
    font-size: 13px;
  }

  .eautc-v2-home::before {
    background-position:
      center,
      center,
      center,
      58% top !important;
    background-size:
      auto,
      auto,
      auto,
      auto 100% !important;
    background-attachment:
      scroll,
      scroll,
      scroll,
      scroll !important;
  }

  .eautc-v2-home {
    --eautc-v2-header-offset: 62px;
  }

  .eautc-v2-hero {
    grid-template-columns: 1fr;
    gap: 28px;
    min-height: auto;
    padding: 64px 18px 44px;
    overflow-x: hidden;
  }

  .eautc-v2-hero .title {
    font-size: 42px;
    max-width: 100%;
  }

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

  .eautc-v2-hero-actions,
  .eautc-v2-metric-row {
    grid-template-columns: 1fr;
  }

  .eautc-v2-page-sections {
    width: calc(100% - 36px);
    margin-bottom: 44px;
  }

  .eautc-v2-info-grid,
  .eautc-v2-faq-strip {
    grid-template-columns: 1fr;
  }

  .eautc-v2-feature-grid,
  .eautc-v2-step-grid,
  .eautc-v2-faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .eautc-v2-section-head h2,
  .eautc-v2-support-band h2 {
    font-size: 28px;
  }

  .eautc-v2-support-band {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .eautc-v2-platform-grid {
    display: grid !important;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .eautc-v2-platform-grid-three {
    grid-template-columns: 1fr !important;
    justify-content: stretch !important;
  }

  .eautc-v2-hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .eautc-v2-metric-row {
    display: grid;
  }

  #platform-section.eautc-v2-order-card {
    width: 100%;
    max-width: 100%;
    padding: 18px !important;
  }

  .eautc-v2-platform-card {
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
    height: 0 !important;
    padding-bottom: 100% !important;
    position: relative !important;
  }

  .eautc-v2-platform-card .platform-image {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    min-height: 100% !important;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }

  .eautc-v2-platform-card[data-console-type="playstation"] .platform-image {
    background-image: url('assets/fc27products/fc27p-home.webp');
  }

  .eautc-v2-platform-card[data-console-type="xbox"] .platform-image {
    background-image: url('assets/fc27products/fc27x-home.webp');
  }

  .eautc-v2-platform-card[data-platform="pc"] .platform-image {
    background-image: url('assets/fc27products/fc27pc-home.webp');
  }

  .eautc-v2-platform-card .platform-image img {
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    max-height: none !important;
    opacity: 0;
  }

  .eautc-v2-platform-card .platform-heading {
    font-size: 11px;
  }

  .eautc-v2-platform-card .price-label {
    font-size: 8px;
  }

  .eautc-v2-platform-card .price-value {
    font-size: 14px;
  }

  .eautc-price-loading-overlay {
    padding: 16px;
  }

  .eautc-price-loading-overlay__content {
    gap: 7px;
    padding: 18px 14px;
  }

  .eautc-price-loading-overlay strong {
    max-width: 280px;
    font-size: 21px;
  }

  .eautc-price-loading-overlay__message {
    font-size: 12px;
  }

  .eautc-v2-inline-head {
    grid-template-columns: minmax(0, 1fr);
  }

  .eautc-v2-inline-head .eautc-v2-presets.quantity-presets {
    grid-column: 1 / -1;
    justify-content: space-between;
    width: 100%;
  }

  .eautc-v2-presets.quantity-presets,
  .eautc-v2-quantity-readout.quantity-readout,
  .eautc-v2-quantity-actions.actions {
    grid-template-columns: 1fr;
  }

  .eautc-v2-pay-earn #payout-display {
    font-size: 26px;
  }

  .eautc-v2-inline-quantity .eautc-v2-presets.quantity-presets {
    grid-template-columns: repeat(6, 46px);
  }

  .eautc-v2-checkout-card .actions,
  .eautc-v2-account-card .actions,
  .eautc-v2-delivery-card .actions {
    grid-template-columns: 1fr;
  }

  .eautc-v2-checkout-card .section-title,
  .eautc-v2-account-card .section-title,
  .eautc-v2-delivery-card .section-title {
    font-size: 24px;
  }

  .eautc-v2-quantity-card .section-title {
    font-size: 24px;
  }
}

@media (max-width: 520px) {
  .eautc-v2-header-cta {
    display: none;
  }

  .eautc-v2-header-icon,
  .eautc-v2-currency-toggle {
    max-width: 92px;
  }

  body #review-modal {
    align-items: center !important;
    padding: 10px !important;
  }

  body #review-modal .modal-content {
    width: calc(100vw - 20px) !important;
    max-height: calc(100dvh - 20px) !important;
    padding: 18px 14px !important;
  }

  body #review-modal .modal-actions {
    bottom: -18px;
    margin: 8px -14px -18px;
    padding: 12px 14px 18px;
  }

  .eautc-v2-hero {
    padding-right: 14px;
    padding-left: 14px;
  }

  .eautc-v2-hero .title {
    font-size: 36px;
    line-height: 1.02;
  }

  .eautc-v2-page-sections {
    width: calc(100% - 24px);
    gap: 14px;
  }

  .eautc-v2-feature-grid,
  .eautc-v2-step-grid,
  .eautc-v2-faq-grid {
    grid-template-columns: 1fr;
  }

  .eautc-v2-feature-grid article,
  .eautc-v2-step-grid article,
  .eautc-v2-faq-grid article,
  .eautc-v2-support-band {
    padding: 16px;
  }

  .eautc-v2-section-head h2,
  .eautc-v2-support-band h2 {
    font-size: 24px;
  }
}

@keyframes eautcHeroRise {
  from {
    opacity: 0;
    transform: translateY(24px);
    filter: blur(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes eautcCardEnter {
  from {
    opacity: 0;
    transform: translateY(28px) scale(0.975);
    filter: blur(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes eautcCtaPulse {
  0%, 100% {
    box-shadow: 0 14px 28px rgba(216, 255, 61, 0.16);
    transform: translateY(0);
  }
  45% {
    box-shadow: 0 0 0 6px rgba(216, 255, 61, 0.11), 0 22px 44px rgba(216, 255, 61, 0.28);
    transform: translateY(-1px);
  }
}

@keyframes eautcSparkFloat {
  0%, 100% {
    opacity: 0;
    transform: translate3d(0, 16px, 0) rotate(45deg) scale(0.72);
  }
  18%, 72% {
    opacity: 0.58;
  }
  50% {
    transform: translate3d(18px, -18px, 0) rotate(45deg) scale(1);
  }
}

.eautc-reveal {
  opacity: 1;
  transform: none;
  transition: none;
  transition-delay: 0ms;
}

.eautc-reveal.is-visible {
  opacity: 1;
  transform: none;
}

.eautc-v2-feature-grid article.eautc-reveal,
.eautc-v2-step-grid article.eautc-reveal,
.eautc-v2-faq-grid article.eautc-reveal {
  transform: none;
}

.eautc-v2-feature-grid article.eautc-reveal.is-visible,
.eautc-v2-step-grid article.eautc-reveal.is-visible,
.eautc-v2-faq-grid article.eautc-reveal.is-visible {
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .eautc-v2-home:not(.eautc-v2-flow-active) .eautc-v2-live-pill,
  .eautc-v2-home:not(.eautc-v2-flow-active) .eautc-v2-hero .title,
  .eautc-v2-home:not(.eautc-v2-flow-active) .eautc-v2-hero .subtitle,
  .eautc-v2-home:not(.eautc-v2-flow-active) .eautc-v2-hero-actions,
  .eautc-v2-home:not(.eautc-v2-flow-active) .eautc-v2-metric-row,
  .eautc-v2-home:not(.eautc-v2-flow-active) .eautc-v2-order-card,
  .eautc-v2-primary-link,
  .eautc-v2-quantity-actions .btn-primary,
  .eautc-v2-spark,
  .eautc-price-loading-overlay::after,
  .eautc-price-loading-overlay__bar span {
    animation: none !important;
  }

  .eautc-reveal {
    opacity: 1;
    transform: none !important;
    transition: none !important;
  }
}

/* Order Status Header Container */
.order-status-header-container .sidebar-title {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  margin: 0 !important;
}

.order-status-header-container .order-status-content {
  padding: 0 !important;
  margin-top: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.order-status-header-container .sidebar-item {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 16px !important;
  width: 100% !important;
  gap: 0 !important;
}

.order-status-header-container .status-badge-wrapper {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
}

/* Standardize spacing between all containers on completion page */
#progress-section .progress-container,
#progress-section .status-timeline,
#progress-section .order-notice,
#progress-section .proof-images-container,
#progress-section .order-actions,
#progress-section .error-notice,
#progress-section .sidebar-card {
  margin-bottom: 16px;
}

/* Remove margin from last items */
#progress-section .status-main > *:last-child,
#progress-section .status-sidebar > *:last-child {
  margin-bottom: 0;
}

#progress-section .status-sidebar > .sidebar-card {
  margin-bottom: 0;
}

#progress-section #instagram-ad-box {
  flex: 0 0 auto !important;
  min-height: 0 !important;
}

#progress-section #instagram-ad-content {
  flex: 0 0 auto !important;
  height: auto !important;
  min-height: 0 !important;
  aspect-ratio: 1 / 1;
}

#progress-section #instagram-ad-inner,
#progress-section .completion-instagram-post-link {
  height: 100%;
  min-height: 0 !important;
}

/* Align delivery progress bottom with order details bottom */
#progress-section .status-grid {
  align-items: start;
}

#progress-section .progress-container {
  min-height: fit-content;
}

/* Hide old hero sections when v2 is active */
#quantity-section,
#platform-section:not(.eautc-v2-order-card),
.platform-section:not(.eautc-v2-order-card),
#features-section {
  display: none !important;
}

/* Support contact chooser */
body #contact-modal {
  align-items: flex-start;
}

body #contact-modal .modal-content {
  width: min(560px, calc(100vw - 28px));
  max-width: 560px;
  margin: 80px auto 16px;
  padding: 22px;
  transition: width 0.22s ease;
}

body #contact-modal.easpc-support-modal--email .modal-content {
  width: min(720px, calc(100vw - 28px));
  max-width: 720px;
}

.easpc-support-modal-subtitle {
  margin: -4px 0 16px;
  color: rgba(235, 241, 255, 0.72);
  font-size: 14px;
  line-height: 1.45;
}

.easpc-support-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 14px;
}

.easpc-support-tab {
  min-height: 40px;
  padding: 0 10px;
  color: #f7f8fb;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.easpc-support-tab:hover,
.easpc-support-tab:focus-visible {
  border-color: rgba(216, 255, 61, 0.55);
}

.easpc-support-tab:focus-visible {
  outline: 2px solid rgba(216, 255, 61, 0.48);
  outline-offset: 2px;
}

.easpc-support-tab.is-active {
  color: #111507;
  background: #d8ff3d;
  border-color: #d8ff3d;
}

.easpc-support-panel.is-hidden {
  display: none !important;
}

.easpc-support-option {
  display: grid;
  gap: 10px;
  padding: 18px;
  background: rgba(7, 8, 11, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
}

.easpc-support-option h3 {
  margin: 0;
  color: #f7f8fb;
  font-family: "Rajdhani", "Inter", system-ui, sans-serif;
  font-size: 25px;
  font-weight: 700;
  line-height: 1;
}

.easpc-support-option p {
  margin: 0;
  color: rgba(235, 241, 255, 0.72);
  font-size: 14px;
  line-height: 1.5;
}

.easpc-support-soon {
  display: inline-flex;
  width: fit-content;
  padding: 7px 10px;
  color: #111507 !important;
  background: #d8ff3d;
  border-radius: 8px;
  font-weight: 900;
}

.easpc-support-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 40px;
  padding: 0 16px;
  color: #111507 !important;
  background: #d8ff3d;
  border: 1px solid #d8ff3d;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

#support-panel-email #contact-form {
  margin-top: 0;
}

#support-panel-email .actions {
  display: flex;
  justify-content: flex-end;
}

.contact-honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

@media (max-width: 560px) {
  .easpc-support-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body #contact-modal .modal-content {
    margin-top: 64px;
    padding: 18px;
  }

  .easpc-support-option {
    padding: 16px;
  }
}

