/* Mad Casino — Stylesheet */

/* ----- Reset & Base ----- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --brand-red:    #e8193c;
  --brand-pink:   #f02e67;
  --brand-dark:   #0b0b10;
  --brand-card:   #13131a;
  --brand-card2:  #1a1a26;
  --brand-border: #2a2a3a;
  --brand-gold:   #f4c542;
  --brand-text:   #e8e8f0;
  --brand-muted:  #7b7b9a;
  --brand-green:  #2ecc6b;
  --radius:       14px;
  --radius-sm:    8px;
  --transition:   .28s cubic-bezier(.4,0,.2,1);
  --font:         'Inter', 'Segoe UI', Arial, sans-serif;
  --shadow-card:  0 4px 32px rgba(0,0,0,.55);
  --shadow-glow:  0 0 24px rgba(232,25,60,.35);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--brand-dark);
  color: var(--brand-text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ----- Scrollbar ----- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--brand-card); }
::-webkit-scrollbar-thumb { background: var(--brand-red); border-radius: 3px; }

/* ----- Typography ----- */
h1,h2,h3,h4,h5 { font-weight: 700; line-height: 1.2; letter-spacing: -.02em; }
h1 { font-size: clamp(1.8rem, 4vw, 3rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2.1rem); }
h3 { font-size: clamp(1.1rem, 2.2vw, 1.45rem); }
p  { color: #b0b0cc; font-size: .97rem; }

.section-title {
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  font-weight: 700;
  margin-bottom: 8px;
}
.section-sub {
  color: var(--brand-muted);
  font-size: .9rem;
  margin-bottom: 36px;
}
.accent { color: var(--brand-red); }
.gold   { color: var(--brand-gold); }

/* ----- Layout ----- */
.container { max-width: 1260px; margin: 0 auto; padding: 0 20px; }
.section   { padding: 72px 0; }
.section-alt { background: var(--brand-card); }

/* =============================================
   HEADER / NAVBAR
============================================= */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(11,11,16,.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--brand-border);
  height: 70px;
  display: flex;
  align-items: center;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 20px;
  gap: 16px;
}

.nav-logo img {
  height: 44px;
  width: auto;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-menu a {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: .87rem;
  font-weight: 500;
  color: var(--brand-muted);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}
.nav-menu a:hover,
.nav-menu a.active {
  color: var(--brand-text);
  background: rgba(255,255,255,.07);
}
.nav-menu a.live-link { color: var(--brand-red); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: .87rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  white-space: nowrap;
}
.btn-outline {
  background: transparent;
  border: 1.5px solid var(--brand-border);
  color: var(--brand-text);
}
.btn-outline:hover { border-color: var(--brand-red); color: var(--brand-red); }

.btn-primary {
  background: var(--brand-red);
  color: #fff;
  box-shadow: 0 4px 20px rgba(232,25,60,.4);
}
.btn-primary:hover {
  background: #ff2044;
  box-shadow: 0 6px 28px rgba(232,25,60,.6);
  transform: translateY(-1px);
}
.btn-gold {
  background: linear-gradient(135deg, #f4c542 0%, #e8a020 100%);
  color: #111;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(244,197,66,.35);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(244,197,66,.5);
}
.btn-lg { padding: 14px 32px; font-size: 1rem; }

/* Hamburger */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
}
.nav-burger span {
  width: 24px; height: 2px;
  background: var(--brand-text);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav-burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile Nav */
.nav-mobile {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 70px; left: 0; right: 0;
  background: rgba(11,11,16,.98);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--brand-border);
  padding: 20px;
  z-index: 999;
  gap: 6px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  color: var(--brand-muted);
  font-weight: 500;
  transition: all var(--transition);
  border: 1px solid transparent;
}
.nav-mobile a:hover { color: #fff; border-color: var(--brand-border); }
.nav-mobile .btn { width: 100%; margin-top: 6px; justify-content: center; }

/* =============================================
   HERO SLIDER
============================================= */
.hero-slider {
  position: relative;
  margin-top: 70px;
  overflow: hidden;
  height: 580px;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .9s ease;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}
.slide.active { opacity: 1; z-index: 1; }

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    rgba(11,11,16,.92) 0%,
    rgba(11,11,16,.65) 50%,
    rgba(11,11,16,.2) 100%);
}

.slide-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding: 0 0 0 60px;
}

.slide-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(232,25,60,.15);
  border: 1px solid rgba(232,25,60,.4);
  color: var(--brand-red);
  font-size: .78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 18px;
}

.slide-content h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  margin-bottom: 14px;
  line-height: 1.15;
}
.slide-content p {
  font-size: 1rem;
  color: #9090b8;
  margin-bottom: 28px;
  max-width: 480px;
}
.slide-cta { display: flex; gap: 12px; flex-wrap: wrap; }

/* Slider Controls */
.slider-controls {
  position: absolute;
  bottom: 28px;
  left: 60px;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 16px;
}
.slider-dots { display: flex; gap: 8px; }
.slider-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.3);
  cursor: pointer;
  transition: all var(--transition);
}
.slider-dot.active {
  width: 28px;
  border-radius: 4px;
  background: var(--brand-red);
}

.slider-nav {
  display: flex;
  gap: 8px;
  position: absolute;
  right: 40px;
  bottom: 20px;
  z-index: 5;
}
.slider-nav button {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.06);
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.slider-nav button:hover {
  background: var(--brand-red);
  border-color: var(--brand-red);
}

/* =============================================
   STATS BAR
============================================= */
.stats-bar {
  background: var(--brand-card);
  border-top: 1px solid var(--brand-border);
  border-bottom: 1px solid var(--brand-border);
  padding: 24px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 24px;
  border-right: 1px solid var(--brand-border);
}
.stat-item:last-child { border-right: none; }
.stat-icon {
  width: 46px; height: 46px;
  background: rgba(232,25,60,.12);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.stat-num {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.stat-label { font-size: .78rem; color: var(--brand-muted); margin-top: 3px; }

/* =============================================
   GAMES GRID
============================================= */
.games-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.games-tab {
  padding: 8px 20px;
  border-radius: 50px;
  border: 1.5px solid var(--brand-border);
  background: transparent;
  color: var(--brand-muted);
  font-size: .84rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
}
.games-tab:hover { border-color: var(--brand-red); color: var(--brand-red); }
.games-tab.active {
  background: var(--brand-red);
  border-color: var(--brand-red);
  color: #fff;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.game-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  background: #0e0e18;
  border: 1px solid var(--brand-border);
  aspect-ratio: 1 / 1;
}
.game-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 20px 40px rgba(0,0,0,.6), 0 0 0 1px var(--brand-red);
  z-index: 2;
  border-color: var(--brand-red);
}
.game-card > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform .5s ease;
  display: block;
}
.game-card:hover > img { transform: scale(1.06); }


.game-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 45%,
    rgba(0,0,0,.55) 70%,
    rgba(0,0,0,.92) 100%
  );
  display: flex;
  align-items: flex-end;
  padding: 12px;
  transition: background var(--transition);
}
.game-card:hover .game-card-overlay {
  background: linear-gradient(
    180deg,
    rgba(0,0,0,.15) 0%,
    rgba(0,0,0,.6) 55%,
    rgba(0,0,0,.96) 100%
  );
}
.game-card-info { width: 100%; }
.game-card-title {
  font-size: .8rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
  line-height: 1.2;
  text-shadow: 0 1px 4px rgba(0,0,0,.8);
}
.game-card-provider {
  font-size: .65rem;
  color: rgba(255,255,255,.55);
  text-shadow: 0 1px 3px rgba(0,0,0,.8);
}


.game-play-btn {
  width: 100%;
  margin-top: 8px;
  padding: 7px;
  border-radius: 6px;
  background: var(--brand-red);
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
  text-align: center;
  transition: background var(--transition), opacity var(--transition), transform var(--transition);
  opacity: 0;
  transform: translateY(6px);
  display: block;
}
.game-card:hover .game-play-btn {
  opacity: 1;
  transform: translateY(0);
}
.game-play-btn:hover { background: #ff2044; }
.game-badge {
  position: absolute;
  top: 10px; left: 10px;
  background: var(--brand-gold);
  color: #111;
  font-size: .65rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: .05em;
}
.game-badge.new { background: var(--brand-green); color: #fff; }
.game-badge.hot { background: var(--brand-red); color: #fff; }

.games-load-more {
  text-align: center;
  margin-top: 36px;
}

/* =============================================
   PROMOTIONS / BANNERS
============================================= */
.promo-banner {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  min-height: 260px;
  display: flex;
  align-items: center;
}
.promo-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.promo-banner-content {
  position: relative;
  z-index: 2;
  padding: 40px 48px;
  max-width: 600px;
}
.promo-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11,11,16,.88) 0%, rgba(11,11,16,.4) 100%);
  z-index: 1;
}

/* Offers Grid */
.offers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 36px;
}
.offer-card {
  background: var(--brand-card2);
  border-radius: var(--radius);
  border: 1px solid var(--brand-border);
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition);
}
.offer-card:hover {
  border-color: var(--brand-red);
  transform: translateY(-3px);
}
.offer-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-red), var(--brand-pink));
}
.offer-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.offer-tag.slots { background: rgba(240,46,103,.15); color: var(--brand-pink); }
.offer-tag.sports { background: rgba(46,204,107,.12); color: var(--brand-green); }
.offer-tag.live   { background: rgba(244,197,66,.12); color: var(--brand-gold); }
.offer-tag.vip    { background: rgba(91,73,216,.15); color: #8b7dff; }
.offer-amount {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-bottom: 6px;
}
.offer-desc {
  font-size: .85rem;
  color: var(--brand-muted);
  margin-bottom: 20px;
  line-height: 1.5;
}
.offer-label {
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--brand-muted);
  margin-bottom: 4px;
}

/* =============================================
   PROVIDERS STRIP
============================================= */
.providers-strip {
  padding: 40px 0;
  background: var(--brand-card);
  border-top: 1px solid var(--brand-border);
  border-bottom: 1px solid var(--brand-border);
  overflow: hidden;
}
.providers-track {
  display: flex;
  gap: 48px;
  animation: scroll-providers 30s linear infinite;
  width: max-content;
}
.providers-track:hover { animation-play-state: paused; }
.provider-logo {
  height: 36px;
  opacity: .45;
  filter: grayscale(1) brightness(1.6);
  transition: opacity var(--transition), filter var(--transition);
  cursor: default;
  white-space: nowrap;
  display: flex;
  align-items: center;
  font-size: .85rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.provider-logo:hover { opacity: 1; filter: grayscale(0) brightness(1); }

@keyframes scroll-providers {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =============================================
   ABOUT / INFO SECTION
============================================= */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-text { padding: 0; }
.about-text h2 { margin-bottom: 18px; }
.about-text p { margin-bottom: 16px; color: #9090b8; }
.about-list { margin: 24px 0; display: flex; flex-direction: column; gap: 12px; }
.about-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: .93rem;
  color: #b0b0cc;
}
.about-list li::before {
  content: '✓';
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(46,204,107,.15);
  color: var(--brand-green);
  font-size: .75rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

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

.about-visual {
  display: flex;
  align-items: center;
}
.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  width: 100%;
}
.about-stat-card {
  background: var(--brand-card2);
  border: 1px solid var(--brand-border);
  border-radius: var(--radius);
  padding: 24px 16px;
  text-align: center;
  transition: border-color var(--transition), transform var(--transition);
}
.about-stat-card:hover {
  border-color: rgba(232,25,60,.4);
  transform: translateY(-3px);
}
.about-stat-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  margin: 0 auto 12px;
}
.about-stat-num {
  font-size: 1.5rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-bottom: 6px;
}
.about-stat-label {
  font-size: .72rem;
  color: var(--brand-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .06em;
}

@media (max-width: 480px) {
  .about-stats-grid { grid-template-columns: repeat(2, 1fr); }
}

/* INFO TABLE */
.info-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--brand-border);
  margin-top: 32px;
}
.info-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .88rem;
}
.info-table th {
  background: rgba(232,25,60,.1);
  color: var(--brand-text);
  font-weight: 700;
  text-align: left;
  padding: 14px 20px;
  border-bottom: 1px solid var(--brand-border);
  white-space: nowrap;
}
.info-table td {
  padding: 13px 20px;
  color: #9090b8;
  border-bottom: 1px solid rgba(42,42,58,.6);
  vertical-align: top;
}
.info-table tr:last-child td { border-bottom: none; }
.info-table tr:hover td { background: rgba(255,255,255,.02); }
.table-accent { color: var(--brand-text); font-weight: 600; }

/* =============================================
   PAYMENT METHODS
============================================= */
.payment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 14px;
  margin-top: 28px;
}
.payment-item {
  background: var(--brand-card2);
  border: 1px solid var(--brand-border);
  border-radius: var(--radius-sm);
  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: .72rem;
  color: var(--brand-muted);
  font-weight: 600;
  transition: border-color var(--transition);
  cursor: default;
}
.payment-item:hover { border-color: var(--brand-red); }
.payment-item span { font-size: 1.8rem; }

/* =============================================
   FAQ ACCORDION
============================================= */
.faq-list { display: flex; flex-direction: column; gap: 10px; margin-top: 28px; }
.faq-item {
  background: var(--brand-card2);
  border: 1px solid var(--brand-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.open { border-color: rgba(232,25,60,.4); }
.faq-question {
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-weight: 600;
  font-size: .92rem;
  gap: 16px;
}
.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--brand-border);
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem;
  flex-shrink: 0;
  transition: all var(--transition);
  color: var(--brand-muted);
}
.faq-item.open .faq-icon {
  background: var(--brand-red);
  border-color: var(--brand-red);
  color: #fff;
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .3s ease;
  padding: 0 22px;
  color: #9090b8;
  font-size: .9rem;
  line-height: 1.7;
}
.faq-item.open .faq-answer {
  max-height: 300px;
  padding-bottom: 18px;
}

/* =============================================
   FOOTER
============================================= */
.site-footer {
  background: #080810;
  border-top: 1px solid var(--brand-border);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--brand-border);
}
.footer-brand p {
  color: var(--brand-muted);
  font-size: .85rem;
  margin-top: 16px;
  line-height: 1.7;
  max-width: 300px;
}
.footer-brand img { height: 42px; }
.footer-col h4 {
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--brand-muted);
  margin-bottom: 16px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: .86rem;
  color: #7b7b9a;
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--brand-text); }

.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: .78rem;
  color: #4a4a6a;
}
.footer-badges { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.age-badge {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 2px solid #4a4a6a;
  color: #4a4a6a;
  font-size: .78rem;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}
.cert-badge {
  padding: 5px 12px;
  border: 1px solid #4a4a6a;
  border-radius: 4px;
  font-size: .7rem;
  font-weight: 700;
  color: #4a4a6a;
  text-transform: uppercase;
  letter-spacing: .07em;
}

/* =============================================
   RESPONSIBLE GAMBLING
============================================= */
.responsible-bar {
  background: rgba(11,11,16,.8);
  border-top: 1px solid var(--brand-border);
  padding: 14px 0;
  text-align: center;
}
.responsible-bar p {
  font-size: .74rem;
  color: var(--brand-muted);
}
.responsible-bar a { color: var(--brand-red); text-decoration: underline; }

/* =============================================
   SEO TEXT BLOCK
============================================= */
.seo-block {
  padding: 56px 0;
  background: #0b0b10;
}
.seo-block h2 { margin-bottom: 20px; }
.seo-block h3 { margin: 28px 0 12px; color: var(--brand-text); font-size: 1.1rem; }
.seo-block p  { margin-bottom: 14px; font-size: .92rem; }
.seo-block ul {
  list-style: disc;
  padding-left: 22px;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.seo-block ul li { color: #9090b8; font-size: .9rem; }

/* =============================================
   LIVE CASINO SECTION
============================================= */
.live-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
}
.live-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 220px;
  cursor: pointer;
}
.live-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.live-card:hover img { transform: scale(1.06); }
.live-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.2) 0%, rgba(0,0,0,.82) 100%);
}
.live-card-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 18px 20px;
  z-index: 2;
}
.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--brand-red);
  color: #fff;
  font-size: .68rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: .07em;
}
.live-badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #fff;
  animation: pulse-dot 1.2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,100% { opacity: 1; }
  50% { opacity: .3; }
}
.live-card h3 { font-size: .95rem; color: #fff; margin-bottom: 4px; }
.live-card p  { font-size: .76rem; color: rgba(255,255,255,.6); }

/* =============================================
   STICKY CTA BAR (mobile)
============================================= */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 900;
  padding: 12px 16px;
  background: rgba(11,11,16,.97);
  border-top: 1px solid var(--brand-border);
  gap: 10px;
}
.sticky-cta .btn { flex: 1; justify-content: center; }

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

/* ---- Tablet 1024px ---- */
@media (max-width: 1024px) {
  .games-grid { grid-template-columns: repeat(4,1fr); gap: 12px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { gap: 36px; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .live-grid { grid-template-columns: repeat(2,1fr); }
}

/* ---- Tablet 768px ---- */
@media (max-width: 768px) {
  .nav-menu { display: none; }
  .nav-burger { display: flex; }
  .nav-actions .btn-outline { display: none; }

  .hero-slider { height: 420px; }
  .slide-content { padding: 0 20px; }
  .slide-content h2 { font-size: 1.5rem; }
  .slider-controls { left: 20px; bottom: 20px; }
  .slider-nav { right: 20px; bottom: 16px; }
  .slider-nav button { width: 36px; height: 36px; font-size: .95rem; }

  .about-grid { grid-template-columns: 1fr; }
  .about-screenshot { order: -1; }

  .games-grid { grid-template-columns: repeat(3,1fr); gap: 10px; }
  .game-card { aspect-ratio: 3 / 4; }
  .offers-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2,1fr); gap: 0; }

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

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

  .section { padding: 48px 0; }
  .promo-banner-content { padding: 28px 24px; }

  .sticky-cta { display: flex; }
  body { padding-bottom: 66px; }
}

/* ---- Mobile 480px ---- */
@media (max-width: 480px) {
  .games-grid { grid-template-columns: repeat(2,1fr); gap: 8px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item { padding: 0 16px; }
  .hero-slider { height: 360px; }
  .slide-content p { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .games-tabs { gap: 6px; }
  .games-tab { font-size: .78rem; padding: 6px 14px; }
  .payment-grid { grid-template-columns: repeat(4,1fr); }
  .section-title { font-size: 1.3rem; }
  h1 { font-size: 1.6rem; }
}

/* =============================================
   UTILITY
============================================= */
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0 !important; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.gap-12 { gap: 12px; }
.hidden { display: none !important; }

/* Glow accent lines */
.glow-line {
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--brand-red), transparent);
  opacity: .5;
  margin: 0 0 40px;
}

/* Trust icons row */
.trust-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  color: var(--brand-muted);
}
.trust-item span { font-size: 1.2rem; }

.providers-strip .container { overflow: hidden; padding: 0 20px; }




@media (max-width: 768px) {
  #sports .about-grid > div:last-child > div > div:first-child {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .live-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .live-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  #sports .about-grid > div:last-child > div > div:first-child {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}


@media (max-width: 380px) {
  .nav-logo img { height: 36px; }
  .nav-actions .btn { padding: 8px 14px; font-size: .8rem; }
}

.nav-menu a.active {
  color: #fff !important;
  background: rgba(232,25,60,.12);
}


@media (max-width: 640px) {
  .slide-content {
    padding: 0 16px !important;
    max-width: 100%;
  }
  .slide-cta { flex-direction: column; gap: 8px; }
  .slide-cta .btn { width: 100%; justify-content: center; }
  .slider-controls { left: 16px; }
  .slider-nav { right: 12px; bottom: 12px; }
}


.faq-icon i {
  transition: transform var(--transition);
  display: inline-block;
}


@media (max-width: 640px) {
  .offers-grid { grid-template-columns: 1fr; }
  .offer-amount { font-size: 2rem; }
}

/* =============================================
   RATING CARD RESPONSIVE
============================================= */
@media (max-width: 640px) {
  .fade-in[style*="grid-template-columns:1fr auto"] {
    grid-template-columns: 1fr !important;
  }
}

/* =============================================
   PROS/CONS GRID RESPONSIVE
============================================= */
@media (max-width: 640px) {
  .fade-in[style*="grid-template-columns:1fr 1fr;gap:20px;margin-bottom:56px"] {
    grid-template-columns: 1fr !important;
  }
}

/* ==============================================
   BONUS CALCULATOR
============================================== */
.calc-wrapper {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 28px;
  align-items: start;
}
.calc-card {
  background: var(--brand-card2);
  border: 1px solid var(--brand-border);
  border-radius: var(--radius);
  padding: 36px;
}
.calc-input-group { margin-bottom: 28px; }
.calc-input-group label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  color: var(--brand-muted);
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-bottom: 12px;
}
.calc-input-wrap {
  display: flex;
  align-items: center;
  background: var(--brand-dark);
  border: 1.5px solid var(--brand-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color var(--transition);
}
.calc-input-wrap:focus-within { border-color: var(--brand-red); }
.calc-currency {
  padding: 0 16px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--brand-red);
  background: rgba(232,25,60,.08);
  align-self: stretch;
  display: flex;
  align-items: center;
  border-right: 1px solid var(--brand-border);
}
.calc-input-wrap input[type="number"] {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  padding: 14px 18px;
  font-family: var(--font);
  width: 100%;
}
.calc-input-wrap input[type="number"]::-webkit-inner-spin-button,
.calc-input-wrap input[type="number"]::-webkit-outer-spin-button { -webkit-appearance: none; }
.calc-slider-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
  font-size: .75rem;
  color: var(--brand-muted);
}
.calc-slider-row input[type="range"] {
  flex: 1;
  -webkit-appearance: none;
  height: 4px;
  border-radius: 2px;
  background: var(--brand-border);
  outline: none;
  cursor: pointer;
}
.calc-slider-row input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--brand-red);
  box-shadow: 0 0 8px rgba(232,25,60,.5);
  cursor: pointer;
}
.calc-results {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 24px;
}
.calc-result-item {
  background: var(--brand-dark);
  border: 1px solid var(--brand-border);
  border-radius: var(--radius-sm);
  padding: 16px;
}
.calc-result-label {
  font-size: .76rem;
  color: var(--brand-muted);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.calc-result-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.calc-result-value.gold  { color: var(--brand-gold); }
.calc-result-value.muted { color: var(--brand-muted); font-size: 1.1rem; }
.calc-result-value.green { color: var(--brand-green); font-size: 1rem; }
.calc-note {
  background: rgba(139,125,255,.08);
  border: 1px solid rgba(139,125,255,.2);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-size: .82rem;
  color: #9090b8;
  margin-bottom: 20px;
  display: flex;
  gap: 10px;
  line-height: 1.6;
}
.calc-note .fas { color: #8b7dff; flex-shrink: 0; margin-top: 2px; }
.calc-cta { width: 100%; justify-content: center; }
.calc-tip-card {
  background: var(--brand-card2);
  border: 1px solid var(--brand-border);
  border-radius: var(--radius);
  padding: 22px;
}
.calc-tip-title {
  font-weight: 700;
  font-size: .88rem;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.calc-tip-card p { font-size: .82rem; color: #9090b8; margin-bottom: 0; }
@media (max-width: 900px) {
  .calc-wrapper { grid-template-columns: 1fr; }
  .calc-sidebar { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
  .calc-sidebar > div { margin-top: 0 !important; }
}
@media (max-width: 560px) {
  .calc-results { grid-template-columns: 1fr; }
  .calc-sidebar { grid-template-columns: 1fr; }
  .calc-card { padding: 22px; }
}

/* ==============================================
   VOLATILITY BADGES
============================================== */
.volatility-badge {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 50px;
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.volatility-badge.high { background: rgba(232,25,60,.15); color: var(--brand-red); }
.volatility-badge.mid  { background: rgba(244,197,66,.12); color: var(--brand-gold); }
.volatility-badge.low  { background: rgba(46,204,107,.12); color: var(--brand-green); }

/* ==============================================
   NOT-FOR BLOCK
============================================== */
.notfor-wrapper {
  background: var(--brand-card2);
  border: 1px solid var(--brand-border);
  border-radius: var(--radius);
  overflow: hidden;
}
.notfor-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 28px;
  border-bottom: 1px solid var(--brand-border);
  background: rgba(232,25,60,.04);
}
.notfor-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.notfor-item {
  display: flex;
  gap: 16px;
  padding: 22px 28px;
  border-bottom: 1px solid var(--brand-border);
  border-right: 1px solid var(--brand-border);
  transition: background var(--transition);
}
.notfor-item:nth-child(even) { border-right: none; }
.notfor-item:nth-last-child(-n+2) { border-bottom: none; }
.notfor-item:hover { background: rgba(255,255,255,.02); }
.notfor-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(232,25,60,.12);
  color: var(--brand-red);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.notfor-title {
  font-weight: 700;
  font-size: .88rem;
  color: var(--brand-text);
  margin-bottom: 6px;
}
.notfor-desc { font-size: .82rem; color: #9090b8; line-height: 1.6; margin: 0; }
@media (max-width: 768px) {
  .notfor-grid { grid-template-columns: 1fr; }
  .notfor-item { border-right: none; }
  .notfor-item:nth-last-child(-n+2) { border-bottom: 1px solid var(--brand-border); }
  .notfor-item:last-child { border-bottom: none; }
}

/* ==============================================
   DECISION TREE
============================================== */
.decision-tree {
  background: var(--brand-card2);
  border: 1px solid var(--brand-border);
  border-radius: var(--radius);
  padding: 36px;
  max-width: 700px;
  margin: 0 auto;
}
.decision-step { display: none; }
.decision-step.active { display: block; }
.decision-question {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--brand-text);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.decision-options { display: flex; flex-direction: column; gap: 10px; }
.decision-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: var(--brand-dark);
  border: 1.5px solid var(--brand-border);
  border-radius: var(--radius-sm);
  color: var(--brand-text);
  font-size: .9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  text-align: left;
  font-family: var(--font);
}
.decision-btn:hover {
  border-color: var(--brand-red);
  color: #fff;
  background: rgba(232,25,60,.08);
  transform: translateX(4px);
}
.decision-btn .fas { color: var(--brand-red); width: 18px; text-align: center; }
.decision-back {
  margin-top: 16px;
  background: transparent;
  border: none;
  color: var(--brand-muted);
  font-size: .82rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 0;
  font-family: var(--font);
  transition: color var(--transition);
}
.decision-back:hover { color: var(--brand-text); }
.decision-result { text-align: center; padding: 12px 0; }
.result-icon { font-size: 3rem; margin-bottom: 14px; }
.result-title { font-size: 1.1rem; font-weight: 800; color: #fff; margin-bottom: 12px; }
.decision-result p {
  font-size: .9rem;
  color: #9090b8;
  margin-bottom: 20px;
  line-height: 1.7;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.decision-restart {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  margin-left: 12px;
  background: transparent;
  border: 1.5px solid var(--brand-border);
  border-radius: 50px;
  color: var(--brand-muted);
  font-size: .82rem;
  padding: 8px 20px;
  cursor: pointer;
  font-family: var(--font);
  transition: all var(--transition);
}
.decision-restart:hover { border-color: var(--brand-red); color: var(--brand-red); }

/* ==============================================
   FRANCE SPECIFICS
============================================== */
.france-block h3 {
  font-size: 1.05rem;
  color: var(--brand-text);
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--brand-border);
}
.tax-cards { display: flex; flex-direction: column; gap: 12px; margin-top: 16px; }
.tax-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 20px;
  border-radius: var(--radius-sm);
}
.tax-card.green { background: rgba(46,204,107,.07);  border: 1px solid rgba(46,204,107,.2); }
.tax-card.yellow{ background: rgba(244,197,66,.07);  border: 1px solid rgba(244,197,66,.2); }
.tax-card.red   { background: rgba(232,25,60,.06);   border: 1px solid rgba(232,25,60,.15); }
.tax-card-icon  { font-size: 1.3rem; color: var(--brand-green); flex-shrink: 0; margin-top: 2px; }
.tax-card p     { font-size: .85rem; margin: 0; }

