/* ========================================
   DIVASPIN CASINO FRANCE - STYLES UNIQUES
   ======================================== */

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

:root {
  --violet-deep: #1a1528;
  --violet-mid: #2c2645;
  --violet-accent: #8b5cf6;
  --gold-main: #d4a574;
  --gold-bright: #e6b885;
  --emerald: #22c55e;
  --text-white: #ffffff;
  --text-pale: #b8b8c8;
  --divider: rgba(212,165,116,0.2);
  --glow-base: 0 4px 16px rgba(0,0,0,0.3);
}

body {
  font-family: 'Inter', sans-serif;
  background: linear-gradient(180deg, rgba(139,92,246,0.1), transparent), #1a1528;
  color: var(--text-white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

/* Header Divaspin */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(44,38,69,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--divider);
  padding: 1rem 2rem;
}

.header-wrap {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo img {
  height: 40px;
  filter: drop-shadow(0 2px 6px rgba(212,165,116,0.4));
}

.header-btns {
  display: flex;
  gap: 1rem;
}

.btn-outline {
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s;
  background: transparent;
  border: 2px solid var(--gold-main);
  color: var(--gold-main);
}

.btn-outline:hover {
  background: rgba(212,165,116,0.1);
  transform: translateY(-2px);
}

.btn-solid {
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s;
  background: linear-gradient(135deg, var(--emerald), #16a34a);
  border: 2px solid transparent;
  color: white;
  box-shadow: 0 4px 12px rgba(34,197,94,0.4);
}

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

main {
  margin-top: 70px;
}

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

/* Hero Banner Divaspin */
.banner-hero {
  position: relative;
  height: 450px;
  margin: 2rem auto;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(76,63,115,0.9), rgba(139,92,246,0.7), rgba(212,165,116,0.6));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  box-shadow: 0 0 0 4px var(--gold-main), var(--glow-base);
}

.badge-exclusive {
  padding: 0.6rem 2rem;
  background: rgba(212,165,116,0.3);
  border: 2px solid var(--gold-main);
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--gold-main);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
  clip-path: polygon(8% 0%, 92% 0%, 100% 50%, 92% 100%, 8% 100%, 0% 50%);
}

.banner-title {
  font-size: 3.5rem;
  font-weight: 900;
  font-family: 'Cinzel', serif;
  color: white;
  text-shadow: 0 0 30px rgba(212,165,116,0.8), 0 0 60px rgba(139,92,246,0.5);
  margin-bottom: 1rem;
}

.banner-subtitle {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 2rem;
  letter-spacing: 2px;
}

.btn-cta-hero {
  padding: 1rem 3rem;
  background: linear-gradient(180deg, #2dd36f, #22c55e, #16a34a);
  color: white;
  font-size: 1.2rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  border: none;
  cursor: pointer;
  clip-path: polygon(8% 0%, 92% 0%, 100% 50%, 92% 100%, 8% 100%, 0% 50%);
  box-shadow: 0 0 0 3px var(--gold-main), 0 8px 20px rgba(34,197,94,0.6);
  transition: all 0.3s;
  display: inline-block;
}

.btn-cta-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 0 3px var(--gold-bright), 0 12px 30px rgba(34,197,94,0.8);
}

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

.badge-item {
  padding: 0.75rem 1rem;
  background: rgba(0,0,0,0.3);
  border-radius: 10px;
  border: 1px solid var(--divider);
  text-align: center;
}

.badge-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.badge-label {
  font-size: 0.75rem;
  color: var(--text-pale);
  text-transform: uppercase;
  font-weight: 600;
}

/* Metrics Row */
.metrics-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.metric-box {
  background: rgba(44,38,69,0.6);
  border: 1px solid var(--divider);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s;
}

.metric-box:hover {
  transform: translateY(-5px);
  border-color: var(--violet-accent);
  box-shadow: 0 8px 24px rgba(139,92,246,0.3);
}

.winner-box {
  background: linear-gradient(135deg, rgba(34,197,94,0.2), rgba(22,163,74,0.3));
  border-color: var(--emerald);
}

.metric-value {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--gold-main);
  display: block;
  margin-bottom: 0.5rem;
}

.metric-name {
  font-size: 0.9rem;
  color: var(--text-pale);
  text-transform: uppercase;
  font-weight: 600;
}

/* Sections */
.block-section {
  padding: 4rem 0;
}

.block-header {
  text-align: center;
  margin-bottom: 3rem;
}

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

.block-desc {
  font-size: 1.1rem;
  color: var(--text-pale);
}

/* Advantages Grid */
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.advantage-box {
  background: linear-gradient(135deg, rgba(76,63,115,0.3), rgba(44,38,69,0.6));
  border: 1px solid var(--divider);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s;
}

.advantage-box:hover {
  transform: translateY(-5px);
  border-color: var(--gold-main);
  box-shadow: 0 8px 24px rgba(212,165,116,0.3);
}

.advantage-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.advantage-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold-main);
  margin-bottom: 1rem;
}

.advantage-text {
  color: var(--text-pale);
  line-height: 1.7;
}

/* Slots Grid */
.slots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

.slot-card {
  background: rgba(44,38,69,0.7);
  border: 1px solid var(--divider);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s;
}

.slot-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold-main);
  box-shadow: 0 12px 32px rgba(212,165,116,0.4);
}

.slot-visual {
  height: 200px;
  background: linear-gradient(135deg, #8b5cf6, #d4a574);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.slot-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 6px 12px;
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  border-radius: 20px;
  text-transform: uppercase;
}

.slot-tag.hot {
  background: linear-gradient(135deg, #ef4444, #dc2626);
}

.slot-tag.new {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.slot-details {
  padding: 1.5rem;
}

.slot-name {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.slot-studio {
  font-size: 0.85rem;
  color: var(--text-pale);
  margin-bottom: 1rem;
}

.slot-btn {
  display: block;
  width: 100%;
  padding: 0.75rem;
  background: linear-gradient(135deg, var(--emerald), #16a34a);
  color: white;
  text-align: center;
  border-radius: 8px;
  font-weight: 700;
  text-transform: uppercase;
  transition: all 0.3s;
}

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

/* Content Article */
.content-article {
  background: rgba(44,38,69,0.6);
  border: 1px solid var(--divider);
  border-radius: 16px;
  padding: 3rem;
  margin: 3rem 0;
}

.content-article h2 {
  color: var(--gold-main);
  font-family: 'Cinzel', serif;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.content-article h3 {
  color: var(--gold-bright);
  font-size: 1.5rem;
  margin: 2rem 0 1rem;
}

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

.content-article ul {
  color: var(--text-pale);
  padding-left: 2rem;
  margin-bottom: 1.5rem;
}

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

/* Special Backgrounds */
.vip-bg {
  background: rgba(44,38,69,0.3);
  padding: 4rem 0;
  margin: 3rem 0;
  border-radius: 20px;
}

.promo-bg {
  background: rgba(44,38,69,0.3);
  padding: 4rem 0;
  margin: 3rem 0;
  border-radius: 20px;
}

.jackpot-bg {
  background: linear-gradient(135deg, rgba(139,92,246,0.2), rgba(34,197,94,0.2));
  padding: 4rem 0;
  margin: 3rem 0;
  border-radius: 20px;
}

.competitive-bg {
  background: linear-gradient(135deg, rgba(212,165,116,0.1), rgba(139,92,246,0.1));
  padding: 4rem 0;
  margin: 3rem 0;
  border-radius: 20px;
}

/* Final CTA */
.final-cta {
  background: linear-gradient(135deg, rgba(139,92,246,0.3), rgba(76,63,115,0.5));
  border: 2px solid var(--gold-main);
  border-radius: 20px;
  padding: 4rem 2rem;
  text-align: center;
  margin: 4rem 0;
}

.final-cta-title {
  font-size: 2.5rem;
  font-weight: 900;
  font-family: 'Cinzel', serif;
  color: var(--gold-main);
  margin-bottom: 1rem;
}

.final-cta-desc {
  font-size: 1.2rem;
  color: var(--text-pale);
  margin-bottom: 2rem;
}

/* Footer */
.site-footer {
  background: linear-gradient(180deg, rgba(44,38,69,0.5), #1a1528);
  border-top: 1px solid var(--divider);
  padding: 3rem 0 1rem;
  margin-top: 4rem;
}

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

.footer-about {
  color: var(--text-pale);
  line-height: 1.8;
  margin: 1rem 0;
}

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

.footer-col h4 {
  color: var(--gold-main);
  margin-bottom: 1rem;
}

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

.footer-col li {
  margin-bottom: 0.5rem;
}

.footer-col a {
  color: var(--text-pale);
  font-size: 0.9rem;
  transition: all 0.3s;
}

.footer-col a:hover {
  color: var(--gold-main);
}

.footer-legal {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--divider);
  color: var(--text-pale);
  font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 768px) {
  .header-wrap {
    padding: 0;
  }

  .banner-hero {
    height: auto;
    min-height: 400px;
  }

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

  .banner-subtitle {
    font-size: 1.2rem;
  }

  .metrics-row,
  .advantages-grid,
  .slots-grid {
    grid-template-columns: 1fr;
  }

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

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

  .wrapper {
    padding: 0 1rem;
  }

  .block-section {
    padding: 2rem 0;
  }

  .content-article {
    padding: 2rem 1rem;
  }
  
  .block-title {
    font-size: 1.8rem;
  }
  
  .final-cta-title {
    font-size: 1.8rem;
  }
}

/* Jackpot Counter Animation */
.jackpot-counter {
  animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% {
    text-shadow: 0 0 10px rgba(212,165,116,0.5);
  }
  50% {
    text-shadow: 0 0 25px rgba(212,165,116,0.8), 0 0 40px rgba(139,92,246,0.4);
  }
}
/* ========================================
   DIVASPIN - НЕДОСТАЮЩИЕ СТИЛИ
   ======================================== */

/* === FIX HERO SECTION === */
.banner-hero {
  position: relative;
  min-height: 450px;
  height: auto;
  margin: 2rem auto;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(76,63,115,0.9), rgba(139,92,246,0.7), rgba(212,165,116,0.6));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 2rem;
  box-shadow: 0 0 0 4px var(--gold-main), var(--glow-base);
  overflow: hidden;
}

.badges-trust {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 2rem;
  flex-wrap: wrap;
  max-width: 100%;
  padding: 0 1rem;
}

/* === PHILOSOPHY SECTION === */
.philosophy-section {
  padding: 4rem 0;
}

.philosophy-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.philosophy-card {
  background: linear-gradient(135deg, rgba(76,63,115,0.4), rgba(44,38,69,0.7));
  border: 1px solid var(--divider);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s;
}

.philosophy-card:hover {
  border-color: var(--gold-main);
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(212,165,116,0.2);
}

.philosophy-card.main-card {
  background: linear-gradient(135deg, rgba(139,92,246,0.3), rgba(76,63,115,0.5));
  border: 2px solid var(--violet-accent);
  text-align: center;
}

.philosophy-card h3 {
  color: var(--gold-main);
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.philosophy-card p {
  color: var(--text-pale);
  line-height: 1.8;
}

.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.philosophy-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

/* === SUCCESS STORIES === */
.success-stories {
  padding: 4rem 0;
}

.stories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.story-card {
  background: rgba(44,38,69,0.7);
  border: 1px solid var(--divider);
  border-radius: 16px;
  padding: 2rem;
  position: relative;
  transition: all 0.3s;
}

.story-card:hover {
  border-color: var(--gold-main);
  transform: translateY(-5px);
}

.story-card.featured {
  background: linear-gradient(135deg, rgba(139,92,246,0.2), rgba(212,165,116,0.15));
  border: 2px solid var(--gold-main);
  grid-column: span 1;
}

.story-quote {
  font-size: 4rem;
  color: var(--gold-main);
  opacity: 0.3;
  position: absolute;
  top: 10px;
  left: 20px;
  font-family: Georgia, serif;
  line-height: 1;
}

.story-text {
  color: var(--text-pale);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.story-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--violet-accent), var(--gold-main));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: white;
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-name {
  color: var(--text-white);
  font-weight: 600;
}

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

.story-rating {
  margin-top: 1rem;
  color: #fbbf24;
  font-size: 1.2rem;
  letter-spacing: 2px;
}

/* === BONUS SECTION === */
.bonus-hero {
  padding: 4rem 0;
}

.bonus-showcase {
  display: flex;
  justify-content: center;
}

.bonus-main-card {
  background: linear-gradient(135deg, rgba(139,92,246,0.3), rgba(76,63,115,0.6));
  border: 3px solid var(--gold-main);
  border-radius: 24px;
  padding: 3rem;
  max-width: 700px;
  width: 100%;
  text-align: center;
  box-shadow: 0 0 40px rgba(212,165,116,0.3);
}

.bonus-badge {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: rgba(212,165,116,0.2);
  border: 1px solid var(--gold-main);
  border-radius: 50px;
  color: var(--gold-main);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
}

.bonus-amount {
  font-size: 3rem;
  font-weight: 900;
  font-family: 'Cinzel', serif;
  color: var(--gold-main);
  text-shadow: 0 0 30px rgba(212,165,116,0.5);
  margin-bottom: 0.5rem;
}

.bonus-subtitle {
  color: var(--text-pale);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.bonus-breakdown {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.bonus-tier {
  background: rgba(0,0,0,0.3);
  border-radius: 12px;
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tier-label {
  color: var(--text-pale);
  font-weight: 600;
}

.tier-value {
  color: var(--gold-main);
  font-weight: 700;
  font-size: 1.1rem;
}

.tier-spins {
  color: var(--emerald);
  font-weight: 600;
  font-size: 0.9rem;
}

.bonus-terms {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  color: var(--text-pale);
  font-size: 0.9rem;
}

/* === GAMES CATEGORIES === */
.games-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.category-card {
  background: rgba(44,38,69,0.7);
  border: 1px solid var(--divider);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s;
}

.category-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold-main);
  box-shadow: 0 12px 32px rgba(212,165,116,0.3);
}

.category-card.slots { border-top: 3px solid #f59e0b; }
.category-card.live { border-top: 3px solid #ef4444; }
.category-card.tables { border-top: 3px solid #22c55e; }
.category-card.jackpots { border-top: 3px solid #8b5cf6; }
.category-card.shows { border-top: 3px solid #ec4899; }
.category-card.instant { border-top: 3px solid #06b6d4; }

.category-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.category-card h3 {
  color: var(--text-white);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.category-count {
  color: var(--gold-main);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.category-desc {
  color: var(--text-pale);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.category-btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  background: linear-gradient(135deg, var(--violet-accent), #7c3aed);
  color: white;
  border-radius: 50px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  transition: all 0.3s;
}

.category-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(139,92,246,0.5);
}

/* === TECH SECTION === */
.tech-section {
  padding: 4rem 0;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.tech-card {
  background: linear-gradient(135deg, rgba(44,38,69,0.8), rgba(26,21,40,0.9));
  border: 1px solid var(--divider);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s;
}

.tech-card:hover {
  border-color: var(--violet-accent);
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(139,92,246,0.3);
}

.tech-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.tech-card h3 {
  color: var(--gold-main);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.tech-card p {
  color: var(--text-pale);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.tech-stat {
  background: rgba(139,92,246,0.2);
  border-radius: 10px;
  padding: 1rem;
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--emerald);
}

.stat-label {
  color: var(--text-pale);
  font-size: 0.8rem;
  text-transform: uppercase;
}

/* === HIGHLIGHT BOXES (VIP & PAYMENT) === */
.highlight-box {
  background: linear-gradient(135deg, rgba(139,92,246,0.15), rgba(44,38,69,0.8));
  border: 2px solid var(--divider);
  border-radius: 20px;
  padding: 2.5rem;
  margin: 3rem 0;
}

.showcase-header {
  color: var(--gold-main);
  font-size: 1.5rem;
  font-family: 'Cinzel', serif;
  text-align: center;
  margin-bottom: 1.5rem;
}

.vip-tiers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.vip-tier-card {
  background: rgba(0,0,0,0.3);
  border: 1px solid var(--divider);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s;
}

.vip-tier-card:hover {
  border-color: var(--gold-main);
  transform: translateY(-3px);
}

.vip-tier-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.vip-tier-card h4 {
  color: var(--gold-main);
  margin-bottom: 0.75rem;
}

.vip-tier-card p {
  color: var(--text-pale);
  font-size: 0.85rem;
  line-height: 1.6;
}

/* === PAYMENT SHOWCASE === */
.payment-categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.payment-category h4 {
  color: var(--text-white);
  margin-bottom: 1rem;
}

.payment-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.payment-badge {
  padding: 0.4rem 0.8rem;
  background: rgba(139,92,246,0.3);
  border: 1px solid var(--violet-accent);
  border-radius: 6px;
  color: var(--text-white);
  font-size: 0.8rem;
  font-weight: 600;
}

.payment-note {
  color: var(--emerald);
  font-size: 0.85rem;
  font-weight: 500;
}

.payment-footer {
  text-align: center;
  color: var(--text-pale);
  font-size: 0.9rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--divider);
}

/* === PROVIDERS GRID === */
.providers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.provider-card {
  background: rgba(44,38,69,0.6);
  border: 1px solid var(--divider);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s;
}

.provider-card:hover {
  border-color: var(--gold-main);
  transform: translateY(-3px);
}

.provider-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.75rem;
}

.provider-card h4 {
  color: var(--text-white);
  margin-bottom: 0.5rem;
}

.provider-card p {
  color: var(--text-pale);
  font-size: 0.85rem;
}

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

.step-card {
  background: rgba(44,38,69,0.7);
  border: 1px solid var(--divider);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  position: relative;
  transition: all 0.3s;
}

.step-card:hover {
  border-color: var(--emerald);
  transform: translateY(-5px);
}

.step-number {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--emerald), #16a34a);
  color: white;
  font-size: 1rem;
  font-weight: 800;
  padding: 0.5rem 1rem;
  border-radius: 50px;
}

.step-icon {
  font-size: 3rem;
  margin: 1rem 0;
}

.step-card h3 {
  color: var(--gold-main);
  margin-bottom: 1rem;
}

.step-card p {
  color: var(--text-pale);
  line-height: 1.7;
}

.centered-cta {
  text-align: center;
  margin-top: 2rem;
}

/* === FAQ GRID === */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 1.5rem;
}

.faq-item {
  background: rgba(44,38,69,0.6);
  border: 1px solid var(--divider);
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.3s;
}

.faq-item:hover {
  border-color: var(--violet-accent);
}

.faq-item h3 {
  color: var(--gold-main);
  font-size: 1rem;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.faq-item p {
  color: var(--text-pale);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* === CTA NOTE === */
.cta-note {
  color: var(--text-pale);
  font-size: 0.9rem;
  margin-top: 1.5rem;
}

/* === SLOT TAG JACKPOT === */
.slot-tag.jackpot {
  background: linear-gradient(135deg, #f59e0b, #d97706);
}

/* === RESPONSIVE FIXES === */
@media (max-width: 768px) {
  .banner-hero {
    padding: 2rem 1rem;
    min-height: auto;
  }
  
  .banner-title {
    font-size: 1.8rem;
  }
  
  .badges-trust {
    gap: 1rem;
  }
  
  .badge-item {
    padding: 0.5rem 0.75rem;
  }
  
  .bonus-amount {
    font-size: 2rem;
  }
  
  .bonus-main-card {
    padding: 2rem 1.5rem;
  }
  
  .bonus-tier {
    flex-direction: column;
    text-align: center;
  }
  
  .faq-grid {
    grid-template-columns: 1fr;
  }
  
  .vip-tiers-grid {
    grid-template-columns: 1fr;
  }
  
  .payment-categories-grid {
    grid-template-columns: 1fr;
  }
  
  .story-card.featured {
    grid-column: span 1;
  }
}
/* === COMPARISON SECTION === */
.comparison-section {
  padding: 4rem 0;
  background: linear-gradient(180deg, rgba(139,92,246,0.08), transparent);
}

.comparison-content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.comparison-intro {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.comparison-intro p {
  color: var(--text-pale);
  font-size: 1.1rem;
  line-height: 1.9;
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.comparison-card {
  background: linear-gradient(135deg, rgba(44,38,69,0.8), rgba(26,21,40,0.9));
  border: 1px solid var(--divider);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.3s;
}

.comparison-card:hover {
  border-color: var(--gold-main);
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(212,165,116,0.2);
}

.comparison-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.comparison-card h3 {
  color: var(--gold-main);
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
}

.comparison-versus {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.versus-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  font-size: 0.9rem;
}

.versus-item.bad {
  background: rgba(239,68,68,0.15);
  border: 1px solid rgba(239,68,68,0.3);
}

.versus-item.bad .versus-label {
  color: #fca5a5;
}

.versus-item.bad .versus-value {
  color: #ef4444;
  font-weight: 600;
}

.versus-item.good {
  background: rgba(34,197,94,0.15);
  border: 1px solid rgba(34,197,94,0.3);
}

.versus-item.good .versus-label {
  color: #86efac;
}

.versus-item.good .versus-value {
  color: var(--emerald);
  font-weight: 700;
}

.comparison-card p {
  color: var(--text-pale);
  line-height: 1.7;
  font-size: 0.95rem;
}

.comparison-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  padding: 2.5rem;
  background: rgba(139,92,246,0.1);
  border-radius: 20px;
  border: 1px solid var(--divider);
}

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

.stat-big {
  display: block;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--gold-main);
  font-family: 'Cinzel', serif;
  margin-bottom: 0.5rem;
}

.stat-text {
  color: var(--text-pale);
  font-size: 0.9rem;
}

.comparison-conclusion {
  background: linear-gradient(135deg, rgba(212,165,116,0.15), rgba(139,92,246,0.1));
  border: 2px solid var(--gold-main);
  border-radius: 20px;
  padding: 3rem;
  text-align: center;
}

.comparison-conclusion h3 {
  color: var(--gold-main);
  font-size: 1.5rem;
  font-family: 'Cinzel', serif;
  margin-bottom: 1.5rem;
}

.comparison-conclusion p {
  color: var(--text-pale);
  line-height: 1.9;
  max-width: 800px;
  margin: 0 auto 2rem;
}

/* === MOBILE SECTION === */
.mobile-section {
  padding: 4rem 0;
  background: linear-gradient(180deg, transparent, rgba(34,197,94,0.05), transparent);
}

.mobile-content {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.mobile-hero-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
  align-items: center;
}

.mobile-text h3 {
  color: var(--gold-main);
  font-size: 1.8rem;
  font-family: 'Cinzel', serif;
  margin-bottom: 1.5rem;
}

.mobile-text p {
  color: var(--text-pale);
  line-height: 1.9;
  margin-bottom: 1.5rem;
}

.mobile-features {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2rem;
}

.mobile-feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: rgba(44,38,69,0.5);
  border: 1px solid var(--divider);
  border-radius: 12px;
  padding: 1.25rem;
  transition: all 0.3s;
}

.mobile-feature:hover {
  border-color: var(--emerald);
  background: rgba(34,197,94,0.1);
}

.feature-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.mobile-feature strong {
  color: var(--text-white);
  display: block;
  margin-bottom: 0.5rem;
}

.mobile-feature p {
  color: var(--text-pale);
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.6;
}

/* Phone Mockup */
.mobile-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.phone-mockup {
  width: 260px;
  height: 520px;
  background: linear-gradient(135deg, #1a1528, #2c2645);
  border-radius: 40px;
  padding: 12px;
  box-shadow: 
    0 0 0 3px var(--gold-main),
    0 20px 60px rgba(0,0,0,0.5),
    inset 0 0 30px rgba(139,92,246,0.2);
  position: relative;
}

.phone-mockup::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 25px;
  background: #0a0812;
  border-radius: 15px;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #1a1528, #2c2645);
  border-radius: 30px;
  padding: 50px 15px 20px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.screen-header {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-pale);
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--divider);
}

.screen-header span:last-child {
  color: var(--emerald);
  font-weight: 700;
}

.screen-game {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(139,92,246,0.3), rgba(212,165,116,0.2));
  border-radius: 16px;
  gap: 1rem;
}

.game-placeholder {
  font-size: 4rem;
  animation: pulse-glow 2s ease-in-out infinite;
}

.screen-game span {
  color: var(--gold-main);
  font-weight: 700;
  font-size: 0.9rem;
}

.screen-buttons {
  display: flex;
  justify-content: center;
  padding-top: 1rem;
}

.screen-btn {
  background: linear-gradient(135deg, var(--emerald), #16a34a);
  color: white;
  padding: 0.75rem 3rem;
  border-radius: 50px;
  font-weight: 800;
  font-size: 1rem;
  box-shadow: 0 4px 15px rgba(34,197,94,0.5);
}

.mobile-badges {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}

.mobile-badge {
  padding: 0.5rem 1rem;
  background: rgba(139,92,246,0.2);
  border: 1px solid var(--violet-accent);
  border-radius: 50px;
  color: var(--text-white);
  font-size: 0.8rem;
  font-weight: 600;
}

/* Mobile Games Showcase */
.mobile-games-showcase {
  background: rgba(44,38,69,0.5);
  border: 1px solid var(--divider);
  border-radius: 20px;
  padding: 2.5rem;
}

.mobile-games-showcase h3 {
  color: var(--gold-main);
  font-size: 1.5rem;
  font-family: 'Cinzel', serif;
  text-align: center;
  margin-bottom: 1rem;
}

.showcase-intro {
  color: var(--text-pale);
  text-align: center;
  max-width: 700px;
  margin: 0 auto 2rem;
  line-height: 1.8;
}

.mobile-games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.mobile-game-card {
  display: flex;
  gap: 1rem;
  align-items: center;
  background: rgba(26,21,40,0.8);
  border: 1px solid var(--divider);
  border-radius: 12px;
  padding: 1rem;
  transition: all 0.3s;
}

.mobile-game-card:hover {
  border-color: var(--gold-main);
  transform: translateX(5px);
}

.game-thumb {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--violet-accent), var(--gold-main));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  flex-shrink: 0;
}

.game-info h4 {
  color: var(--text-white);
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.game-info p {
  color: var(--text-pale);
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
}

.game-tag {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  background: rgba(34,197,94,0.2);
  border: 1px solid var(--emerald);
  border-radius: 4px;
  color: var(--emerald);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
}

/* Mobile CTA Box */
.mobile-cta-box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
  background: linear-gradient(135deg, rgba(139,92,246,0.2), rgba(34,197,94,0.15));
  border: 2px solid var(--emerald);
  border-radius: 20px;
  padding: 2.5rem;
}

.mobile-cta-content h3 {
  color: var(--gold-main);
  font-size: 1.5rem;
  font-family: 'Cinzel', serif;
  margin-bottom: 1rem;
}

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

.qr-placeholder {
  display: flex;
  justify-content: center;
}

.qr-box {
  width: 140px;
  height: 140px;
  background: white;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.qr-box span {
  font-size: 3rem;
}

.qr-box p {
  color: #1a1528;
  font-size: 0.8rem;
  font-weight: 600;
  margin: 0;
}

/* === RESPONSIVE === */
@media (max-width: 968px) {
  .mobile-hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .mobile-visual {
    order: -1;
  }
  
  .phone-mockup {
    width: 220px;
    height: 440px;
  }
  
  .mobile-cta-box {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .qr-placeholder {
    order: -1;
  }
}

@media (max-width: 768px) {
  .comparison-stats {
    padding: 1.5rem;
  }
  
  .stat-big {
    font-size: 2rem;
  }
  
  .comparison-conclusion {
    padding: 2rem 1.5rem;
  }
  
  .mobile-games-showcase {
    padding: 1.5rem;
  }
  
  .mobile-cta-box {
    padding: 1.5rem;
  }
  
  .phone-mockup {
    width: 200px;
    height: 400px;
  }
}