/* ===== LADBROKES CASINO UK — STYLESHEET ===== */

:root {
  --red:        #C8102E;
  --red-dark:   #9B0B22;
  --red-light:  #E8213E;
  --gold:       #E5A820;
  --gold-light: #F5C842;
  --dark:       #0A0A0A;
  --dark-2:     #121212;
  --dark-3:     #1A1A1A;
  --dark-4:     #222222;
  --dark-card:  #181818;
  --border:     #2A2A2A;
  --text:       #E8E8E8;
  --text-muted: #9A9A9A;
  --text-dim:   #666666;
  --white:      #FFFFFF;
  --green:      #22C55E;
  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  18px;
  --radius-xl:  24px;
  --shadow:     0 4px 24px rgba(0,0,0,0.6);
  --shadow-red: 0 4px 24px rgba(200,16,46,0.3);
  --font-main:  'Segoe UI', 'Inter', Arial, sans-serif;
  --font-display: 'Georgia', 'Times New Roman', serif;
  --max-w:      1180px;
  --transition: 0.22s ease;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

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

a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-light); }

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

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--dark-2); }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 3px; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  line-height: 1.25;
  font-weight: 700;
}
h1 { font-size: clamp(1.9rem, 4vw, 3rem); color: var(--white); }
h2 { font-size: clamp(1.4rem, 3vw, 2.1rem); color: var(--white); }
h3 { font-size: clamp(1.1rem, 2.2vw, 1.5rem); color: var(--white); }
h4 { font-size: 1.05rem; color: var(--gold); }

p { margin-bottom: 1em; color: var(--text); }

.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(229,168,32,0.1);
  border: 1px solid rgba(229,168,32,0.3);
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: var(--white);
  box-shadow: var(--shadow-red);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--red-light), var(--red));
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(200,16,46,0.5);
  color: var(--white);
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), #C8860A);
  color: var(--dark);
  box-shadow: 0 4px 20px rgba(229,168,32,0.35);
}
.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  transform: translateY(-2px);
  color: var(--dark);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--red);
}
.btn-outline:hover {
  background: var(--red);
  color: var(--white);
}
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.btn-sm { padding: 9px 18px; font-size: 0.82rem; }

/* ===== TOP BONUS STRIP ===== */
.top-strip {
  background: linear-gradient(90deg, var(--red-dark) 0%, #6B0016 50%, var(--red-dark) 100%);
  border-bottom: 2px solid var(--gold);
  padding: 11px 20px;
  text-align: center;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.top-strip .strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.top-strip .strip-text {
  font-size: 0.9rem;
  color: var(--white);
  font-weight: 600;
}
.top-strip .strip-highlight {
  color: var(--gold-light);
  font-weight: 800;
  font-size: 1rem;
}

/* ===== HEADER / NAV ===== */
.site-header {
  background: var(--dark-2);
  border-bottom: 1px solid var(--border);
  padding: 0;
  position: sticky;
  top: 46px;
  z-index: 900;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

/* LOGO */
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo-svg {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-name {
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.02em;
  font-family: var(--font-display);
}
.logo-sub {
  font-size: 0.65rem;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* NAV */
.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.main-nav a {
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  text-decoration: none;
  letter-spacing: 0.02em;
}
.main-nav a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.06);
}
.main-nav a.active {
  color: var(--white);
  background: var(--red);
}

.nav-cta { margin-left: 12px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  display: block;
}

/* MOBILE NAV */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--dark-3);
  border-top: 1px solid var(--border);
  padding: 16px 20px 20px;
  gap: 6px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: var(--text-muted);
  font-size: 0.92rem;
  font-weight: 600;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--white); background: rgba(255,255,255,0.05); }

/* ===== RATING STARS ===== */
.rating-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 12px 0;
}
.stars {
  display: flex;
  gap: 3px;
}
.star {
  width: 18px;
  height: 18px;
  fill: var(--gold);
}
.star.half { fill: url(#half-grad); }
.star.empty { fill: var(--border); }
.rating-val {
  font-size: 1rem;
  font-weight: 800;
  color: var(--gold);
}
.rating-label {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(160deg, #110000 0%, #1A0005 40%, #0A0A0A 100%);
  padding: 70px 0 60px;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 40%, rgba(200,16,46,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 60%, rgba(229,168,32,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: center;
  position: relative;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200,16,46,0.15);
  border: 1px solid rgba(200,16,46,0.4);
  border-radius: 999px;
  padding: 5px 14px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--red-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-badge-dot {
  width: 7px;
  height: 7px;
  background: var(--red-light);
  border-radius: 50%;
  animation: pulse 1.6s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}
.hero h1 {
  margin-bottom: 18px;
  background: linear-gradient(135deg, #fff 50%, #E8A0A0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 28px;
  max-width: 520px;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.8rem;
  color: var(--text-muted);
}
.trust-icon {
  width: 16px;
  height: 16px;
  color: var(--green);
}

/* HERO CARD */
.hero-card {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  box-shadow: var(--shadow);
}
.hero-card-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.bonus-amount {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}
.bonus-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.bonus-list {
  list-style: none;
  margin-bottom: 22px;
}
.bonus-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 0.87rem;
  color: var(--text);
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
}
.bonus-list li:last-child { border-bottom: none; }
.check-icon { color: var(--green); font-size: 1rem; flex-shrink: 0; margin-top: 1px; }
.hero-card .btn { width: 100%; }
.hero-card-note {
  font-size: 0.72rem;
  color: var(--text-dim);
  text-align: center;
  margin-top: 10px;
}

/* ===== SECTION SPACING ===== */
.section { padding: 72px 0; }
.section-alt { background: var(--dark-2); }
.section-header {
  margin-bottom: 44px;
}
.section-header.center { text-align: center; }
.section-header h2 { margin-bottom: 12px; }
.section-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 620px;
}
.section-header.center p { margin: 0 auto; }

/* ===== INFO BANNER ===== */
.info-banner {
  background: rgba(229,168,32,0.06);
  border: 1px solid rgba(229,168,32,0.25);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  margin: 0 0 32px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.info-banner-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }
.info-banner p { margin: 0; font-size: 0.88rem; color: var(--text-muted); }
.info-banner strong { color: var(--gold); }

/* ===== STATS ROW ===== */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 56px;
}
.stat-cell {
  background: var(--dark-3);
  padding: 24px 20px;
  text-align: center;
}
.stat-val {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--white);
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-val span { color: var(--gold); }
.stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ===== ABOUT GRID ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.about-text h2 { margin-bottom: 18px; }
.about-text p { color: var(--text-muted); font-size: 0.97rem; }
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.feature-card {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px 18px;
  transition: border-color var(--transition);
}
.feature-card:hover { border-color: var(--red); }
.feature-icon {
  font-size: 1.6rem;
  margin-bottom: 10px;
  display: block;
}
.feature-card h4 { font-size: 0.9rem; color: var(--white); margin-bottom: 6px; }
.feature-card p { font-size: 0.8rem; color: var(--text-muted); margin: 0; }

/* ===== GAMES SECTION ===== */
.games-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.game-tab {
  background: var(--dark-3);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 999px;
  cursor: pointer;
  transition: all var(--transition);
  letter-spacing: 0.03em;
  white-space: nowrap;
}
.game-tab.active, .game-tab:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 32px;
}
.game-card {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition);
  cursor: pointer;
}
.game-card:hover {
  border-color: var(--red);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.5);
}
.game-thumb {
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  position: relative;
  overflow: hidden;
}
.game-thumb-bg {
  position: absolute;
  inset: 0;
  opacity: 0.7;
}
.game-thumb span { position: relative; z-index: 1; filter: drop-shadow(0 2px 8px rgba(0,0,0,0.7)); }
.game-body { padding: 14px; }
.game-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.game-provider {
  font-size: 0.75rem;
  color: var(--text-dim);
  margin-bottom: 10px;
}
.game-rtp {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
}
.rtp-label { color: var(--text-muted); }
.rtp-val { color: var(--green); font-weight: 700; }
.game-card .btn { width: 100%; margin-top: 10px; }

.games-content-block {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  margin-bottom: 36px;
}
.games-content-block h3 { margin-bottom: 14px; }
.games-content-block p { color: var(--text-muted); font-size: 0.97rem; }

/* ===== TABLE SECTION ===== */
.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  margin-bottom: 32px;
}
table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
}
thead tr {
  background: var(--red-dark);
}
thead th {
  padding: 14px 18px;
  text-align: left;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
}
tbody tr {
  background: var(--dark-card);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}
tbody tr:hover { background: var(--dark-3); }
tbody tr:last-child { border-bottom: none; }
td {
  padding: 13px 18px;
  font-size: 0.88rem;
  color: var(--text);
}
td:first-child { font-weight: 600; }
.td-green { color: var(--green); font-weight: 700; }
.td-gold { color: var(--gold); font-weight: 700; }

/* ===== BONUS CARDS ===== */
.bonus-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}
.bonus-card {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-top: 3px solid var(--red);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  transition: all var(--transition);
}
.bonus-card:hover { border-top-color: var(--gold); transform: translateY(-3px); }
.bonus-card-icon { font-size: 2rem; margin-bottom: 12px; }
.bonus-card h4 {
  font-size: 0.92rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}
.bonus-card .big-amount {
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 6px;
}
.bonus-card p { font-size: 0.82rem; color: var(--text-muted); margin: 0; }

/* ===== MID BONUS STRIP ===== */
.mid-strip {
  background: linear-gradient(90deg, #1A0005 0%, #2D0009 50%, #1A0005 100%);
  border: 1px solid rgba(200,16,46,0.4);
  border-radius: var(--radius-xl);
  padding: 40px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin: 60px 0;
  position: relative;
  overflow: hidden;
}
.mid-strip::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -5%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(200,16,46,0.15), transparent 70%);
  pointer-events: none;
}
.mid-strip-text { flex: 1; }
.mid-strip-text h3 {
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  margin-bottom: 8px;
}
.mid-strip-text p { color: var(--text-muted); margin: 0; font-size: 0.9rem; }
.mid-strip .btn { flex-shrink: 0; }

/* ===== PROVIDERS ===== */
.providers-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-bottom: 32px;
}
.provider-chip {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px 14px;
  text-align: center;
  transition: all var(--transition);
  cursor: default;
}
.provider-chip:hover { border-color: var(--red); background: var(--dark-4); }
.provider-chip-icon { font-size: 1.8rem; margin-bottom: 8px; display: block; }
.provider-chip-name { font-size: 0.8rem; font-weight: 700; color: var(--text-muted); }

/* ===== PAYMENTS ===== */
.payments-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}
.payment-card {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px 16px;
  text-align: center;
  transition: border-color var(--transition);
}
.payment-card:hover { border-color: var(--gold); }
.payment-icon { font-size: 2rem; margin-bottom: 10px; display: block; }
.payment-name { font-size: 0.85rem; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.payment-speed { font-size: 0.74rem; color: var(--green); }

/* ===== MOBILE APP ===== */
.app-section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.app-visual {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px 30px;
  text-align: center;
}
.phone-mock {
  width: 160px;
  height: 300px;
  background: var(--dark-card);
  border: 3px solid var(--border);
  border-radius: 28px;
  margin: 0 auto 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: var(--shadow);
}
.phone-mock::before {
  content: '';
  width: 50px;
  height: 5px;
  background: var(--border);
  border-radius: 3px;
  position: absolute;
  top: 12px;
}
.phone-screen {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 20px;
}
.phone-logo-text {
  font-size: 1rem;
  font-weight: 900;
  color: var(--white);
  font-family: var(--font-display);
}
.phone-red-bar {
  width: 80px;
  height: 4px;
  background: var(--red);
  border-radius: 2px;
}
.phone-menu-items {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
  padding-top: 8px;
}
.phone-menu-item {
  background: var(--dark-2);
  border-radius: 6px;
  height: 24px;
  width: 100%;
}
.app-badges { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.app-badge {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--white);
  cursor: pointer;
  transition: border-color var(--transition);
}
.app-badge:hover { border-color: var(--red); }
.app-badge span { font-size: 1.3rem; }

.app-text h2 { margin-bottom: 16px; }
.app-text p { color: var(--text-muted); font-size: 0.97rem; }
.app-features-list { list-style: none; margin: 20px 0; }
.app-features-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--text-muted);
}
.app-features-list li:last-child { border-bottom: none; }
.app-features-list li strong { color: var(--white); }

/* ===== LIVE CASINO ===== */
.live-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 32px;
}
.live-card {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 22px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
}
.live-card:hover { border-color: var(--red); transform: translateY(-3px); }
.live-card::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 80px; height: 80px;
  border-radius: 0 0 0 80px;
  opacity: 0.08;
}
.live-card.roulette::before { background: var(--red); }
.live-card.blackjack::before { background: var(--gold); }
.live-card.baccarat::before { background: #3B82F6; }
.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(34,197,94,0.12);
  border: 1px solid rgba(34,197,94,0.3);
  border-radius: 999px;
  padding: 3px 10px;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.live-dot {
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 1.6s infinite;
}
.live-card-icon { font-size: 2.4rem; margin-bottom: 12px; display: block; }
.live-card h3 { margin-bottom: 8px; }
.live-card p { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 14px; }
.live-meta {
  display: flex;
  gap: 14px;
  font-size: 0.78rem;
  color: var(--text-dim);
}
.live-meta span { display: flex; align-items: center; gap: 4px; }

/* ===== SECURITY SECTION ===== */
.security-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.security-card {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  text-align: center;
}
.security-card .sec-icon { font-size: 2.2rem; margin-bottom: 12px; display: block; }
.security-card h4 { font-size: 0.9rem; color: var(--white); margin-bottom: 8px; }
.security-card p { font-size: 0.8rem; color: var(--text-muted); margin: 0; }

/* ===== REVIEW SECTION ===== */
.review-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: start;
}
.review-text h2 { margin-bottom: 16px; }
.review-text p { color: var(--text-muted); font-size: 0.97rem; }

.score-card {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  position: sticky;
  top: 140px;
}
.score-big {
  text-align: center;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.score-num {
  font-size: 4rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.score-num span { color: var(--gold); }
.score-label { font-size: 0.8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; }
.score-rows { display: flex; flex-direction: column; gap: 12px; }
.score-row { display: flex; flex-direction: column; gap: 5px; }
.score-row-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
}
.score-row-name { color: var(--text-muted); }
.score-row-val { color: var(--white); font-weight: 700; }
.score-bar-bg {
  height: 5px;
  background: var(--border);
  border-radius: 3px;
  overflow: hidden;
}
.score-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--red), var(--gold));
  border-radius: 3px;
}

/* ===== FAQ ===== */
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.open { border-color: var(--red); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  gap: 14px;
  user-select: none;
}
.faq-question:hover { color: var(--gold); }
.faq-arrow {
  width: 20px;
  height: 20px;
  border: 2px solid var(--text-dim);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.8rem;
  transition: all var(--transition);
  color: var(--text-dim);
}
.faq-item.open .faq-arrow {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-item.open .faq-answer { max-height: 600px; }
.faq-answer-inner {
  padding: 0 22px 18px;
  font-size: 0.9rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
  padding-top: 16px;
}
.faq-answer-inner p { margin: 0; }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--dark-2);
  border-top: 1px solid var(--border);
  padding: 56px 0 30px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand {}
.footer-brand .logo-wrap { margin-bottom: 14px; }
.footer-brand p { font-size: 0.84rem; color: var(--text-muted); max-width: 260px; }
.footer-col h5 {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-decoration: none;
}
.footer-col ul li a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-copy { font-size: 0.78rem; color: var(--text-dim); }
.footer-legal { font-size: 0.76rem; color: var(--text-dim); max-width: 620px; line-height: 1.5; }
.footer-badges { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.footer-badge {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 6px 12px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}
.footer-age {
  width: 36px;
  height: 36px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 900;
  color: var(--white);
  flex-shrink: 0;
}

/* ===== UTILITY ===== */
.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-16 { margin-bottom: 16px; }
.mb-32 { margin-bottom: 32px; }
.divider { height: 1px; background: var(--border); margin: 48px 0; }

/* ===== PROS CONS ===== */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 32px 0;
}
.pros-box, .cons-box {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px 20px;
}
.pros-box { border-top: 3px solid var(--green); }
.cons-box { border-top: 3px solid var(--red); }
.pros-box h4 { color: var(--green); margin-bottom: 14px; }
.cons-box h4 { color: var(--red-light); margin-bottom: 14px; }
.pros-cons-list { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.pros-cons-list li {
  display: flex;
  gap: 9px;
  font-size: 0.87rem;
  color: var(--text-muted);
  align-items: flex-start;
}
.pro-mark { color: var(--green); font-weight: 700; flex-shrink: 0; }
.con-mark { color: var(--red-light); font-weight: 700; flex-shrink: 0; }

/* ===== SCROLL TO TOP ===== */
.back-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: var(--red);
  border: none;
  border-radius: 50%;
  color: var(--white);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-red);
  transition: all var(--transition);
  z-index: 800;
}
.back-top:hover { background: var(--red-light); transform: translateY(-3px); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1060px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-card { max-width: 480px; }
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .review-grid { grid-template-columns: 1fr; }
  .score-card { position: static; }
  .games-grid { grid-template-columns: repeat(3, 1fr); }
  .providers-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 800px) {
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .hero { padding: 40px 0 44px; }
  .section { padding: 52px 0; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .about-features { grid-template-columns: 1fr; }
  .games-grid { grid-template-columns: repeat(2, 1fr); }
  .bonus-cards { grid-template-columns: 1fr; }
  .live-grid { grid-template-columns: 1fr 1fr; }
  .security-grid { grid-template-columns: 1fr 1fr; }
  .providers-grid { grid-template-columns: repeat(3, 1fr); }
  .payments-grid { grid-template-columns: repeat(2, 1fr); }
  .pros-cons { grid-template-columns: 1fr; }
  .mid-strip { flex-direction: column; text-align: center; padding: 30px 24px; }
  .app-section-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; }
}

@media (max-width: 540px) {
  .stats-row { grid-template-columns: 1fr 1fr; }
  .games-grid { grid-template-columns: 1fr 1fr; }
  .live-grid { grid-template-columns: 1fr; }
  .security-grid { grid-template-columns: 1fr; }
  .providers-grid { grid-template-columns: repeat(2, 1fr); }
  .payments-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; }
  .footer-top { grid-template-columns: 1fr; }
  .top-strip .strip-inner { gap: 10px; }
  .mid-strip { padding: 24px 18px; }
}
