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

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

:root {
  --gold:       #C9A227;
  --gold-light: #E8C44A;
  --gold-dark:  #9A7A18;
  --black:      #0A0A0A;
  --dark:       #111111;
  --dark-2:     #1A1A1A;
  --dark-3:     #232323;
  --dark-4:     #2C2C2C;
  --white:      #FFFFFF;
  --off-white:  #F0EBE0;
  --muted:      #A89B80;
  --red:        #C0392B;
  --green:      #1E8A4A;
  --radius:     8px;
  --radius-lg:  14px;
  --shadow:     0 4px 24px rgba(0,0,0,0.6);
  --font-head:  'Playfair Display', Georgia, serif;
  --font-body:  'Inter', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }
body {
  background: var(--dark);
  color: var(--off-white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

img { display: none !important; }

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

.btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
  color: var(--black);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 2px 12px rgba(201,162,39,0.4);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(201,162,39,0.55); text-decoration: none; color: var(--black); }
.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
  box-shadow: none;
}
.btn-outline:hover { background: var(--gold); color: var(--black); }

.tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 4px;
  background: var(--gold);
  color: var(--black);
}
.tag-green { background: var(--green); color: #fff; }
.tag-red { background: var(--red); color: #fff; }

section { padding: 64px 0; }
section + section { border-top: 1px solid rgba(201,162,39,0.1); }

.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); color: var(--white); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); color: var(--white); margin-bottom: 24px; }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); color: var(--gold-light); margin-bottom: 12px; }
h4 { font-size: 1rem; color: var(--white); margin-bottom: 8px; }

p { margin-bottom: 16px; color: var(--off-white); }
p:last-child { margin-bottom: 0; }

.text-gold { color: var(--gold); }
.text-muted { color: var(--muted); font-size: 14px; }

.divider {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  margin: 16px 0 28px;
}

.star { color: var(--gold); font-size: 18px; }
.stars { letter-spacing: 2px; }

.score-big {
  font-family: var(--font-head);
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.score-label { font-size: 13px; color: var(--muted); margin-top: 4px; }

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

.card {
  background: var(--dark-2);
  border: 1px solid rgba(201,162,39,0.15);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.card-sm { padding: 20px; }
.card:hover { border-color: rgba(201,162,39,0.35); }

.pro-con-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.pro-list, .con-list { background: var(--dark-2); border-radius: var(--radius-lg); padding: 24px; }
.pro-list { border-left: 3px solid var(--green); }
.con-list { border-left: 3px solid var(--red); }
.pro-list h4 { color: #4CAF50; }
.con-list h4 { color: #ef5350; }
.pro-list ul, .con-list ul { list-style: none; padding: 0; }
.pro-list li, .con-list li { padding: 6px 0; font-size: 14px; display: flex; align-items: flex-start; gap: 8px; }
.pro-list li::before { content: '✓'; color: #4CAF50; font-weight: 700; flex-shrink: 0; }
.con-list li::before { content: '✗'; color: #ef5350; font-weight: 700; flex-shrink: 0; }

.rating-bar-wrap { margin-bottom: 16px; }
.rating-bar-label { display: flex; justify-content: space-between; font-size: 13px; margin-bottom: 6px; }
.rating-bar-track { height: 8px; background: var(--dark-4); border-radius: 4px; overflow: hidden; }
.rating-bar-fill { height: 100%; background: linear-gradient(90deg, var(--gold-dark), var(--gold-light)); border-radius: 4px; }

.payment-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); gap: 12px; }
.payment-item {
  background: var(--dark-3);
  border: 1px solid rgba(201,162,39,0.12);
  border-radius: var(--radius);
  padding: 14px 12px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--off-white);
}
.payment-item .p-icon { font-size: 22px; margin-bottom: 6px; }

.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
table { width: 100%; border-collapse: collapse; font-size: 14px; min-width: 500px; }
thead tr { background: var(--dark-3); }
th { padding: 12px 16px; text-align: left; font-weight: 700; color: var(--gold); border-bottom: 2px solid rgba(201,162,39,0.25); white-space: nowrap; }
td { padding: 12px 16px; border-bottom: 1px solid rgba(255,255,255,0.06); vertical-align: top; }
tr:hover td { background: rgba(201,162,39,0.04); }
td.good { color: #4CAF50; font-weight: 600; }
td.bad { color: #ef5350; }
td.neutral { color: var(--muted); }

.info-row { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 20px; }
.info-chip {
  background: var(--dark-3);
  border: 1px solid rgba(201,162,39,0.18);
  border-radius: 6px;
  padding: 8px 14px;
  font-size: 13px;
  display: flex; align-items: center; gap: 8px;
}
.info-chip strong { color: var(--gold-light); }

.stat-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 16px; margin-bottom: 32px; }
.stat-box {
  background: var(--dark-3);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  border: 1px solid rgba(201,162,39,0.12);
}
.stat-box .num { font-family: var(--font-head); font-size: 2rem; font-weight: 900; color: var(--gold); }
.stat-box .lbl { font-size: 12px; color: var(--muted); margin-top: 4px; text-transform: uppercase; letter-spacing: 0.08em; }

.faq-item { border-bottom: 1px solid rgba(201,162,39,0.12); }
.faq-q {
  width: 100%; background: none; border: none; color: var(--white);
  font-family: var(--font-body); font-size: 15px; font-weight: 600;
  padding: 18px 0;
  text-align: left; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-q:hover { color: var(--gold-light); }
.faq-icon { font-size: 20px; color: var(--gold); flex-shrink: 0; transition: transform 0.25s; line-height: 1; }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s;
  font-size: 14px; color: var(--muted);
}
.faq-item.open .faq-a { max-height: 400px; padding-bottom: 18px; }
.faq-item.open .faq-icon { transform: rotate(45deg); }

.top-banner {
  background: linear-gradient(90deg, #0A0A0A 0%, #1A1400 40%, #0A0A0A 100%);
  border-bottom: 2px solid var(--gold);
  padding: 14px 0;
  text-align: center;
  position: sticky; top: 0; z-index: 100;
}
.top-banner p { margin: 0; font-size: 14px; color: var(--off-white); display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; }
.top-banner strong { color: var(--gold-light); }

.site-header {
  background: var(--black);
  border-bottom: 1px solid rgba(201,162,39,0.2);
  padding: 0;
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px; max-width: 1140px; margin: 0 auto;
}

.logo-wrap { display: flex; align-items: center; gap: 12px; }
.logo-crown {
  width: 44px; height: 44px;
}
.logo-text-block { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name { font-family: var(--font-head); font-size: 1.45rem; font-weight: 900; color: var(--gold); letter-spacing: 0.02em; }
.logo-sub { font-size: 10px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); }

nav { display: flex; gap: 8px; flex-wrap: wrap; }
nav a {
  font-size: 13px; font-weight: 600; color: var(--muted);
  padding: 6px 12px; border-radius: 6px;
  transition: color 0.2s, background 0.2s;
  letter-spacing: 0.04em;
}
nav a:hover { color: var(--gold-light); background: rgba(201,162,39,0.08); text-decoration: none; }

.hero {
  background: radial-gradient(ellipse at 60% 0%, rgba(201,162,39,0.12) 0%, transparent 60%),
              linear-gradient(180deg, #0F0D08 0%, var(--dark) 100%);
  padding: 80px 0 64px;
}
.hero-inner { display: grid; grid-template-columns: 1fr 380px; gap: 48px; align-items: start; }
.hero-eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.live-dot { width: 8px; height: 8px; background: #4CAF50; border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(1.4)} }
.hero h1 { margin-bottom: 20px; }
.hero h1 em { font-style: normal; color: var(--gold); }
.hero-desc { font-size: 17px; color: var(--muted); max-width: 560px; margin-bottom: 28px; }
.hero-cta-row { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.hero-note { font-size: 12px; color: var(--muted); }

.score-card {
  background: var(--dark-2);
  border: 1px solid rgba(201,162,39,0.25);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
}
.score-card .score-big { font-size: 4rem; }
.score-breakdown { margin-top: 20px; text-align: left; }

.mid-banner {
  background: linear-gradient(135deg, #14100A 0%, #1E1800 50%, #14100A 100%);
  border-top: 1px solid rgba(201,162,39,0.25);
  border-bottom: 1px solid rgba(201,162,39,0.25);
  padding: 32px 0;
}
.mid-banner-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.mid-banner-text h3 { color: var(--gold-light); margin-bottom: 6px; font-size: 1.3rem; }
.mid-banner-text p { margin: 0; font-size: 14px; color: var(--muted); }

.breadcrumb { font-size: 13px; color: var(--muted); padding: 12px 0; display: flex; gap: 6px; flex-wrap: wrap; align-items: center; }
.breadcrumb span { color: var(--gold); }

.game-card {
  background: var(--dark-3);
  border: 1px solid rgba(201,162,39,0.1);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  text-align: center;
}
.game-icon { font-size: 2.8rem; margin-bottom: 12px; }
.game-count { font-size: 1.5rem; font-weight: 700; color: var(--gold); font-family: var(--font-head); }

.steps { counter-reset: step; display: flex; flex-direction: column; gap: 20px; }
.step { display: flex; gap: 20px; align-items: flex-start; }
.step-num {
  counter-increment: step;
  width: 40px; height: 40px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--black); font-weight: 900; font-size: 16px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
}
.step-body h4 { margin-bottom: 6px; color: var(--white); }
.step-body p { font-size: 14px; color: var(--muted); margin: 0; }

.site-footer {
  background: var(--black);
  border-top: 1px solid rgba(201,162,39,0.15);
  padding: 48px 0 28px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-about { font-size: 14px; color: var(--muted); line-height: 1.7; }
.footer-about .logo-name { font-size: 1.2rem; margin-bottom: 8px; }
.footer-col h4 { color: var(--gold-light); font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 14px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; font-size: 13px; color: var(--muted); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 20px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.footer-bottom p { margin: 0; font-size: 12px; color: var(--muted); }
.responsible-badges { display: flex; gap: 10px; flex-wrap: wrap; }
.badge {
  background: var(--dark-3);
  border: 1px solid rgba(201,162,39,0.15);
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 11px; font-weight: 700; color: var(--muted); letter-spacing: 0.06em;
  display: flex; align-items: center; gap: 6px;
}
.badge-dot { width: 6px; height: 6px; background: var(--green); border-radius: 50%; }

.disclaimer {
  font-size: 12px; color: var(--muted);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 16px; margin-top: 16px;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .score-card { max-width: 360px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .pro-con-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  section { padding: 44px 0; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  nav { display: none; }
  .header-inner { padding: 14px 16px; }
  .footer-grid { grid-template-columns: 1fr; }
  .mid-banner-inner { flex-direction: column; text-align: center; }
  .hero { padding: 48px 0 40px; }
  .top-banner p { font-size: 12px; gap: 8px; }
  .btn { padding: 12px 22px; font-size: 13px; }
  h2 { margin-bottom: 18px; }
}
