 /* ========================================
   DIVASPIN CASINO - PREMIUM CSS
   ======================================== */

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

:root {
  /* Colors */
  --primary-purple: #1a1528;
  --secondary-purple: #2c2645;
  --accent-purple: #8b5cf6;
  --deep-purple: #3a3154;
  
  --primary-gold: #d4a574;
  --light-gold: #e6b885;
  --dark-gold: #b08d5a;
  
  --success-green: #22c55e;
  --green-hover: #16a34a;
  
  --text-primary: #ffffff;
  --text-secondary: #b8b8c8;
  --text-muted: #8b8b9a;
  
  --border-color: rgba(212,165,116,0.2);
  
  /* Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 100px;
  
  /* Transitions */
  --transition: all 0.3s ease;
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.2);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.3);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.4);
  --shadow-xl: 0 12px 48px rgba(0,0,0,0.5);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: 
    radial-gradient(ellipse at top, rgba(139,92,246,0.15), transparent 50%),
    radial-gradient(ellipse at bottom, rgba(212,165,116,0.1), transparent 50%),
    #1a1528;
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

a {
  text-decoration: none;
  color: inherit;
}

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

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

/* ========================================
   HEADER
   ======================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(44,38,69,0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  height: 70px;
  display: flex;
  align-items: center;
  box-shadow: 
    0 2px 16px rgba(0,0,0,0.3),
    0 0 60px rgba(139,92,246,0.1);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
  height: 100%;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 30px;
  height: 24px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  position: relative;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background: var(--primary-gold);
  border-radius: 2px;
  transition: var(--transition);
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.menu-toggle:hover span {
  background: var(--light-gold);
  box-shadow: 0 0 12px rgba(212,165,116,0.6);
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.logo img {
  filter: drop-shadow(0 2px 8px rgba(212,165,116,0.4));
  transition: var(--transition);
}

.logo:hover img {
  filter: drop-shadow(0 4px 16px rgba(212,165,116,0.6));
  transform: scale(1.05);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.header-func__search-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.header-func__search-icon {
  position: absolute;
  left: 1rem;
  pointer-events: none;
  opacity: 0.7;
}

.header-func__search-input {
  width: 300px;
  padding: 0.75rem 1rem 0.75rem 3rem;
  background: rgba(139,92,246,0.1);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-full);
  color: var(--text-primary);
  font-size: 0.9rem;
  transition: var(--transition);
}

.header-func__search-input:focus {
  outline: none;
  border-color: var(--accent-purple);
  background: rgba(139,92,246,0.15);
  box-shadow: 0 0 20px rgba(139,92,246,0.3);
}

.header-func__search-input::placeholder {
  color: var(--text-muted);
}

.header-func__buttons-container {
  display: flex;
  gap: 0.75rem;
}

.header-func__btn-inner {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.header-func__btn-inner::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.header-func__btn-inner:hover::before {
  width: 300px;
  height: 300px;
}

.header-func__btn-inner--login {
  background: transparent;
  color: var(--primary-gold);
  border: 2px solid var(--primary-gold);
}

.header-func__btn-inner--login:hover {
  background: rgba(212,165,116,0.15);
  border-color: var(--light-gold);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(212,165,116,0.3);
}

.header-func__btn-inner--register {
  background: linear-gradient(135deg, var(--success-green), var(--green-hover));
  color: #ffffff;
  border: 2px solid transparent;
  box-shadow: 
    0 6px 20px rgba(34,197,94,0.4),
    inset 0 1px 0 rgba(255,255,255,0.2);
}

.header-func__btn-inner--register:hover {
  transform: translateY(-2px);
  box-shadow: 
    0 8px 25px rgba(34,197,94,0.6),
    inset 0 1px 0 rgba(255,255,255,0.3);
}

/* ========================================
   SIDEBAR
   ======================================== */
.sidebar {
  position: fixed;
  left: 0;
  top: 70px;
  width: 280px;
  height: calc(100vh - 70px);
  background: rgba(44,38,69,0.98);
  backdrop-filter: blur(10px);
  border-right: 1px solid var(--border-color);
  overflow-y: auto;
  overflow-x: hidden;
  transition: transform 0.3s ease;
  z-index: 900;
  display: flex;
  flex-direction: column;
  box-shadow: 
    4px 0 16px rgba(0,0,0,0.3),
    inset -1px 0 0 rgba(212,165,116,0.1);
  padding: 20px 16px;
}

.sidebar::-webkit-scrollbar {
  width: 6px;
}

.sidebar::-webkit-scrollbar-track {
  background: rgba(139,92,246,0.05);
}

.sidebar::-webkit-scrollbar-thumb {
  background: var(--primary-gold);
  border-radius: 3px;
  box-shadow: 0 0 6px rgba(212,165,116,0.5);
}

.sidebar::-webkit-scrollbar-thumb:hover {
  background: var(--light-gold);
}

.nav-section {
  padding: 8px 0;
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  margin: 4px 8px;
  color: #cdd6e2;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.nav-item::before {
  content: '';
  position: absolute;
  left: -100%;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212,165,116,0.1), transparent);
  transition: left 0.5s;
}

.nav-item:hover::before {
  left: 100%;
}

.nav-item:hover {
  background: rgba(139,92,246,0.15);
  color: #eaf1fb;
  border-color: rgba(212,165,116,0.3);
  box-shadow: 0 4px 12px rgba(139,92,246,0.2);
}

.nav-item.splash {
  background: linear-gradient(135deg, rgba(212,165,116,0.2), rgba(139,92,246,0.1));
  border-color: var(--primary-gold);
  color: var(--primary-gold);
  box-shadow: 
    0 4px 12px rgba(212,165,116,0.3),
    inset 0 1px 0 rgba(255,255,255,0.1);
}

.nav-item.splash:hover {
  background: linear-gradient(135deg, rgba(212,165,116,0.3), rgba(139,92,246,0.2));
  box-shadow: 0 6px 16px rgba(212,165,116,0.4);
}

.nav-item-jackpot,
.nav-item--promo,
.nav-item--vip {
  position: relative;
}

.jackpot-badge,
.promo-badge {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  padding: 2px 6px;
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: #fff;
  font-size: 9px;
  border-radius: 4px;
  font-weight: 800;
  animation: pulse 2s ease-in-out infinite;
}

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

.nav-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.nav-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-color), transparent);
  margin: 16px 12px;
}

.sidebar-footer {
  border-top: 1px solid var(--border-color);
  padding: 1.5rem 0 0;
  margin-top: auto;
}

.language-switcher {
  position: relative;
}

.current-lang {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: rgba(139,92,246,0.1);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  cursor: pointer;
  transition: var(--transition);
  width: 100%;
}

.current-lang:hover {
  background: rgba(139,92,246,0.15);
  border-color: var(--accent-purple);
  box-shadow: 0 4px 12px rgba(139,92,246,0.2);
}

.lang-flag {
  font-size: 1.5rem;
}

.lang-name {
  flex: 1;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.dropdown-arrow {
  width: 12px;
  height: 12px;
  fill: var(--primary-gold);
}

.sidebar-info {
  margin-top: 1rem;
  padding: 1rem;
  background: rgba(139,92,246,0.05);
  border-radius: 8px;
  border: 1px solid rgba(212,165,116,0.1);
}

.responsible-gaming,
.license-info {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.responsible-gaming a,
.license-info a {
  color: var(--primary-gold);
  text-decoration: underline;
}

.sidebar-overlay {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(4px);
  z-index: 899;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.sidebar-overlay.active {
  opacity: 1;
}

/* ========================================
   MAIN CONTENT
   ======================================== */
.app-wrapper {
  display: flex;
  margin-top: 70px;
  min-height: calc(100vh - 70px);
}

.main-content {
  flex: 1;
  margin-left: 280px;
  padding: 0;
  transition: margin-left 0.3s ease;
  min-width: 0;
}

.content-wrapper {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 5px;
}

/* ========================================
   HERO BANNER - ULTIMATE VERSION
   ======================================== */
.hero-banner {
  position: relative;
  width: 100%;
  max-width: 1280px;
  height: 420px;
  overflow: hidden;
  border-radius: 20px;
  margin: 1.5rem auto;
  background: 
    linear-gradient(135deg, 
      rgba(76, 63, 115, 0.9) 0%,
      rgba(139, 92, 246, 0.7) 50%,
      rgba(212, 165, 116, 0.6) 100%
    ),
    radial-gradient(circle at 80% 50%, rgba(255, 182, 193, 0.3), transparent 60%),
    radial-gradient(circle at 20% 80%, rgba(139, 92, 246, 0.4), transparent 50%);
  box-shadow: 
    0 0 0 4px var(--primary-gold),
    0 0 20px rgba(212,165,116,0.6),
    0 8px 32px rgba(0,0,0,0.4),
    inset 0 2px 0 rgba(255,255,255,0.1);
}

.hero-banner::before {
  content: '';
  position: absolute;
  inset: -4px;
  background: linear-gradient(90deg, 
    var(--primary-gold) 0%, 
    var(--light-gold) 25%,
    var(--primary-gold) 50%,
    var(--light-gold) 75%,
    var(--primary-gold) 100%
  );
  border-radius: 20px;
  z-index: -1;
  animation: border-flow 3s linear infinite;
  background-size: 200% 100%;
}

.hero-banner::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../img/hero-pattern.webp'); 
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.5; 
  pointer-events: none;
  z-index: 1;
}

@keyframes border-flow {
  0% { background-position: 0% 0%; }
  100% { background-position: 200% 0%; }
}

.hero-banner-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.welcome-badge {
  display: inline-flex;
  padding: 0.6rem 2.5rem;
  background: linear-gradient(135deg, rgba(212,165,116,0.25), rgba(180,141,90,0.3));
  border: 2.5px solid var(--primary-gold);
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--primary-gold);
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin-bottom: 1.2rem;
  clip-path: polygon(10% 0%, 90% 0%, 100% 50%, 90% 100%, 10% 100%, 0% 50%);
  box-shadow: 
    0 0 20px rgba(212,165,116,0.4),
    inset 0 1px 0 rgba(255,255,255,0.2);
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
  animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
  0%, 100% {
    box-shadow: 
      0 0 20px rgba(212,165,116,0.4),
      inset 0 1px 0 rgba(255,255,255,0.2);
  }
  50% {
    box-shadow: 
      0 0 30px rgba(212,165,116,0.6),
      inset 0 1px 0 rgba(255,255,255,0.3);
  }
}

.hero-offer-title {
  font-size: 3.2rem;
  font-weight: 900;
  font-family: 'Cinzel', serif;
  line-height: 1.1;
  color: #ffffff;
  text-shadow: 
    0 0 30px rgba(212,165,116,0.8),
    0 0 60px rgba(139,92,246,0.5),
    3px 3px 8px rgba(0,0,0,0.7),
    -1px -1px 2px rgba(255,255,255,0.3);
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
}

.hero-offer-subtitle {
  font-size: 1.8rem;
  font-weight: 800;
  color: #ffffff;
  text-shadow: 
    0 0 20px rgba(212,165,116,0.8),
    2px 2px 6px rgba(0,0,0,0.6);
  margin-bottom: 1.8rem;
  letter-spacing: 3px;
}

.join-now-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 3.2rem;
  background: linear-gradient(180deg, #2dd36f 0%, #22c55e 50%, #16a34a 100%);
  color: #ffffff;
  font-size: 1.3rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 3px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  clip-path: polygon(8% 0%, 92% 0%, 100% 50%, 92% 100%, 8% 100%, 0% 50%);
  box-shadow: 
    0 0 0 3px var(--primary-gold),
    0 0 30px rgba(34,197,94,0.8),
    0 8px 25px rgba(0,0,0,0.5),
    inset 0 2px 0 rgba(255,255,255,0.3),
    inset 0 -2px 8px rgba(0,0,0,0.2);
  text-shadow: 
    0 2px 4px rgba(0,0,0,0.5),
    0 0 10px rgba(255,255,255,0.3);
  position: relative;
  overflow: hidden;
}

.join-now-btn::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
  transform: rotate(45deg);
  animation: shine 3s ease-in-out infinite;
}

@keyframes shine {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }
  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}

.join-now-btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 
    0 0 0 3px var(--light-gold),
    0 0 40px rgba(34,197,94,1),
    0 12px 35px rgba(0,0,0,0.6);
  background: linear-gradient(180deg, #3be57f 0%, #2dd36f 50%, #22c55e 100%);
}

.join-now-btn:active {
  transform: translateY(-1px) scale(1.01);
}

.trust-badges {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: rgba(0,0,0,0.3);
  border-radius: 12px;
  border: 1px solid rgba(212,165,116,0.3);
  backdrop-filter: blur(10px);
  transition: var(--transition);
}

.trust-item:hover {
  background: rgba(212,165,116,0.1);
  border-color: var(--primary-gold);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(212,165,116,0.3);
}

.trust-icon {
  font-size: 2rem;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.5));
}

.trust-text {
  font-size: 0.75rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

/* ========================================
   STATS BAR
   ======================================== */
.stats-section {
  padding: 2rem 0;
  margin-bottom: 2rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

.stat-card {
  text-align: center;
  padding: 2rem;
  background: rgba(44,38,69,0.6);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212,165,116,0.1), transparent);
  transition: left 0.5s;
}

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

.stat-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-purple);
  box-shadow: 
    0 8px 24px rgba(139,92,246,0.3),
    inset 0 1px 0 rgba(212,165,116,0.2);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--primary-gold);
  display: block;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 8px rgba(212,165,116,0.4);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

/* ========================================
   CATEGORY NAVIGATION
   ======================================== */
.category-nav {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  margin-bottom: 24px;
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--primary-gold) rgba(139,92,246,0.1);
}

.category-nav::-webkit-scrollbar {
  height: 6px;
}

.category-nav::-webkit-scrollbar-track {
  background: rgba(139,92,246,0.1);
  border-radius: 3px;
}

.category-nav::-webkit-scrollbar-thumb {
  background: var(--primary-gold);
  border-radius: 3px;
  box-shadow: 0 0 6px rgba(212,165,116,0.5);
}

.category-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1.8rem;
  background: linear-gradient(135deg, rgba(139,92,246,0.25), rgba(76,63,115,0.4));
  border: 2px solid rgba(212,165,116,0.5);
  border-radius: 50px;
  color: var(--text-primary);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  box-shadow: 
    0 2px 8px rgba(0,0,0,0.3),
    inset 0 1px 0 rgba(255,255,255,0.1);
}

.category-btn:hover {
  background: linear-gradient(135deg, rgba(139,92,246,0.4), rgba(76,63,115,0.6));
  border-color: var(--primary-gold);
  transform: translateY(-2px);
  box-shadow: 
    0 4px 16px rgba(212,165,116,0.4),
    inset 0 1px 0 rgba(255,255,255,0.2);
}

.category-icon {
  font-size: 1.4rem;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

/* ========================================
   SECTIONS COMMON
   ======================================== */
.features-section,
.games-section,
.promotions-section,
.providers-section,
.winners-section,
.payment-section,
.testimonials-section,
.app-section,
.seo-content {
  padding: 3rem 0;
  margin-bottom: 2rem;
}

.section-header-center,
.section-header-flex {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
}

.section-title-main {
  font-size: 36px;
  font-weight: 800;
  font-family: 'Cinzel', serif;
  color: var(--primary-gold);
  margin-bottom: 0.75rem;
  text-shadow: 
    0 2px 8px rgba(212,165,116,0.4),
    0 0 30px rgba(212,165,116,0.2);
  background: linear-gradient(135deg, var(--primary-gold), var(--light-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle-main {
  font-size: 16px;
  color: var(--text-secondary);
}

.see-all-link {
  color: var(--primary-gold);
  font-weight: 700;
  font-size: 14px;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.see-all-link:hover {
  color: var(--light-gold);
  transform: translateX(5px);
}

/* ========================================
   FEATURES SECTION
   ======================================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.feature-card {
  background: linear-gradient(135deg, rgba(76,63,115,0.3), rgba(44,38,69,0.6));
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  transition: var(--transition);
  box-shadow: 
    0 4px 16px rgba(0,0,0,0.2),
    inset 0 1px 0 rgba(212,165,116,0.1);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(212,165,116,0.1), transparent 70%);
  opacity: 0;
  transition: opacity 0.5s;
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-gold);
  box-shadow: 
    0 8px 24px rgba(212,165,116,0.3),
    0 0 40px rgba(139,92,246,0.2),
    inset 0 1px 0 rgba(212,165,116,0.2);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-gold);
  margin-bottom: 0.75rem;
}

.feature-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ========================================
   GAMES SECTION
   ======================================== */
.games-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.game-card {
  background: linear-gradient(135deg, rgba(76,63,115,0.4), rgba(44,38,69,0.7));
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  cursor: pointer;
}

.game-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-gold);
  box-shadow: 
    0 12px 32px rgba(212,165,116,0.4),
    0 0 40px rgba(139,92,246,0.3);
}

.game-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.game-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.game-icon-large {
  font-size: 4rem;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.5));
}

.game-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 6px 16px;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  border-radius: 20px;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

.game-badge--hot {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  animation: pulse 2s ease-in-out infinite;
}

.game-badge--live {
  background: linear-gradient(135deg, #10b981, #059669);
}

.game-badge--new {
  background: linear-gradient(135deg, var(--accent-purple), #7c3aed);
}

.game-info {
  padding: 1.5rem;
}

.game-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.game-provider {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.game-stats {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.game-btn {
  display: block;
  width: 100%;
  padding: 0.75rem;
  background: linear-gradient(135deg, var(--success-green), var(--green-hover));
  color: #fff;
  text-align: center;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(34,197,94,0.3);
}

.game-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(34,197,94,0.5);
}

/* ========================================
   PROMOTIONS SECTION
   ======================================== */
.promotions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.promo-card {
  background: linear-gradient(135deg, rgba(139,92,246,0.2), rgba(76,63,115,0.4));
  border: 2px solid var(--border-color);
  border-radius: 20px;
  padding: 2.5rem;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  position: relative;
  overflow: hidden;
}

.promo-card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, var(--primary-gold), var(--accent-purple), var(--primary-gold));
  background-size: 200% 200%;
  border-radius: 20px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.5s;
  animation: gradient-rotate 3s ease infinite;
}

@keyframes gradient-rotate {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.promo-card:hover::before {
  opacity: 1;
}

.promo-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(212,165,116,0.4);
}

.promo-icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.4));
}

.promo-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-gold);
  margin-bottom: 1rem;
  font-family: 'Cinzel', serif;
}

.promo-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.promo-btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  background: linear-gradient(135deg, var(--accent-purple), #7c3aed);
  color: #fff;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(139,92,246,0.4);
}

.promo-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(139,92,246,0.5);
}

/* ========================================
   PROVIDERS SECTION
   ======================================== */
.providers-section {

}

.providers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.provider-card {
  background: rgba(44,38,69,0.6);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 3/2;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.provider-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-purple);
  box-shadow: 
    0 8px 24px rgba(139,92,246,0.3),
    0 0 30px rgba(212,165,116,0.2);
}

.provider-placeholder {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-gold);
  text-align: center;
  text-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

/* ========================================
   WINNERS SECTION
   ======================================== */
.winners-section {
  background: linear-gradient(135deg, rgba(139,92,246,0.1), rgba(212,165,116,0.05));
}

.winners-ticker {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.winner-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(44,38,69,0.6);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.winner-item:hover {
  transform: translateY(-3px);
  border-color: var(--accent-purple);
  box-shadow: 
    0 8px 20px rgba(139,92,246,0.3),
    0 0 30px rgba(212,165,116,0.2);
}

.winner-avatar {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent-purple), #7c3aed);
  border-radius: 50%;
  font-size: 1.5rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(139,92,246,0.5);
}

.winner-info {
  flex: 1;
}

.winner-name {
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.winner-game {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.winner-amount {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--primary-gold);
  flex-shrink: 0;
  text-shadow: 0 2px 6px rgba(212,165,116,0.4);
}

.winners-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding: 3rem;
  background: rgba(44,38,69,0.6);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(10px);
}

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

.stat-value {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--primary-gold);
  display: block;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 8px rgba(212,165,116,0.5);
}

/* ========================================
   PAYMENT SECTION
   ======================================== */
.payment-categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

.payment-category {
  background: rgba(44,38,69,0.6);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.payment-category:hover {
  border-color: var(--accent-purple);
  box-shadow: 
    0 8px 24px rgba(139,92,246,0.3),
    0 0 30px rgba(212,165,116,0.2);
}

.payment-category-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.payment-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}

.payment-category-header h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-gold);
  margin-bottom: 0.5rem;
}

.payment-time {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: rgba(139,92,246,0.2);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  color: var(--accent-purple);
  font-weight: 700;
  text-transform: uppercase;
  border: 1px solid rgba(139,92,246,0.3);
}

.payment-methods {
  display: grid;
  gap: 0.75rem;
}

.payment-method {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: rgba(26,21,40,0.6);
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: var(--transition);
  border: 1px solid transparent;
}

.payment-method:hover {
  background: rgba(139,92,246,0.1);
  color: var(--text-primary);
  border-color: rgba(139,92,246,0.3);
  transform: translateX(5px);
}

.method-icon {
  font-size: 1.25rem;
}

.payment-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

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

.feature-icon-lg {
  font-size: 3rem;
  margin-bottom: 1rem;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}

.payment-feature h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--primary-gold);
  margin-bottom: 0.5rem;
}

.payment-feature p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial-card {
  background: rgba(44,38,69,0.6);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 20px;
  font-size: 120px;
  color: rgba(212,165,116,0.1);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-purple);
  box-shadow: 
    0 12px 32px rgba(139,92,246,0.3),
    0 0 40px rgba(212,165,116,0.2);
}

.testimonial-rating {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.testimonial-text {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-style: italic;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
  z-index: 1;
}

.author-avatar {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));
  border-radius: 50%;
  font-size: 1.5rem;
  box-shadow: 0 4px 12px rgba(212,165,116,0.4);
}

.author-name {
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.author-location {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ========================================
   MOBILE APP SECTION
   ======================================== */
.app-section {
}

.app-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.app-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(139,92,246,0.2);
  border: 1px solid var(--accent-purple);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
}

.app-title {
  font-size: 2.5rem;
  font-weight: 900;
  font-family: 'Cinzel', serif;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--primary-gold), var(--accent-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.app-description {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.app-features-list {
  display: grid;
  gap: 1rem;
  margin-bottom: 2rem;
  list-style: none;
}

.app-feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.feature-check {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--success-green);
  color: #fff;
  border-radius: 50%;
  font-size: 0.85rem;
  font-weight: 900;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(34,197,94,0.4);
}

.btn-mobile {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, var(--success-green), var(--green-hover));
  color: #fff;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  transition: var(--transition);
  box-shadow: 0 6px 20px rgba(34,197,94,0.4);
}

.btn-mobile:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(34,197,94,0.6);
}

.phone-mockup {
  max-width: 300px;
  margin: 0 auto;
  padding: 1rem;
  background: linear-gradient(135deg, var(--secondary-purple), var(--deep-purple));
  border-radius: 40px;
  box-shadow: 
    0 20px 60px rgba(0,0,0,0.5),
    0 0 40px rgba(139,92,246,0.3);
}

.phone-screen {
  background: var(--primary-purple);
  border-radius: 30px;
  overflow: hidden;
  aspect-ratio: 9/19;
}

.phone-content {
  padding: 2rem 1rem;
}

.mock-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: var(--primary-gold);
}

.mock-games {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.mock-game {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  font-size: 2rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

/* ========================================
   SEO CONTENT
   ======================================== */
.seo-content {
  margin: 3rem 0;
}

.seo-content article {
  background: rgba(44,38,69,0.6);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 3rem;
  backdrop-filter: blur(10px);
}

.seo-content h1, 
.seo-content h2, 
.seo-content h3,
.seo-content h4 {
  color: var(--primary-gold);
  margin-bottom: 1rem;
  font-family: 'Cinzel', serif;
}

.seo-content h1 { 
  font-size: 32px;
  text-shadow: 0 2px 8px rgba(212,165,116,0.3);
}

.seo-content h2 { 
  font-size: 28px;
  margin-top: 2rem;
}

.seo-content h3 { 
  font-size: 24px;
  margin-top: 1.5rem;
}

.seo-content h4 { 
  font-size: 20px;
  margin-top: 1.25rem;
  color: var(--light-gold);
}

.seo-content p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.seo-content ul,
.seo-content ol {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.seo-content li {
  margin-bottom: 0.5rem;
}

.seo-content strong {
  color: var(--primary-gold);
  font-weight: 700;
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
  background: linear-gradient(135deg, rgba(139,92,246,0.3), rgba(76,63,115,0.5));
  border: 2px solid var(--primary-gold);
  border-radius: 24px;
  padding: 4rem 2rem;
  margin: 4rem 0;
  text-align: center;
  box-shadow: 
    0 0 40px rgba(212,165,116,0.3),
    inset 0 2px 0 rgba(255,255,255,0.1);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(212,165,116,0.1), transparent 70%);
  animation: rotate-glow 10s linear infinite;
}

@keyframes rotate-glow {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 900;
  font-family: 'Cinzel', serif;
  color: var(--primary-gold);
  margin-bottom: 1rem;
  text-shadow: 0 2px 8px rgba(212,165,116,0.6);
}

.cta-subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-cta {
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition);
  cursor: pointer;
}

.btn-cta--primary {
  background: linear-gradient(135deg, var(--success-green), var(--green-hover));
  color: #ffffff;
  border: 2px solid transparent;
  box-shadow: 0 8px 24px rgba(34,197,94,0.4);
}

.btn-cta--primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(34,197,94,0.5);
}

.btn-cta--outline {
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.btn-cta--outline:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(255,255,255,0.2);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: linear-gradient(180deg, rgba(44,38,69,0.5), #1a1528);
  border-top: 1px solid var(--border-color);
  padding: 4rem 0 2rem;
  margin-top: 4rem;
  margin-left: 280px;
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-logo {
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 2px 8px rgba(212,165,116,0.3));
}

.footer-desc {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212,165,116,0.1);
  border: 1px solid var(--border-color);
  border-radius: 50%;
  font-size: 20px;
  transition: var(--transition);
}

.social-link:hover {
  background: var(--primary-gold);
  border-color: var(--primary-gold);
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(212,165,116,0.5);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer-column h4 {
  color: var(--primary-gold);
  font-weight: 700;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.footer-column ul {
  list-style: none;
}

.footer-column li {
  margin-bottom: 0.75rem;
}

.footer-column a {
  color: var(--text-secondary);
  font-size: 14px;
  transition: var(--transition);
  display: inline-block;
}

.footer-column a:hover {
  color: var(--primary-gold);
  transform: translateX(5px);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(212,165,116,0.1);
}

.footer-copyright p {
  color: var(--text-secondary);
  font-size: 14px;
  margin-bottom: 0.5rem;
}

.footer-disclaimer {
  color: rgba(184,184,200,0.7);
  font-size: 12px;
  line-height: 1.6;
}

.footer-payment-methods {
  color: var(--text-muted);
  font-size: 0.8rem;
  margin-top: 1rem;
}

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

/* Tablet Portrait & Mobile */
@media (max-width: 992px) {
  .sidebar {
    transform: translateX(-100%);
  }
  
  .sidebar.open {
    transform: translateX(0);
  }
  
  .sidebar-overlay {
    display: block;
  }
  
  .main-content {
    margin-left: 0;
  }

  .footer {
    margin-left: 0;
  }

  .header-func__search-container {
    display: none;
  }
  
  .hero-banner {
    height: 350px;
  }
  
  .hero-offer-title {
    font-size: 2.5rem;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .games-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .promotions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .providers-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .winners-ticker {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .payment-categories {
    grid-template-columns: 1fr;
  }
  
  .payment-features {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .app-content {
    grid-template-columns: 1fr;
  }
}

/* Tablet & Mobile Landscape */
@media (max-width: 768px) {
  .hero-banner {
    height: 350px;
    margin: 1rem;
  }
  
  .hero-offer-title {
    font-size: 2rem;
  }
  
  .hero-offer-subtitle {
    font-size: 1.2rem;
  }
  
  .join-now-btn {
    padding: 0.875rem 2.5rem;
    font-size: 1.1rem;
  }
  
  .trust-badges {
    gap: 1rem;
  }
  
  .header-func__btn-inner {
    padding: 0.6rem 1rem;
    font-size: 0.75rem;
  }
  
  .category-btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.75rem;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

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

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

  .promotions-grid {
    grid-template-columns: 1fr;
  }
  
  .providers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .winners-ticker {
    grid-template-columns: 1fr;
  }
  
  .winners-stats {
    grid-template-columns: 1fr;
    padding: 2rem;
  }
  
  .payment-features {
    grid-template-columns: 1fr;
  }

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

  .footer-top {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }

  .cta-title {
    font-size: 2rem;
  }

  .cta-subtitle {
    font-size: 1rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-cta {
    width: 100%;
    max-width: 300px;
  }

  .seo-content article {
    padding: 2rem;
  }

  .seo-content h1 {
    font-size: 24px;
  }

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

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

/* Mobile */
@media (max-width: 480px) {
  .hero-banner {
    height: 320px;
  }
  
  .welcome-badge {
    padding: 0.5rem 1.5rem;
    font-size: 0.7rem;
  }
  
  .hero-offer-title {
    font-size: 1.8rem;
  }
  
  .hero-offer-subtitle {
    font-size: 1rem;
  }
  
  .join-now-btn {
    padding: 0.75rem 2rem;
    font-size: 0.95rem;
  }
  
  .trust-badges {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
  
  .trust-item {
    padding: 0.5rem;
  }
  
  .logo img {
    max-width: 120px;
  }
  
  .category-nav {
    gap: 0.5rem;
  }
  
  .category-btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.7rem;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }

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

  .section-title-main {
    font-size: 24px;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .feature-icon {
    font-size: 2.5rem;
  }
  
  .payment-icon,
  .promo-icon {
    font-size: 2.5rem;
  }
}
/* ========================================
   FAQ SECTION
   ======================================== */
.faq-section {
  padding: 4rem 0;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: rgba(44,38,69,0.6);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.faq-item:hover {
  border-color: var(--accent-purple);
  box-shadow: 0 4px 16px rgba(139,92,246,0.2);
}

.faq-item.active {
  border-color: var(--primary-gold);
  box-shadow: 
    0 8px 24px rgba(212,165,116,0.3),
    0 0 30px rgba(139,92,246,0.2);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: all 0.3s ease;
  position: relative;
}

.faq-question::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: var(--primary-gold);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.faq-item.active .faq-question::before {
  opacity: 1;
}

.faq-question:hover {
  background: rgba(139,92,246,0.1);
}

.faq-question-text {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-primary);
  padding-right: 2rem;
  line-height: 1.5;
}

.faq-icon {
  flex-shrink: 0;
  stroke: var(--primary-gold);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 800px;
  padding: 0 2rem 1.5rem 2rem;
}

.faq-answer-content {
  padding-top: 0.5rem;
  border-top: 1px solid rgba(212,165,116,0.2);
}

.faq-answer-content p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.faq-answer-content p:last-child {
  margin-bottom: 0;
}

.faq-answer-content ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.faq-answer-content li {
  padding: 0.5rem 0 0.5rem 1.5rem;
  color: var(--text-secondary);
  position: relative;
  line-height: 1.6;
}

.faq-answer-content li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--primary-gold);
  font-weight: 700;
}

.faq-answer-content strong {
  color: var(--primary-gold);
  font-weight: 700;
}

/* FAQ CTA */
.faq-cta {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background: rgba(139,92,246,0.1);
  border: 2px solid rgba(212,165,116,0.3);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
}

.faq-cta p {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.faq-cta .btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
}

.faq-cta .btn-cta--primary {
  background: linear-gradient(135deg, var(--success-green), var(--green-hover));
  color: #ffffff;
  border: 2px solid var(--success-green);
  box-shadow: 0 6px 20px rgba(34,197,94,0.4);
}

.faq-cta .btn-cta--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(34,197,94,0.6);
}

/* Responsive Design */
@media (max-width: 768px) {
  .faq-section {
    padding: 3rem 0;
  }
  
  .faq-question {
    padding: 1.25rem 1.5rem;
  }
  
  .faq-question-text {
    font-size: 1rem;
    padding-right: 1rem;
  }
  
  .faq-item.active .faq-answer {
    padding: 0 1.5rem 1.25rem 1.5rem;
  }
  
  .faq-answer-content {
    font-size: 0.95rem;
  }
  
  .faq-cta {
    padding: 1.5rem;
    margin-top: 2rem;
  }
  
  .faq-cta p {
    font-size: 1.125rem;
  }
  
  .faq-cta .btn-cta {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .faq-question {
    padding: 1rem 1.25rem;
  }
  
  .faq-question-text {
    font-size: 0.95rem;
  }
  
  .faq-icon {
    width: 20px;
    height: 20px;
  }
  
  .faq-item.active .faq-answer {
    padding: 0 1.25rem 1rem 1.25rem;
  }
}
/* ========================================
   HOW TO GET STARTED SECTION
   ======================================== */
.howto-section {
  padding: 5rem 0;

  position: relative;
  overflow: hidden;
}

.howto-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(139,92,246,0.1), transparent 70%);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.howto-steps {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem 2rem;
  position: relative;
  padding: 2rem 0;
}

.howto-step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2.5rem 2rem;
  background: linear-gradient(135deg, 
    rgba(76,63,115,0.4), 
    rgba(44,38,69,0.6)
  );
  border: 2px solid var(--border-color);
  border-radius: var(--radius-xl);
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
  box-shadow: 
    0 4px 20px rgba(0,0,0,0.3),
    inset 0 1px 0 rgba(212,165,116,0.1);
}

.howto-step:hover {
  transform: translateY(-8px);
  border-color: var(--primary-gold);
  box-shadow: 
    0 12px 40px rgba(212,165,116,0.3),
    0 0 60px rgba(139,92,246,0.2),
    inset 0 1px 0 rgba(212,165,116,0.2);
}

.step-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 900;
  color: #000;
  box-shadow: 
    0 6px 20px rgba(212,165,116,0.5),
    inset 0 2px 0 rgba(255,255,255,0.3);
  z-index: 2;
}

.step-icon-wrapper {
  margin-bottom: 1.5rem;
  margin-top: 1rem;
}

.step-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(139,92,246,0.2), rgba(76,63,115,0.3));
  border: 2px solid var(--accent-purple);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  transition: all 0.4s ease;
  box-shadow: 0 4px 16px rgba(139,92,246,0.3);
}

.howto-step:hover .step-icon {
  background: linear-gradient(135deg, rgba(139,92,246,0.3), rgba(76,63,115,0.4));
  border-color: var(--primary-gold);
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 30px rgba(212,165,116,0.5);
}

.step-icon svg {
  stroke: var(--primary-gold);
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.3));
}

.step-content {
  flex: 1;
}

.step-title {
  font-size: 1.5rem;
  font-weight: 800;
  font-family: 'Cinzel', serif;
  color: var(--primary-gold);
  margin-bottom: 1rem;
  text-shadow: 0 2px 8px rgba(212,165,116,0.4);
}

.step-description {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.step-features {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
}

.step-feature {
  font-size: 0.9rem;
  color: var(--text-primary);
  font-weight: 600;
  padding: 0.4rem 1rem;
  background: rgba(139,92,246,0.15);
  border-radius: 20px;
  border: 1px solid rgba(212,165,116,0.3);
  display: inline-block;
  transition: all 0.3s ease;
}

.howto-step:hover .step-feature {
  background: rgba(212,165,116,0.2);
  border-color: var(--primary-gold);
}

/* Connector Lines */
.step-connector {
  display: none; /* Приховано для grid layout */
}

/* Bottom CTA */
.howto-cta {
  max-width: 900px;
  margin: 4rem auto 0;
  padding: 3rem;
  background: linear-gradient(135deg, 
    rgba(139,92,246,0.25), 
    rgba(76,63,115,0.4)
  );
  border: 3px solid var(--primary-gold);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  box-shadow: 
    0 0 40px rgba(212,165,116,0.4),
    inset 0 2px 0 rgba(255,255,255,0.1);
  position: relative;
  overflow: hidden;
}

.howto-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(212,165,116,0.1), 
    transparent
  );
  animation: shine-cta 3s ease-in-out infinite;
}

@keyframes shine-cta {
  0% { left: -100%; }
  100% { left: 100%; }
}

.cta-highlight {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex: 1;
}

.cta-icon {
  font-size: 3.5rem;
  filter: drop-shadow(0 4px 10px rgba(212,165,116,0.6));
}

.cta-text h3 {
  font-size: 1.75rem;
  font-weight: 900;
  font-family: 'Cinzel', serif;
  color: var(--primary-gold);
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 8px rgba(212,165,116,0.5);
}

.cta-text p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.btn-howto {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 2.5rem;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 6px 25px rgba(0,0,0,0.4);
}

.btn-howto--primary {
  background: linear-gradient(135deg, var(--success-green), var(--green-hover));
  color: #ffffff;
  border: 3px solid var(--success-green);
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.btn-howto--primary:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 
    0 10px 40px rgba(34,197,94,0.6),
    0 0 30px rgba(34,197,94,0.4);
  background: linear-gradient(135deg, var(--green-hover), var(--success-green));
}

.btn-howto--primary:active {
  transform: translateY(-1px) scale(1.02);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .howto-steps {
    gap: 2rem;
  }
  
  .howto-step {
    padding: 2rem 1.5rem;
  }
  
  .step-title {
    font-size: 1.35rem;
  }
}

@media (max-width: 768px) {
  .howto-section {
    padding: 3rem 0;
  }
  
  .howto-steps {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .howto-step {
    padding: 2rem 1.5rem;
  }
  
  .step-number {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
    top: -15px;
  }
  
  .step-icon {
    width: 70px;
    height: 70px;
  }
  
  .step-icon svg {
    width: 40px;
    height: 40px;
  }
  
  .step-title {
    font-size: 1.25rem;
  }
  
  .step-description {
    font-size: 0.95rem;
  }
  
  .howto-cta {
    flex-direction: column;
    text-align: center;
    padding: 2rem;
  }
  
  .cta-highlight {
    flex-direction: column;
    text-align: center;
  }
  
  .cta-text h3 {
    font-size: 1.5rem;
  }
  
  .btn-howto {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .howto-step {
    padding: 1.75rem 1.25rem;
  }
  
  .step-number {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }
  
  .step-icon {
    width: 60px;
    height: 60px;
  }
  
  .step-icon svg {
    width: 36px;
    height: 36px;
  }
  
  .step-title {
    font-size: 1.15rem;
  }
  
  .step-description {
    font-size: 0.9rem;
  }
  
  .step-features {
    gap: 0.4rem;
  }
  
  .step-feature {
    font-size: 0.85rem;
    padding: 0.35rem 0.85rem;
  }
  
  .cta-icon {
    font-size: 2.5rem;
  }
  
  .cta-text h3 {
    font-size: 1.25rem;
  }
  
  .cta-text p {
    font-size: 0.9rem;
  }
  
  .btn-howto {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
}


/* ========================================
   VIP TIERS COMPARISON SECTION
   ======================================== */
.vip-tiers-section {
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.vip-tiers-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 1000px;
  height: 1000px;
  background: radial-gradient(circle, rgba(139,92,246,0.15), transparent 60%);
  transform: translateX(-50%);
  pointer-events: none;
}

.vip-tiers-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
  position: relative;
}

.vip-tier {
  background: linear-gradient(135deg, 
    rgba(44,38,69,0.8), 
    rgba(26,21,40,0.9)
  );
  border: 2px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.vip-tier::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(212,165,116,0.1), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.vip-tier:hover::before {
  opacity: 1;
}

.vip-tier:hover {
  transform: translateY(-10px) scale(1.03);
  border-color: var(--primary-gold);
  box-shadow: 
    0 20px 60px rgba(212,165,116,0.4),
    0 0 80px rgba(139,92,246,0.3),
    inset 0 1px 0 rgba(255,255,255,0.1);
}

/* Featured Tier (Gold) */
.vip-tier--featured {
  border-color: var(--primary-gold);
  background: linear-gradient(135deg, 
    rgba(212,165,116,0.15), 
    rgba(44,38,69,0.9)
  );
  box-shadow: 
    0 8px 30px rgba(212,165,116,0.3),
    0 0 60px rgba(212,165,116,0.2);
}

.vip-tier--featured:hover {
  box-shadow: 
    0 20px 70px rgba(212,165,116,0.5),
    0 0 100px rgba(212,165,116,0.4);
}

/* Tier Specific Hover Colors */
.vip-tier--bronze:hover {
  border-color: #cd7f32;
  box-shadow: 0 20px 60px rgba(205,127,50,0.4);
}

.vip-tier--silver:hover {
  border-color: #c0c0c0;
  box-shadow: 0 20px 60px rgba(192,192,192,0.4);
}

.vip-tier--platinum:hover {
  border-color: #e5e4e2;
  box-shadow: 0 20px 60px rgba(229,228,226,0.4);
}

.vip-tier--diamond:hover {
  border-color: #b9f2ff;
  box-shadow: 0 20px 60px rgba(185,242,255,0.5);
}

/* Tier Badge */
.tier-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.4rem 1.25rem;
  background: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));
  color: #000;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(212,165,116,0.6);
  z-index: 2;
}

.tier-badge--exclusive {
  background: linear-gradient(135deg, #b9f2ff, #89cff0);
  animation: glow-diamond 2s ease-in-out infinite;
}

@keyframes glow-diamond {
  0%, 100% {
    box-shadow: 0 4px 12px rgba(185,242,255,0.6);
  }
  50% {
    box-shadow: 0 6px 20px rgba(185,242,255,0.9);
  }
}

/* Tier Icon */
.tier-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
  filter: drop-shadow(0 4px 12px rgba(212,165,116,0.5));
  transition: all 0.4s ease;
}

.vip-tier:hover .tier-icon {
  transform: scale(1.15) rotate(5deg);
  filter: drop-shadow(0 6px 20px rgba(212,165,116,0.8));
}

/* Tier Name */
.tier-name {
  font-size: 1.75rem;
  font-weight: 900;
  font-family: 'Cinzel', serif;
  color: var(--primary-gold);
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 8px rgba(212,165,116,0.5);
  transition: all 0.3s ease;
}

.vip-tier:hover .tier-name {
  color: #ffffff;
  text-shadow: 0 2px 12px rgba(255,255,255,0.6);
}

/* Tier Requirement */
.tier-requirement {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1.5rem;
}

/* Tier Divider */
.tier-divider {
  height: 2px;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(212,165,116,0.5), 
    transparent
  );
  margin-bottom: 1.5rem;
}

/* Tier Benefits */
.tier-benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
  text-align: left;
}

.tier-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(212,165,116,0.1);
  transition: all 0.3s ease;
}

.tier-benefits li:last-child {
  border-bottom: none;
}

.vip-tier:hover .tier-benefits li {
  border-color: rgba(212,165,116,0.2);
}

.benefit-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--success-green), var(--green-hover));
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 900;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(34,197,94,0.4);
}

.benefit-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.4;
  transition: all 0.3s ease;
}

.vip-tier:hover .benefit-text {
  color: var(--text-primary);
}

/* Tier Footer */
.tier-footer {
  padding-top: 1.5rem;
  border-top: 2px solid rgba(212,165,116,0.3);
}

.tier-limit {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.limit-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

.limit-value {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--primary-gold);
  text-shadow: 0 2px 6px rgba(212,165,116,0.4);
}

/* VIP CTA */
.vip-cta {
  max-width: 900px;
  margin: 3rem auto 0;
  padding: 3rem;
  background: linear-gradient(135deg, 
    rgba(139,92,246,0.25), 
    rgba(76,63,115,0.4)
  );
  border: 3px solid var(--primary-gold);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  box-shadow: 
    0 0 40px rgba(212,165,116,0.4),
    inset 0 2px 0 rgba(255,255,255,0.1);
  position: relative;
  overflow: hidden;
}

.vip-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(212,165,116,0.15), 
    transparent
  );
  animation: shine-vip 3s ease-in-out infinite;
}

@keyframes shine-vip {
  0% { left: -100%; }
  100% { left: 100%; }
}

.vip-cta-content h3 {
  font-size: 1.75rem;
  font-weight: 900;
  font-family: 'Cinzel', serif;
  color: var(--primary-gold);
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 8px rgba(212,165,116,0.5);
}

.vip-cta-content p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.btn-vip {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 2.5rem;
  background: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));
  color: #000;
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  white-space: nowrap;
  box-shadow: 0 6px 25px rgba(212,165,116,0.5);
  position: relative;
  z-index: 1;
}

.btn-vip:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 40px rgba(212,165,116,0.7);
}

/* Responsive Design */
@media (max-width: 1400px) {
  .vip-tiers-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1024px) {
  .vip-tiers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .tier-icon {
    font-size: 3.5rem;
  }
  
  .tier-name {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .vip-tiers-section {
    padding: 3rem 0;
  }
  
  .vip-tiers-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .vip-tier {
    padding: 2rem 1.5rem;
  }
  
  .tier-icon {
    font-size: 3rem;
  }
  
  .tier-name {
    font-size: 1.35rem;
  }
  
  .tier-requirement {
    font-size: 0.85rem;
  }
  
  .benefit-text {
    font-size: 0.875rem;
  }
  
  .limit-value {
    font-size: 1.15rem;
  }
  
  .vip-cta {
    flex-direction: column;
    text-align: center;
    padding: 2rem;
  }
  
  .vip-cta-content h3 {
    font-size: 1.5rem;
  }
  
  .btn-vip {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .vip-tier {
    padding: 1.75rem 1.25rem;
  }
  
  .tier-badge {
    font-size: 0.65rem;
    padding: 0.35rem 1rem;
  }
  
  .tier-icon {
    font-size: 2.5rem;
  }
  
  .tier-name {
    font-size: 1.25rem;
  }
  
  .tier-benefits li {
    padding: 0.65rem 0;
  }
  
  .benefit-icon {
    width: 18px;
    height: 18px;
    font-size: 0.7rem;
  }
  
  .benefit-text {
    font-size: 0.85rem;
  }
  
  .vip-cta-content h3 {
    font-size: 1.25rem;
  }
  
  .vip-cta-content p {
    font-size: 0.9rem;
  }
  
  .btn-vip {
    padding: 1rem 2rem;
    font-size: 0.95rem;
  }
}

.jackpots-section {
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.jackpots-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1000px;
  height: 1000px;
  background: radial-gradient(circle, rgba(34,197,94,0.15), transparent 60%);
  transform: translate(-50%, -50%);
  animation: pulse-glow 4s ease-in-out infinite;
  pointer-events: none;
}

/* Total Jackpot Pool */
.jackpot-total {
  position: relative;
  max-width: 900px;
  margin: 0 auto 4rem;
  padding: 3rem;
  background: linear-gradient(135deg, 
    rgba(22,163,74,0.3), 
    rgba(21,128,61,0.4)
  );
  border: 3px solid var(--success-green);
  border-radius: var(--radius-xl);
  text-align: center;
  box-shadow: 
    0 0 60px rgba(34,197,94,0.5),
    0 8px 40px rgba(0,0,0,0.4),
    inset 0 2px 0 rgba(255,255,255,0.1);
  overflow: hidden;
}

.jackpot-total::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, 
    transparent, 
    rgba(255,255,255,0.05), 
    transparent
  );
  animation: shine-jackpot 3s ease-in-out infinite;
}

@keyframes shine-jackpot {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }
  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}

.jackpot-total-content {
  position: relative;
  z-index: 2;
}

.jackpot-total-label {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 1rem;
}

.jackpot-total-amount {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: 'Cinzel', serif;
  margin-bottom: 0.75rem;
}

.currency-symbol {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--success-green);
  text-shadow: 0 0 20px rgba(34,197,94,0.8);
}

.jackpot-main-counter {
  font-size: 4rem;
  font-weight: 900;
  color: #ffffff;
  text-shadow: 
    0 0 30px rgba(34,197,94,1),
    0 0 60px rgba(34,197,94,0.6),
    3px 3px 10px rgba(0,0,0,0.8);
  animation: glow-number 2s ease-in-out infinite;
}

@keyframes glow-number {
  0%, 100% {
    text-shadow: 
      0 0 30px rgba(34,197,94,1),
      0 0 60px rgba(34,197,94,0.6),
      3px 3px 10px rgba(0,0,0,0.8);
  }
  50% {
    text-shadow: 
      0 0 40px rgba(34,197,94,1),
      0 0 80px rgba(34,197,94,0.8),
      3px 3px 10px rgba(0,0,0,0.8);
  }
}

.jackpot-cents {
  font-size: 2rem;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
}

.jackpot-total-subtitle {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  letter-spacing: 1px;
}

/* Pulse Animation Background */
.jackpot-total-animation {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.pulse-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300px;
  height: 300px;
  border: 3px solid rgba(34,197,94,0.6);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: pulse-ring 3s ease-out infinite;
}

@keyframes pulse-ring {
  0% {
    width: 300px;
    height: 300px;
    opacity: 1;
  }
  100% {
    width: 600px;
    height: 600px;
    opacity: 0;
  }
}

/* Jackpots Grid */
.jackpots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.jackpot-card {
  background: linear-gradient(135deg, 
    rgba(44,38,69,0.8), 
    rgba(26,21,40,0.9)
  );
  border: 2px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 2rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.jackpot-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(34,197,94,0.1), 
    transparent
  );
  transition: left 0.6s ease;
}

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

.jackpot-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--success-green);
  box-shadow: 
    0 20px 60px rgba(34,197,94,0.4),
    0 0 80px rgba(34,197,94,0.2),
    inset 0 1px 0 rgba(255,255,255,0.1);
}

/* Jackpot Types */
.jackpot-card--mega {
  border-color: rgba(34,197,94,0.5);
}

.jackpot-card--mega:hover {
  border-color: var(--success-green);
  box-shadow: 0 20px 60px rgba(34,197,94,0.5);
}

.jackpot-card--major {
  border-color: rgba(251,191,36,0.5);
}

.jackpot-card--major:hover {
  border-color: #fbbf24;
  box-shadow: 0 20px 60px rgba(251,191,36,0.4);
}

.jackpot-card--minor {
  border-color: rgba(139,92,246,0.5);
}

.jackpot-card--minor:hover {
  border-color: var(--accent-purple);
  box-shadow: 0 20px 60px rgba(139,92,246,0.4);
}

/* Jackpot Badge */
.jackpot-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  z-index: 2;
}

.jackpot-badge--mega {
  background: linear-gradient(135deg, var(--success-green), var(--green-hover));
  color: #ffffff;
}

.jackpot-badge--major {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: #000;
}

.jackpot-badge--minor {
  background: linear-gradient(135deg, var(--accent-purple), #7c3aed);
  color: #ffffff;
}

.jackpot-badge--hot {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: #ffffff;
  animation: pulse-hot 2s ease-in-out infinite;
}

/* Game Info */
.jackpot-game-icon {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  filter: drop-shadow(0 4px 12px rgba(34,197,94,0.5));
  transition: all 0.4s ease;
}

.jackpot-card:hover .jackpot-game-icon {
  transform: scale(1.15) rotate(5deg);
  filter: drop-shadow(0 6px 20px rgba(34,197,94,0.8));
}

.jackpot-game-name {
  font-size: 1.5rem;
  font-weight: 800;
  font-family: 'Cinzel', serif;
  color: var(--primary-gold);
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 6px rgba(212,165,116,0.4);
}

.jackpot-provider {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1.5rem;
}

/* Jackpot Amount */
.jackpot-amount-wrapper {
  padding: 1.5rem 0;
  border-top: 2px solid rgba(34,197,94,0.2);
  border-bottom: 2px solid rgba(34,197,94,0.2);
  margin-bottom: 1.5rem;
}

.jackpot-amount {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  font-family: 'Cinzel', serif;
  margin-bottom: 0.75rem;
}

.jackpot-currency {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--success-green);
}

.jackpot-counter {
  font-size: 2rem;
  font-weight: 900;
  color: var(--success-green);
  text-shadow: 0 0 20px rgba(34,197,94,0.6);
  transition: all 0.3s ease;
}

.jackpot-increment {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--success-green);
  font-weight: 700;
}

.increment-icon {
  animation: bounce-arrow 1.5s ease-in-out infinite;
}

@keyframes bounce-arrow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

/* Jackpot Stats */
.jackpot-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.jackpot-stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

.stat-value {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text-primary);
}

/* Jackpot Button */
.jackpot-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, var(--success-green), var(--green-hover));
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(34,197,94,0.5);
}

.jackpot-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(34,197,94,0.7);
}

.jackpot-btn svg {
  transition: transform 0.3s ease;
}

.jackpot-btn:hover svg {
  transform: translateX(3px);
}

/* Footer */
.jackpots-footer {
  text-align: center;
}

.view-all-jackpots {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 3rem;
  background: rgba(34,197,94,0.15);
  border: 2px solid var(--success-green);
  border-radius: 50px;
  color: var(--success-green);
  font-size: 1.125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(34,197,94,0.2);
}

.view-all-jackpots:hover {
  background: var(--success-green);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(34,197,94,0.5);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .jackpots-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .jackpots-section {
    padding: 3rem 0;
  }
  
  .jackpot-total {
    padding: 2rem;
    margin-bottom: 3rem;
  }
  
  .jackpot-main-counter {
    font-size: 3rem;
  }
  
  .currency-symbol {
    font-size: 2rem;
  }
  
  .jackpot-cents {
    font-size: 1.5rem;
  }
  
  .jackpots-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .jackpot-game-icon {
    font-size: 3rem;
  }
  
  .jackpot-game-name {
    font-size: 1.35rem;
  }
  
  .jackpot-counter {
    font-size: 1.75rem;
  }
  
  .view-all-jackpots {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .jackpot-total {
    padding: 1.75rem;
  }
  
  .jackpot-main-counter {
    font-size: 2.5rem;
  }
  
  .jackpot-card {
    padding: 1.75rem;
  }
  
  .jackpot-badge {
    font-size: 0.7rem;
    padding: 0.4rem 0.8rem;
  }
  
  .jackpot-game-icon {
    font-size: 2.5rem;
  }
  
  .jackpot-game-name {
    font-size: 1.25rem;
  }
  
  .jackpot-counter {
    font-size: 1.5rem;
  }
  
  .jackpot-btn {
    padding: 0.875rem 1.75rem;
    font-size: 0.85rem;
  }
}

/* ========================================
   PAYMENT SPEED COMPARISON SECTION
   ======================================== */
.payment-speed-section {
  padding: 5rem 0;

  position: relative;
  overflow: hidden;
}

/* Speed Highlight */
.speed-highlight {
  max-width: 1000px;
  margin: 0 auto 4rem;
  padding: 3rem;
  background: linear-gradient(135deg, 
    rgba(76,63,115,0.4), 
    rgba(44,38,69,0.6)
  );
  border: 2px solid var(--border-color);
  border-radius: var(--radius-xl);
  box-shadow: 0 8px 40px rgba(0,0,0,0.4);
  backdrop-filter: blur(10px);
}

.speed-highlight-content {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 3rem;
  align-items: center;
}

/* Winner Side */
.speed-winner {
  text-align: center;
  padding: 2rem;
  background: linear-gradient(135deg, 
    rgba(34,197,94,0.2), 
    rgba(22,163,74,0.3)
  );
  border: 2px solid var(--success-green);
  border-radius: var(--radius-xl);
  box-shadow: 
    0 0 40px rgba(34,197,94,0.3),
    inset 0 1px 0 rgba(255,255,255,0.1);
  position: relative;
}

.speed-winner::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, 
    var(--success-green), 
    transparent, 
    var(--success-green)
  );
  border-radius: var(--radius-xl);
  z-index: -1;
  animation: border-glow 3s ease-in-out infinite;
  background-size: 200% 200%;
}

@keyframes border-glow {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.winner-logo,
.competitor-logo {
  width: 80px;
  height: 80px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 3rem;
}

.winner-logo {
  background: linear-gradient(135deg, var(--success-green), var(--green-hover));
  box-shadow: 0 6px 25px rgba(34,197,94,0.5);
}

.winner-name {
  font-size: 2rem;
  font-weight: 900;
  font-family: 'Cinzel', serif;
  color: var(--primary-gold);
  margin-bottom: 1rem;
  text-shadow: 0 2px 8px rgba(212,165,116,0.5);
}

.winner-time,
.competitor-time {
  margin-bottom: 1rem;
}

.time-value {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
  margin-bottom: 0.25rem;
}

.speed-winner .time-value {
  color: var(--success-green);
  text-shadow: 0 0 20px rgba(34,197,94,0.8);
  animation: pulse-green 2s ease-in-out infinite;
}

@keyframes pulse-green {
  0%, 100% {
    text-shadow: 0 0 20px rgba(34,197,94,0.8);
  }
  50% {
    text-shadow: 0 0 30px rgba(34,197,94,1);
  }
}

.time-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.winner-badge,
.competitor-badge {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.winner-badge {
  background: linear-gradient(135deg, var(--success-green), var(--green-hover));
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(34,197,94,0.5);
}

/* VS Separator */
.vs-separator {
  display: flex;
  align-items: center;
  justify-content: center;
}

.vs-text {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent-purple), #7c3aed);
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 900;
  border-radius: 50%;
  box-shadow: 0 6px 25px rgba(139,92,246,0.5);
  animation: pulse-vs 2s ease-in-out infinite;
}

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

/* Competitor Side */
.speed-competitor {
  text-align: center;
  padding: 2rem;
  background: rgba(44,38,69,0.6);
  border: 2px solid rgba(239,68,68,0.5);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(10px);
}

.competitor-logo {
  background: linear-gradient(135deg, rgba(239,68,68,0.3), rgba(220,38,38,0.4));
  box-shadow: 0 4px 16px rgba(239,68,68,0.3);
}

.competitor-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.speed-competitor .time-value {
  color: #ef4444;
}

.competitor-badge {
  background: rgba(239,68,68,0.2);
  color: #ef4444;
  border: 1px solid rgba(239,68,68,0.5);
}

/* Comparison Table */
.speed-comparison-table {
  max-width: 1200px;
  margin: 0 auto 4rem;
}

.table-title {
  font-size: 1.75rem;
  font-weight: 800;
  font-family: 'Cinzel', serif;
  color: var(--primary-gold);
  text-align: center;
  margin-bottom: 2rem;
  text-shadow: 0 2px 8px rgba(212,165,116,0.4);
}

.comparison-grid {
  background: rgba(44,38,69,0.6);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  overflow: hidden;
  backdrop-filter: blur(10px);
}

/* Header Row */
.comparison-header {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1.5fr 1fr;
  gap: 1rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, 
    rgba(76,63,115,0.6), 
    rgba(44,38,69,0.8)
  );
  border-bottom: 2px solid var(--primary-gold);
}

.header-cell {
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.header-divaspin {
  color: var(--success-green);
}

.header-icon {
  font-size: 1.25rem;
}

/* Comparison Rows */
.comparison-row {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1.5fr 1fr;
  gap: 1rem;
  padding: 1.5rem;
  border-bottom: 1px solid rgba(212,165,116,0.1);
  transition: all 0.3s ease;
}

.comparison-row:last-child {
  border-bottom: none;
}

.comparison-row:hover {
  background: rgba(139,92,246,0.1);
}

/* Method Cell */
.method-cell {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.method-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, 
    rgba(139,92,246,0.3), 
    rgba(76,63,115,0.4)
  );
  border: 1px solid var(--accent-purple);
  border-radius: 12px;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.method-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.method-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
}

.method-description {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Time Cells */
.time-cell {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.5rem;
}

.time-cell .time-value {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0;
}

.time-cell--winner .time-value {
  color: var(--success-green);
}

.time-cell--competitor .time-value {
  color: #ef4444;
}

.time-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.time-badge--instant {
  background: linear-gradient(135deg, var(--success-green), var(--green-hover));
  color: #ffffff;
}

.time-badge--fast {
  background: linear-gradient(135deg, #f97316, #ea580c);
  color: #ffffff;
}

.time-badge--good {
  background: rgba(34,197,94,0.2);
  color: var(--success-green);
  border: 1px solid rgba(34,197,94,0.5);
}

.time-badge--ok {
  background: rgba(139,92,246,0.2);
  color: var(--accent-purple);
  border: 1px solid rgba(139,92,246,0.5);
}

/* Difference Cell */
.difference-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem;
  border-radius: 12px;
}

.difference-cell--high {
  background: rgba(34,197,94,0.15);
  border: 1px solid rgba(34,197,94,0.3);
}

.difference-cell--medium {
  background: rgba(251,191,36,0.15);
  border: 1px solid rgba(251,191,36,0.3);
}

.difference-cell--low {
  background: rgba(139,92,246,0.15);
  border: 1px solid rgba(139,92,246,0.3);
}

.difference-value {
  font-size: 1rem;
  font-weight: 800;
  color: var(--success-green);
}

.difference-cell--medium .difference-value {
  color: #fbbf24;
}

.difference-cell--low .difference-value {
  color: var(--accent-purple);
}

.difference-icon {
  font-size: 1.25rem;
}

/* Speed Features */
.speed-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.speed-feature-card {
  background: rgba(44,38,69,0.6);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.speed-feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-purple);
  box-shadow: 0 12px 40px rgba(139,92,246,0.3);
}

.speed-feature-card .feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  filter: drop-shadow(0 4px 12px rgba(212,165,116,0.5));
}

.speed-feature-card .feature-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--primary-gold);
  margin-bottom: 0.75rem;
}

.speed-feature-card .feature-description {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* CTA */
.speed-cta {
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem;
  background: linear-gradient(135deg, 
    rgba(139,92,246,0.25), 
    rgba(76,63,115,0.4)
  );
  border: 3px solid var(--primary-gold);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  box-shadow: 
    0 0 40px rgba(212,165,116,0.4),
    inset 0 2px 0 rgba(255,255,255,0.1);
}

.speed-cta-content h3 {
  font-size: 1.75rem;
  font-weight: 900;
  font-family: 'Cinzel', serif;
  color: var(--primary-gold);
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 8px rgba(212,165,116,0.5);
}

.speed-cta-content p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.btn-speed-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 2.5rem;
  background: linear-gradient(135deg, var(--success-green), var(--green-hover));
  color: #ffffff;
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  white-space: nowrap;
  box-shadow: 0 6px 25px rgba(34,197,94,0.5);
}

.btn-speed-cta:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 40px rgba(34,197,94,0.7);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .comparison-header,
  .comparison-row {
    grid-template-columns: 2fr 1.2fr 1.2fr 0.8fr;
  }
}

@media (max-width: 1024px) {
  .speed-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .payment-speed-section {
    padding: 3rem 0;
  }
  
  .speed-highlight {
    padding: 2rem;
  }
  
  .speed-highlight-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .vs-separator {
    transform: rotate(90deg);
  }
  
  .winner-name,
  .competitor-name {
    font-size: 1.5rem;
  }
  
  .time-value {
    font-size: 1.5rem;
  }
  
  .comparison-header {
    display: none;
  }
  
  .comparison-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .method-cell {
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(212,165,116,0.2);
  }
  
  .time-cell,
  .difference-cell {
    padding: 0.5rem;
  }
  
  .speed-features {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .speed-cta {
    flex-direction: column;
    text-align: center;
    padding: 2rem;
  }
  
  .btn-speed-cta {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .speed-highlight {
    padding: 1.5rem;
  }
  
  .winner-logo,
  .competitor-logo {
    width: 60px;
    height: 60px;
    font-size: 2.5rem;
  }
  
  .winner-name {
    font-size: 1.35rem;
  }
  
  .time-value {
    font-size: 1.35rem;
  }
  
  .vs-text {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
  
  .table-title {
    font-size: 1.5rem;
  }
  
  .method-icon {
    width: 45px;
    height: 45px;
    font-size: 1.25rem;
  }
  
  .method-name {
    font-size: 0.95rem;
  }
  
  .method-description {
    font-size: 0.8rem;
  }
  
  .speed-cta-content h3 {
    font-size: 1.35rem;
  }
}
.game-card {
    position: relative;
    overflow: hidden;
  }
  
  .game-image {
    width: 100%;
    height: 100%;
  }
  
  .game-placeholder {
    width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .game-icon-large {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .game-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);
    transform: translateY(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 1rem;
    backdrop-filter: blur(8px);
  }
  
  .game-card:hover .game-info {
    transform: translateY(0);
  }

  .language-dropdown {
  position: absolute;
  bottom: 100%;
  left: 0;
  right: 0;
  background: rgba(76,63,115,0.95);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 0.5rem;
  margin-bottom: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 1000;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}

.language-dropdown.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.language-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  width: 100%;
  background: transparent;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  color: var(--text-secondary);
  border-left: 3px solid transparent;
}

.language-option:hover {
  background: rgba(139,92,246,0.2);
  border-left-color: rgba(212,165,116,0.5);
}

.language-option.active {
  background: rgba(212,165,116,0.2);
  border-left-color: var(--primary-gold);
  pointer-events: none;
}

.language-option.active .lang-name {
  color: var(--primary-gold);
  font-weight: 700;
}

.language-option .lang-flag {
  font-size: 1.5rem;
}

.language-option .lang-name {
  flex: 1;
  font-size: 0.85rem;
  font-weight: 600;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex: 0 0 auto;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex: 0 0 auto;
  margin-left: auto; 
}
@media (max-width: 768px) {
  .hero-banner {
    height: 350px;
    margin: 1rem;
    max-width: calc(100% - 2rem);
  }
  
  .hero-banner-content {
    padding: 1.5rem 1rem;
  }
  
  .hero-offer-title {
    font-size: 1.8rem;
    line-height: 1.1;
  }
  
  .hero-offer-subtitle {
    font-size: 1rem;
    margin-bottom: 1.2rem;
  }
  
  .join-now-btn {
    padding: 0.75rem 2rem;
    font-size: 0.95rem;
  }
  
  .trust-badges {
    gap: 0.75rem;
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
  }
  
  .trust-item {
    padding: 0.5rem;
  }
  
  .trust-icon {
    font-size: 1.2rem;
  }
  
  .trust-text {
    font-size: 0.7rem;
  }
  
  .game-card {
    display: flex;
    flex-direction: column;
  }
  
  .game-image {
    height: 180px;
    position: relative;
  }
  
  .game-info {
    padding: 1rem;
    background: linear-gradient(135deg, rgba(76,63,115,0.5), rgba(44,38,69,0.8));
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .game-title {
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
  }
  
  .game-provider {
    font-size: 0.75rem;
    margin-bottom: 0.5rem;
  }
  
  .game-stats {
    font-size: 0.7rem;
    margin-bottom: 0.5rem;
    display: flex;
    justify-content: space-between;
  }
  
  .game-btn {
    padding: 0.6rem;
    font-size: 0.75rem;
    margin-top: 0.25rem;
  }
  
  .game-badge {
    top: 8px;
    right: 8px;
    padding: 4px 10px;
    font-size: 0.65rem;
  }
  
  .game-icon-large {
    font-size: 3rem;
  }
  
  .game-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover !important;
    background-position: center !important;
  }
  
  .game-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

@media (max-width: 480px) {
  .hero-banner {
    height: 300px;
    margin: 0.75rem;
    max-width: calc(100% - 1.5rem);
  }
  
  .hero-banner-content {
    padding: 1rem 0.75rem;
  }
  
  .welcome-badge {
    padding: 0.4rem 1.2rem;
    font-size: 0.65rem;
    letter-spacing: 1.5px;
    margin-bottom: 0.75rem;
  }
  
  .hero-offer-title {
    font-size: 1.5rem;
    margin-bottom: 0.4rem;
  }
  
  .hero-offer-subtitle {
    font-size: 0.85rem;
    margin-bottom: 1rem;
  }
  
  .join-now-btn {
    padding: 0.65rem 1.75rem;
    font-size: 0.85rem;
    letter-spacing: 2px;
  }
  
  .trust-badges {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    padding: 0 0.5rem;
  }
  
  .trust-item {
    padding: 0.4rem;
  }
  
  .trust-icon {
    font-size: 1rem;
  }
  
  .trust-text {
    font-size: 0.65rem;
  }
  
  .games-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .game-image {
    height: 200px;
  }
  
  .game-info {
    padding: 1.25rem;
  }
  
  .game-title {
    font-size: 1.05rem;
  }
  
  .game-provider {
    font-size: 0.8rem;
  }
  
  .game-stats {
    font-size: 0.75rem;
  }
  
  .game-btn {
    padding: 0.75rem;
    font-size: 0.8rem;
  }
}

@media (max-width: 992px) {
  .sidebar-overlay {
    display: none;
    opacity: 0;
    pointer-events: none;
  }
  
  .sidebar-overlay.active {
    display: block;
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 768px) {
  .game-image {
    height: 240px;
    min-height: 240px;
  }
  
  .game-placeholder img {
    object-fit: contain;
  }
  
  .game-info {
    opacity: 1;
    visibility: visible;
    position: relative;
    transform: none;
  }
}

/* Sidebar collapsed mode (desktop) */
@media (min-width: 993px) {
  .sidebar.collapsed {
    width: 60px;
    padding: 20px 6px;
    overflow: visible;
  }
  .sidebar.collapsed .nav-item {
    justify-content: center;
    padding: 10px;
    margin: 4px 0;
  }
  .sidebar.collapsed .nav-item span,
  .sidebar.collapsed .nav-section h2,
  .sidebar.collapsed .sidebar-footer,
  .sidebar.collapsed .language-switcher,
  .sidebar.collapsed .sidebar-info {
    display: none;
  }
  .sidebar.collapsed .nav-icon {
    margin: 0;
  }
  .sidebar.collapsed ~ .main-content,
  .main-content.sidebar-collapsed {
    margin-left: 60px;
  }
  .footer.sidebar-collapsed {
    margin-left: 60px;
  }
}

@media (max-width: 480px) {
  .game-image {
    height: 320px;
    min-height: 320px;
  }
}