/**
 * EAFCC Site-Specific Styles
 * Consolidated from eafcc-base.css, eafcc.css, and eafcc-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;
}

/* 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 !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;
}


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

:root {
  --eafcc-brand: #3b82f6;   /* primary blue */
  --eafcc-accent: #8b5cf6;  /* purple accent */
}

/* Header and brand */
.site-header {
  border-bottom: 2px solid #00ff88;
}

/* 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(--eafcc-brand);
  border-color: var(--eafcc-brand);
}
.btn.btn-primary:hover,
.primary-btn:hover {
  filter: brightness(0.95);
}

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

/* Hero call-to-action - Modern Design Option 1: Elegant Banner */
.platform-callout {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 40px;
  margin: 24px auto 0;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(0, 255, 136, 0.15), rgba(0, 255, 136, 0.05));
  color: #00ff88;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 1rem;
  font-weight: 700;
  border: 2px solid #00ff88;
  box-shadow: 
    0 0 20px rgba(0, 255, 136, 0.3),
    inset 0 0 20px rgba(0, 255, 136, 0.1);
  transition: all 0.3s ease;
  overflow: hidden;
}

.platform-callout::before {
  content: "🎮";
  font-size: 1.2rem;
  animation: pulse 2s ease-in-out infinite;
}

.platform-callout::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.2), transparent);
  animation: shimmer 3s infinite;
}

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

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

.platform-callout:hover {
  transform: translateY(-2px);
  box-shadow: 
    0 0 30px rgba(0, 255, 136, 0.5),
    inset 0 0 30px rgba(0, 255, 136, 0.15);
  border-color: #00ffaa;
}

@media (max-width: 600px) {
  .platform-callout {
    width: calc(100% - 40px);
    max-width: 400px;
    font-size: 0.85rem;
    padding: 14px 24px;
    gap: 8px;
  }
  
  .platform-callout::before {
    font-size: 1rem;
  }
}

/* Sections */
.section-title {
  color: var(--eafcc-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(--eafcc-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(--eafcc-brand);
  background: rgba(59, 130, 246, 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,
  .footer-branding-row .partner-column-left,
  .footer-branding-row .partner-column-right {
    align-items: center;
    text-align: center;
  }

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

  /* Compact, visible header on mobile (match FCUTSTORE) */
  .site-header {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    min-height: 60px !important;
    height: 60px !important;
    padding: 10px 12px !important;
    gap: 10px !important;
    flex-wrap: nowrap !important;
  }

  .site-header .header-left {
    position: static !important;
    width: auto !important;
    flex: 1 1 auto !important;
    justify-content: flex-start !important;
    align-items: center !important;
    gap: 8px !important;
    min-width: 0 !important;
    display: flex !important;
    visibility: visible !important;
  }

  .site-header .header-actions {
    position: static !important;
    margin: 0 !important;
    width: auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 8px !important;
    flex: 0 0 auto !important;
  }

  /* Un-hide header action buttons on mobile */
  .site-header .header-actions button,
  .site-header .header-actions .lang-switch {
    display: flex !important;
    visibility: visible !important;
  }

  /* Keep only the menu button visible on the right */
  .site-header .header-actions button:not(#mobile-menu-btn) {
    display: none !important;
    visibility: hidden !important;
  }

  /* Compact tab sizing to match other sites */
  .site-header .header-actions button,
  .site-header .header-left .link-btn,
  .site-header .header-left .live-prices-indicator {
    height: 34px !important;
    padding: 6px 10px !important;
    font-size: 0.85rem !important;
    border-radius: 8px !important;
    align-items: center !important;
    justify-content: center !important;
  }

  /* Square icon buttons stay square */
  .site-header .header-left .link-btn,
  .site-header .header-left .live-prices-indicator {
    width: 34px !important;
    padding: 0 !important;
  }

  .site-header .mobile-menu-btn {
    display: flex !important;
    visibility: visible !important;
    position: static !important;
    transform: none !important;
    flex: 0 0 auto !important;
    width: 34px !important;
    height: 34px !important;
    padding: 0 !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 8px !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 */
  .checkout-section,
  .modal-content {
    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;
  }

  /* Scale down Black Friday badge */
  .bf-floating-badge {
    transform: scale(0.85);
    bottom: 10px;
    left: 10px;
  }
}

/* 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 (EAFCC) */
.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 */
  background-color: transparent !important;
  background:
    linear-gradient(var(--card), var(--card)) padding-box,
    linear-gradient(135deg, #3b82f6, #8b5cf6) border-box !important;
  border: 2px solid transparent !important;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35) !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;
  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(--eafcc-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(--eafcc-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(--eafcc-brand);
}

.premium-stat-card .stat-number {
  font-size: 48px;
  font-weight: 800;
  color: var(--eafcc-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(--eafcc-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: #00ff88;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 800;
  color: #0b1727;
  margin: 0 auto 15px;
  box-shadow: 0 4px 15px rgba(0, 255, 136, 0.35);
  border: 2px solid rgba(255, 255, 255, 0.25);
}

.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(--eafcc-brand), var(--eafcc-accent));
  margin-bottom: 60px;
}

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

.comparison-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  color: var(--eafcc-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(--eafcc-brand);
  border-right: 2px solid var(--eafcc-brand);
}

.table-header-badge {
  background: var(--eafcc-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(--eafcc-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(--eafcc-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;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.premium-seo-content h3 {
  font-size: 22px;
  font-weight: 600;
  color: var(--eafcc-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: 0 auto !important;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

/* Ensure list is centered on page */
body .seo-content-fullwidth .seo-text-block .premium-seo-content ul,
body:not([data-theme="light"]) .seo-content-fullwidth .seo-text-block .premium-seo-content ul,
[data-theme="light"] .seo-content-fullwidth .seo-text-block .premium-seo-content ul {
  list-style: none !important;
  padding-left: 0 !important;
  max-width: 700px !important;
  margin: 0 auto !important;
  text-align: center !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  width: 100% !important;
}

/* 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;
  width: auto !important;
  max-width: 100% !important;
  margin-left: auto !important;
  margin-right: auto !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(--eafcc-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;
  }

  .timeline-connector {
    width: 3px;
    height: 40px;
    margin: 10px auto;
  }

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

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

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

  .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;
  }
}

/* Enhanced Footer Trust Signals - Slimmed Down */
.footer-trust-signals.enhanced {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  padding: 30px 20px;
  max-width: 800px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.footer-trust-signals.enhanced .trust-card {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.05));
  border: 2px solid rgba(59, 130, 246, 0.3);
  border-radius: 10px;
  padding: 16px 20px;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 150px;
  height: 120px;
  flex-shrink: 0;
}

.footer-trust-signals.enhanced .trust-card:hover {
  transform: translateY(-3px);
  border-color: var(--eafcc-brand);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.2);
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(139, 92, 246, 0.1));
}

.footer-trust-signals.enhanced .trust-card.featured {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(139, 92, 246, 0.1));
  border-color: var(--eafcc-brand);
  border-width: 2px;
  width: 150px;
  height: 120px;
}

.footer-trust-signals.enhanced .trust-card .trust-stars {
  color: #ffc107;
  font-size: 18px;
  line-height: 1;
  letter-spacing: 1.5px;
  margin-bottom: 2px;
}

.footer-trust-signals.enhanced .trust-card .trust-rating {
  font-size: 20px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 2px;
}

.footer-trust-signals.enhanced .trust-card .trust-icon {
  font-size: 28px;
  line-height: 1;
  margin-bottom: 4px;
  filter: drop-shadow(0 2px 4px rgba(59, 130, 246, 0.3));
}

.footer-trust-signals.enhanced .trust-card .trust-number {
  font-size: 20px;
  font-weight: 800;
  color: var(--eafcc-brand);
  line-height: 1.2;
  margin-bottom: 2px;
}

.footer-trust-signals.enhanced .trust-card .trust-label {
  font-size: 13px;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.2;
}

@media screen and (max-width: 768px) {
  .footer-trust-signals.enhanced {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    padding: 20px 10px;
    max-width: 100%;
  }

  .footer-trust-signals.enhanced .trust-card {
    padding: 10px 6px;
    gap: 4px;
    width: auto;
    height: auto;
    min-height: 85px;
  }

  .footer-trust-signals.enhanced .trust-card .trust-stars {
    font-size: 12px;
    letter-spacing: 0;
  }

  .footer-trust-signals.enhanced .trust-card .trust-rating {
    font-size: 14px;
  }

  .footer-trust-signals.enhanced .trust-card .trust-icon {
    font-size: 20px;
  }

  .footer-trust-signals.enhanced .trust-card .trust-number {
    font-size: 14px;
  }

  .footer-trust-signals.enhanced .trust-card .trust-label {
    font-size: 10px;
  }
}

@media screen and (max-width: 380px) {
  .footer-trust-signals.enhanced {
    gap: 6px;
    padding: 15px 8px;
  }

  .footer-trust-signals.enhanced .trust-card {
    padding: 8px 4px;
    min-height: 75px;
  }

  .footer-trust-signals.enhanced .trust-card .trust-stars {
    font-size: 10px;
  }

  .footer-trust-signals.enhanced .trust-card .trust-rating {
    font-size: 12px;
  }

  .footer-trust-signals.enhanced .trust-card .trust-icon {
    font-size: 18px;
  }

  .footer-trust-signals.enhanced .trust-card .trust-number {
    font-size: 12px;
  }

  .footer-trust-signals.enhanced .trust-card .trust-label {
    font-size: 9px;
  }
}


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

.preset-btn {
  background: rgba(59, 130, 246, 0.05);
  color: #ffffff;
  border: 2px solid rgba(59, 130, 246, 0.3);
  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(59, 130, 246, 0.05);
  position: relative;
}

.preset-btn:hover {
  background: rgba(59, 130, 246, 0.1);
  border-color: rgba(59, 130, 246, 0.6);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3),
              0 0 25px rgba(59, 130, 246, 0.2);
  color: #3b82f6;
}

.preset-btn.active {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(139, 92, 246, 0.2));
  color: #3b82f6;
  border-color: #3b82f6;
  box-shadow: 0 0 25px rgba(59, 130, 246, 0.4),
              inset 0 0 20px rgba(59, 130, 246, 0.1);
  text-shadow: 0 0 10px rgba(59, 130, 246, 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;
  }
}

/* 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;
  }
}
