@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Open+Sans:wght@400;500;600&display=swap');

:root {
  --gold: #F5A623;
  --gold-dark: #D4881A;
  --gold-light: #FFD080;
  --red: #E63946;
  --red-dark: #C1121F;
  --bg-dark: #0A0D14;
  --bg-card: #111827;
  --bg-card2: #161D2E;
  --bg-card3: #1C2540;
  --border: #2A3550;
  --text-main: #F0F4FF;
  --text-muted: #8A96B0;
  --text-accent: #F5A623;
  --green: #2ECC71;
  --green-dark: #27AE60;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(0,0,0,0.4);
  --shadow-gold: 0 0 24px rgba(245,166,35,0.25);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Open Sans', sans-serif;
  background: var(--bg-dark);
  color: var(--text-main);
  font-size: 16px;
  line-height: 1.7;
  min-width: 320px;
  width: 100%;
}

.site-wrapper {
  width: 100%;
  max-width: 100vw;
  overflow-x: clip;
  position: relative;
}

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

img { display: none !important; }

h1, h2, h3, h4, h5 {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.2;
  font-weight: 800;
  overflow-wrap: break-word;
  word-break: break-word;
  max-width: 100%;
}

h1 { font-size: clamp(1.6rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.3rem, 3.5vw, 2.2rem); }
h3 { font-size: clamp(1.05rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.05rem; font-weight: 700; }

p { margin-bottom: 1rem; overflow-wrap: break-word; word-break: break-word; }
p:last-child { margin-bottom: 0; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  box-sizing: border-box;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  text-align: center;
  letter-spacing: 0.5px;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #0A0D14;
  box-shadow: 0 4px 16px rgba(245,166,35,0.35);
}
.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(245,166,35,0.5);
  color: #0A0D14;
}

.btn-red {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  color: #fff;
  box-shadow: 0 4px 16px rgba(230,57,70,0.35);
}
.btn-red:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(230,57,70,0.5);
  color: #fff;
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: #0A0D14;
}

.btn-lg { padding: 18px 48px; font-size: 1.15rem; }
.btn-sm { padding: 10px 22px; font-size: 0.9rem; }
.btn-full { width: 100%; display: block; }

.text-gold { color: var(--gold); }
.text-red { color: var(--red); }
.text-green { color: var(--green); }
.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }

.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.badge-gold { background: rgba(245,166,35,0.2); color: var(--gold); border: 1px solid rgba(245,166,35,0.4); }
.badge-green { background: rgba(46,204,113,0.15); color: var(--green); border: 1px solid rgba(46,204,113,0.3); }
.badge-red { background: rgba(230,57,70,0.15); color: var(--red); border: 1px solid rgba(230,57,70,0.3); }

.section { padding: 72px 0; }
.section-sm { padding: 48px 0; }

.section-title {
  margin-bottom: 12px;
}
.section-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 48px;
}

.eyebrow {
  display: inline-block;
  color: var(--gold);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color 0.2s, transform 0.2s;
}
.card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}

.divider {
  height: 1px;
  background: var(--border);
  margin: 48px 0;
}

.grid-2, .grid-3, .grid-4,
.features-grid, .bonus-cards-grid,
.slots-grid, .live-grid, .payment-grid,
.pros-cons, .rating-row, .footer-top {
  width: 100%;
}

.grid-2 > *, .grid-3 > *, .grid-4 > *,
.features-grid > *, .bonus-cards-grid > *,
.slots-grid > *, .live-grid > *,
.pros-cons > *, .footer-top > * {
  min-width: 0;
}

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-2 { gap: 8px; }
.gap-3 { gap: 12px; }
.gap-4 { gap: 16px; }

.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.mb-6 { margin-bottom: 48px; }
.mt-2 { margin-top: 16px; }
.mt-4 { margin-top: 32px; }

.highlight-box {
  background: linear-gradient(135deg, rgba(245,166,35,0.08) 0%, rgba(245,166,35,0.03) 100%);
  border: 1px solid rgba(245,166,35,0.25);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  margin: 24px 0;
}

.icon-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(245,166,35,0.12);
  border: 1px solid rgba(245,166,35,0.25);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.icon-svg {
  width: 32px;
  height: 32px;
  fill: var(--gold);
}

.rating-stars { color: var(--gold); font-size: 1.1rem; letter-spacing: 2px; }

.score-ring {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 3px solid var(--gold);
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.6rem;
  color: var(--gold);
  box-shadow: var(--shadow-gold);
}

.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 32px 0;
}

.pros-list, .cons-list {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}

.pros-list { border-top: 3px solid var(--green); }
.cons-list { border-top: 3px solid var(--red); }

.pros-list h4 { color: var(--green); margin-bottom: 16px; }
.cons-list h4 { color: var(--red); margin-bottom: 16px; }

.pros-list li, .cons-list li {
  list-style: none;
  padding: 6px 0 6px 28px;
  position: relative;
  color: var(--text-main);
  font-size: 0.95rem;
}

.pros-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

.cons-list li::before {
  content: "✗";
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 700;
}

.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.table-wrap table {
  width: 100%;
  min-width: 480px;
  border-collapse: collapse;
}
.table-wrap th {
  background: var(--bg-card3);
  color: var(--gold);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 14px 16px;
  text-align: left;
  border-bottom: 2px solid var(--gold);
}
.table-wrap td {
  padding: 13px 16px;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
  color: var(--text-main);
}
.table-wrap tr:hover td { background: rgba(245,166,35,0.04); }
.table-wrap tr:last-child td { border-bottom: none; }

.top-banner {
  background: linear-gradient(90deg, #D4881A 0%, #F5A623 40%, #FFD080 70%, #F5A623 100%);
  padding: 10px 16px;
  text-align: center;
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  overflow: hidden;
}
.top-banner-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: nowrap;
  max-width: 1200px;
  margin: 0 auto;
}
.top-banner strong {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.88rem;
  font-weight: 800;
  color: #0A0D14;
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.top-banner .btn {
  padding: 8px 18px;
  font-size: 0.82rem;
  background: #0A0D14;
  color: var(--gold);
  border-radius: 6px;
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
}
.top-banner .btn:hover {
  background: #1C2540;
  color: var(--gold-light);
  transform: none;
}

.site-header {
  background: rgba(10,13,20,0.97);
  border-bottom: 1px solid var(--border);
  padding: 0;
  position: sticky;
  top: 52px;
  z-index: 999;
  backdrop-filter: blur(10px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  max-width: 1200px;
  margin: 0 auto;
  gap: 16px;
}

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

.logo-icon {
  width: 42px;
  height: 42px;
}

.logo-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.3rem;
  color: var(--gold);
  line-height: 1;
}
.logo-text span { color: var(--text-main); }

.nav-main {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}
.nav-main a {
  color: var(--text-muted);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.nav-main a:hover, .nav-main a.active {
  color: var(--gold);
  background: rgba(245,166,35,0.1);
}

.header-cta { flex-shrink: 0; }

.hero {
  background: linear-gradient(160deg, #0A0D14 0%, #111827 40%, #0F1520 100%);
  padding: 72px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245,166,35,0.08) 0%, transparent 70%);
  pointer-events: none;
  max-width: 80vw;
  max-height: 80vw;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(230,57,70,0.06) 0%, transparent 70%);
  pointer-events: none;
  max-width: 60vw;
  max-height: 60vw;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 100%;
}

.hero-inner > * {
  min-width: 0;
}

.hero-content {
  overflow-wrap: break-word;
  word-break: break-word;
}

.hero-badge-row { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }

.hero h1 { margin-bottom: 20px; }

.hero-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  line-height: 1.8;
}

.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.hero-stat strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.8rem;
  color: var(--gold);
  line-height: 1;
}
.hero-stat span {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.bonus-card-hero {
  background: linear-gradient(145deg, #161D2E 0%, #1C2540 100%);
  border: 1px solid rgba(245,166,35,0.3);
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
  box-shadow: 0 8px 48px rgba(0,0,0,0.4), inset 0 1px 0 rgba(245,166,35,0.1);
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
}
.bonus-card-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light), var(--gold));
}
.bonus-amount {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 3rem;
  color: var(--gold);
  line-height: 1;
  margin: 8px 0;
  text-shadow: 0 0 30px rgba(245,166,35,0.4);
}
.bonus-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 8px 0 24px;
}
.bonus-detail {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-top: 1px solid var(--border);
  font-size: 0.88rem;
}
.bonus-detail span:first-child { color: var(--text-muted); }
.bonus-detail span:last-child { font-weight: 600; }

.mid-banner {
  background: linear-gradient(135deg, #1C2540 0%, #161D2E 100%);
  border-top: 1px solid rgba(245,166,35,0.2);
  border-bottom: 1px solid rgba(245,166,35,0.2);
  padding: 28px 20px;
  text-align: center;
}
.mid-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.mid-banner-text strong {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--gold);
  display: block;
}
.mid-banner-text span {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  transition: all 0.2s;
}
.feature-card:hover {
  border-color: rgba(245,166,35,0.4);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}
.feature-card .icon-circle { margin-bottom: 16px; }
.feature-card h4 { margin-bottom: 8px; font-size: 1rem; }
.feature-card p { font-size: 0.88rem; color: var(--text-muted); margin: 0; }

.review-block { background: var(--bg-card2); border-radius: var(--radius); padding: 36px; }

.author-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.author-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.2rem;
  color: #0A0D14;
  flex-shrink: 0;
}
.author-info strong { display: block; font-weight: 700; }
.author-info span { font-size: 0.85rem; color: var(--text-muted); }

.rating-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 24px 0;
  background: var(--bg-card3);
  border-radius: var(--radius-sm);
  padding: 20px;
}
.rating-item { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.rating-item span { font-size: 0.88rem; color: var(--text-muted); }
.rating-bar-wrap { flex: 1; height: 6px; background: var(--border); border-radius: 3px; overflow: hidden; }
.rating-bar { height: 100%; background: linear-gradient(90deg, var(--gold-dark), var(--gold)); border-radius: 3px; }
.rating-val { font-weight: 700; font-size: 0.9rem; min-width: 30px; text-align: right; color: var(--gold); }

.steps-list { counter-reset: step; }
.step-item {
  display: flex;
  gap: 20px;
  margin-bottom: 28px;
  align-items: flex-start;
}
.step-num {
  counter-increment: step;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.1rem;
  color: #0A0D14;
  flex-shrink: 0;
}
.step-content h4 { margin-bottom: 6px; }
.step-content p { color: var(--text-muted); font-size: 0.95rem; margin: 0; }

.payment-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }

.payment-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px 12px;
  text-align: center;
  transition: border-color 0.2s;
}
.payment-item:hover { border-color: var(--gold); }
.payment-icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 8px;
  background: var(--bg-card3);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
.payment-item span {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 600;
}

.faq-list { max-width: 800px; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item:hover { border-color: rgba(245,166,35,0.3); }

.faq-q {
  width: 100%;
  background: var(--bg-card);
  border: none;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  text-align: left;
  color: var(--text-main);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.98rem;
  gap: 12px;
  transition: background 0.2s;
}
.faq-q:hover { background: var(--bg-card2); }
.faq-q.open { color: var(--gold); background: var(--bg-card2); }

.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(245,166,35,0.12);
  border: 1px solid rgba(245,166,35,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
  color: var(--gold);
  font-weight: 700;
  transition: transform 0.3s;
  line-height: 1;
}
.faq-q.open .faq-icon { transform: rotate(45deg); }

.faq-a {
  background: var(--bg-card2);
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease, padding 0.2s;
}
.faq-a.open {
  max-height: 500px;
}
.faq-a-inner {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.2s;
}
.faq-a.open .faq-a-inner {
  padding: 16px 24px 20px;
  max-height: 500px;
}
.faq-a-inner p { color: var(--text-muted); font-size: 0.93rem; margin: 0; line-height: 1.7; }

.site-footer {
  background: #080B11;
  border-top: 1px solid var(--border);
  padding: 56px 0 0;
}
.footer-top {
  display: grid;
  grid-template-columns: 280px 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}
.footer-brand {}
.footer-logo { margin-bottom: 16px; }
.footer-desc { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; }

.footer-col h5 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--text-main); }

.footer-bottom {
  padding: 24px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 1200px;
  margin: 0 auto;
}
.footer-legal { font-size: 0.8rem; color: var(--text-muted); }
.footer-badges { display: flex; gap: 10px; flex-wrap: wrap; }
.footer-badge {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
}

.page-hero {
  background: linear-gradient(160deg, #0A0D14 0%, #111827 60%, #0F1520 100%);
  padding: 56px 0;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(245,166,35,0.07) 0%, transparent 70%);
  pointer-events: none;
  max-width: 60vw;
  max-height: 60vw;
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero h1 { margin-bottom: 16px; }
.page-hero p { color: var(--text-muted); font-size: 1.05rem; max-width: 680px; }

.bonus-cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.bonus-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.2s;
}
.bonus-card:hover { border-color: rgba(245,166,35,0.4); transform: translateY(-3px); box-shadow: var(--shadow-gold); }
.bonus-card-top {
  background: linear-gradient(135deg, var(--bg-card3), var(--bg-card2));
  padding: 28px 24px;
  text-align: center;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.bonus-card-top::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold));
}
.bonus-card-body { padding: 24px; }
.bonus-card-body ul { list-style: none; margin-bottom: 20px; }
.bonus-card-body ul li {
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  display: flex;
  justify-content: space-between;
  gap: 8px;
}
.bonus-card-body ul li:last-child { border-bottom: none; }
.bonus-card-body ul li span:first-child { color: var(--text-muted); }
.bonus-card-body ul li span:last-child { font-weight: 600; }

.game-categories { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 36px; }
.cat-btn {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: 8px 20px;
  color: var(--text-muted);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: default;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.cat-btn.active, .cat-btn:hover {
  background: rgba(245,166,35,0.1);
  border-color: var(--gold);
  color: var(--gold);
}

.slots-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.slot-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.2s;
}
.slot-card:hover { border-color: var(--gold); transform: translateY(-3px); box-shadow: var(--shadow-gold); }
.slot-thumb {
  background: linear-gradient(135deg, var(--bg-card3), var(--bg-card2));
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  border-bottom: 1px solid var(--border);
}
.slot-info { padding: 14px; }
.slot-info h4 { font-size: 0.95rem; margin-bottom: 4px; }
.slot-info .slot-meta { display: flex; justify-content: space-between; font-size: 0.78rem; color: var(--text-muted); margin-bottom: 12px; }

.live-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.live-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.2s;
}
.live-card:hover { border-color: rgba(230,57,70,0.5); transform: translateY(-3px); }
.live-thumb {
  background: linear-gradient(135deg, #1C1020, #2A1530);
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.live-badge-live {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--red);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  padding: 3px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.live-badge-live::before {
  content: '';
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
.live-info { padding: 16px; }
.live-info h4 { margin-bottom: 4px; font-size: 1rem; }
.live-info .live-meta { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 12px; }

.login-wrapper {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
}
.login-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 48px 40px;
  width: 100%;
  max-width: 460px;
  position: relative;
}
.login-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold));
  border-radius: 16px 16px 0 0;
}
.login-title { text-align: center; margin-bottom: 8px; }
.login-sub { text-align: center; color: var(--text-muted); font-size: 0.9rem; margin-bottom: 32px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 8px;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.form-control {
  width: 100%;
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  color: var(--text-main);
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  transition: border-color 0.2s;
  outline: none;
}
.form-control:focus { border-color: var(--gold); }
.form-control::placeholder { color: var(--text-muted); }
.form-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
  font-size: 0.88rem;
}
.form-footer a { color: var(--gold); }
.form-register { text-align: center; margin-top: 24px; font-size: 0.9rem; color: var(--text-muted); }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb-sep { color: var(--border); }
.breadcrumb span:last-child { color: var(--text-main); }

.info-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  align-items: start;
  width: 100%;
  min-width: 0;
}

.info-grid > * {
  min-width: 0;
  overflow-wrap: break-word;
  word-break: break-word;
}

.sticky-box {
  position: sticky;
  top: 110px;
  background: var(--bg-card);
  border: 1px solid rgba(245,166,35,0.3);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-gold);
}
.sticky-box h4 { margin-bottom: 16px; color: var(--gold); }
.sticky-box ul { list-style: none; margin-bottom: 20px; }
.sticky-box ul li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  display: flex;
  justify-content: space-between;
  gap: 8px;
}
.sticky-box ul li:last-child { border-bottom: none; }
.sticky-box ul li span:first-child { color: var(--text-muted); }
.sticky-box ul li span:last-child { font-weight: 600; }

.scroll-top-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: var(--gold);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #0A0D14;
  box-shadow: 0 4px 16px rgba(245,166,35,0.4);
  z-index: 500;
  transition: transform 0.2s;
}
.scroll-top-btn:hover { transform: scale(1.1); }

@media (max-width: 1100px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-aside { width: 100%; }
  .bonus-card-hero { max-width: 500px; width: 100%; margin: 0 auto; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .payment-grid { grid-template-columns: repeat(3, 1fr); }
  .info-grid { grid-template-columns: 1fr; }
  .sticky-box { position: static; }
}

@media (max-width: 900px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .bonus-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .slots-grid { grid-template-columns: repeat(2, 1fr); }
  .live-grid { grid-template-columns: repeat(2, 1fr); }
  .rating-row { grid-template-columns: 1fr; }
  .pros-cons { grid-template-columns: 1fr; }
  .nav-main { display: none; }
}

@media (max-width: 680px) {
  .section { padding: 48px 0; }
  .hero { padding: 48px 0 56px; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .bonus-cards-grid { grid-template-columns: 1fr; }
  .slots-grid { grid-template-columns: repeat(2, 1fr); }
  .live-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .payment-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; text-align: center; }
  .mid-banner-inner { flex-direction: column; }
  .mid-banner-inner .btn { width: 100%; max-width: 320px; }
  .top-banner-inner { gap: 10px; }
  .top-banner strong { font-size: 0.85rem; }
  .top-banner .btn { font-size: 0.82rem; padding: 7px 16px; white-space: nowrap; }
  .login-card { padding: 32px 20px; }
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.3rem; }
  .bonus-amount { font-size: 2.2rem; }
  .hero-stats { gap: 20px; }
  .hero-stat strong { font-size: 1.4rem; }
  .review-block { padding: 20px; }
  .pros-cons { grid-template-columns: 1fr; }
  .author-row { flex-wrap: wrap; }
  .header-inner { padding: 12px 16px; gap: 10px; }
}

@media (max-width: 400px) {
  .slots-grid { grid-template-columns: 1fr; }
}
