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

:root {
  --gold: #C9A84C;
  --gold-light: #E8C96A;
  --gold-dark: #9C7B2E;
  --black: #0A0A0A;
  --dark: #111111;
  --dark2: #1A1A1A;
  --dark3: #222222;
  --dark4: #2A2A2A;
  --white: #FFFFFF;
  --off-white: #F5F0E8;
  --text-muted: #9A9A9A;
  --text-body: #D4D0C8;
  --red-accent: #C0392B;
  --green-ok: #27AE60;
  --radius: 8px;
  --radius-lg: 16px;
}

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

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

body {
  background-color: var(--dark);
  color: var(--text-body);
  font-family: 'Inter', sans-serif;
  line-height: 1.7;
  min-width: 320px;
}

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

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

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  color: var(--white);
  line-height: 1.2;
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 900; margin-bottom: 1.2rem; }
h2 { font-size: clamp(1.4rem, 3.5vw, 2rem); font-weight: 700; margin-bottom: 1rem; margin-top: 2.5rem; }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.35rem); font-weight: 700; margin-bottom: 0.6rem; margin-top: 1.5rem; color: var(--gold-light); }

p { margin-bottom: 1rem; }

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--white);
  letter-spacing: 0.03em;
}

.logo-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.logo-text span { color: var(--gold); }

.site-header {
  background: var(--black);
  border-bottom: 1px solid var(--dark4);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.header-cta {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--black);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 10px 20px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: opacity 0.2s;
}
.header-cta:hover { opacity: 0.85; }

.bonus-banner {
  background: linear-gradient(135deg, #1A0F00 0%, #2C1A00 40%, #1A0F00 100%);
  border-top: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
  padding: 28px 20px;
  text-align: center;
}

.bonus-banner .banner-inner {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.bonus-badge {
  background: var(--gold);
  color: var(--black);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 14px;
  border-radius: 20px;
}

.bonus-amount {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
}

.bonus-amount span { color: var(--gold); }

.bonus-sub {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
  color: var(--black);
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 16px 40px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 4px 20px rgba(201,168,76,0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,168,76,0.5);
}

.btn-primary:active { transform: translateY(0); }

.bonus-terms { font-size: 0.72rem; color: var(--text-muted); }

.main-content {
  padding: 50px 0 30px;
}

.content-article {
  max-width: 800px;
}

.intro-block {
  background: var(--dark2);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 24px;
  margin-bottom: 2rem;
  font-size: 1.05rem;
  color: var(--off-white);
}

.rating-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 1.5rem 0 2rem;
}

.rating-pill {
  background: var(--dark3);
  border: 1px solid var(--dark4);
  border-radius: 30px;
  padding: 8px 18px;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.rating-pill .pill-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.rating-pill strong { color: var(--gold); }

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

.section-divider {
  border: none;
  border-top: 1px solid var(--dark4);
  margin: 2.5rem 0;
}

.info-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 1.5rem 0;
  border-radius: var(--radius);
}

.info-table {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.info-table th {
  background: var(--dark3);
  color: var(--gold);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  text-align: left;
  padding: 12px 16px;
  border-bottom: 2px solid var(--gold-dark);
}

.info-table td {
  padding: 11px 16px;
  border-bottom: 1px solid var(--dark4);
  color: var(--text-body);
  vertical-align: top;
}

.info-table tr:nth-child(even) td { background: var(--dark2); }
.info-table tr:last-child td { border-bottom: none; }

.info-table .td-label {
  color: var(--off-white);
  font-weight: 600;
  white-space: nowrap;
  width: 38%;
}

.check { color: var(--green-ok); font-weight: 700; margin-right: 4px; }
.cross { color: var(--red-accent); font-weight: 700; margin-right: 4px; }

.highlight-box {
  background: linear-gradient(135deg, var(--dark2), var(--dark3));
  border: 1px solid var(--gold-dark);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  margin: 2rem 0;
}

.highlight-box h3 { margin-top: 0; }

.step-list { list-style: none; counter-reset: steps; }
.step-list li {
  counter-increment: steps;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--dark4);
}
.step-list li:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.step-num {
  background: var(--gold);
  color: var(--black);
  font-weight: 900;
  font-size: 0.85rem;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.step-list li p { margin: 0; font-size: 0.95rem; }
.step-list li strong { display: block; color: var(--off-white); margin-bottom: 2px; }

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 12px;
  margin: 1.5rem 0;
}

.game-tile {
  background: var(--dark3);
  border: 1px solid var(--dark4);
  border-radius: var(--radius);
  padding: 16px 12px;
  text-align: center;
  transition: border-color 0.2s;
}

.game-tile:hover { border-color: var(--gold-dark); }

.game-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 10px;
}

.game-tile h3 {
  font-size: 0.85rem;
  margin: 0 0 4px;
  color: var(--off-white);
}

.game-tile p {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin: 0;
}

.banner-mid {
  background: linear-gradient(90deg, #120900 0%, #2E1C00 50%, #120900 100%);
  border-top: 2px solid var(--gold-dark);
  border-bottom: 2px solid var(--gold-dark);
  padding: 32px 20px;
  text-align: center;
  margin: 3rem 0;
}

.banner-mid .banner-inner {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.banner-mid-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.3rem, 3.5vw, 1.9rem);
  color: var(--white);
  font-weight: 700;
}
.banner-mid-title span { color: var(--gold); }

.banner-mid p { color: var(--text-muted); font-size: 0.88rem; margin: 0; }

.faq-section { margin: 3rem 0; }

.faq-section h2 { margin-top: 0; }

.faq-item { border-bottom: 1px solid var(--dark4); }

.faq-item input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.faq-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 4px;
  cursor: pointer;
  font-weight: 600;
  color: var(--off-white);
  font-size: 0.95rem;
  user-select: none;
  gap: 16px;
}

.faq-label::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0;
  transition: transform 0.25s;
}

.faq-item input:checked ~ .faq-label::after { transform: rotate(45deg); }

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-item input:checked ~ .faq-body { max-height: 600px; }

.faq-body-inner {
  padding: 0 4px 18px;
  color: var(--text-body);
  font-size: 0.93rem;
  line-height: 1.7;
}

.cards-section { margin: 3rem 0; }

.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 1.5rem;
}

@media (min-width: 640px) {
  .cards-grid { grid-template-columns: 1fr 1fr; }
}

.card {
  background: var(--dark2);
  border: 1px solid var(--dark4);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: border-color 0.2s, transform 0.2s;
}

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

.card-icon-wrap {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--dark3), var(--dark4));
  border: 1px solid var(--gold-dark);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.card h3 { margin-top: 0; font-size: 1.1rem; }
.card p { font-size: 0.88rem; color: var(--text-body); margin: 0; }

.pros-cons {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin: 1.5rem 0;
}
@media (min-width: 560px) {
  .pros-cons { grid-template-columns: 1fr 1fr; }
}

.pros-box, .cons-box {
  background: var(--dark2);
  border-radius: var(--radius);
  padding: 20px;
}
.pros-box { border-top: 3px solid var(--green-ok); }
.cons-box { border-top: 3px solid var(--red-accent); }

.pros-box h3 { color: var(--green-ok); margin-top: 0; font-size: 1rem; }
.cons-box h3 { color: var(--red-accent); margin-top: 0; font-size: 1rem; }

.pros-cons ul { list-style: none; }
.pros-cons ul li { font-size: 0.88rem; padding: 5px 0; border-bottom: 1px solid var(--dark4); display: flex; gap: 8px; }
.pros-cons ul li:last-child { border-bottom: none; }

.site-footer {
  background: var(--black);
  border-top: 1px solid var(--dark4);
  padding: 36px 0;
  margin-top: 4rem;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.footer-logo { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 900; color: var(--white); }
.footer-logo span { color: var(--gold); }

.footer-nav { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }
.footer-nav a { color: var(--text-muted); font-size: 0.85rem; }
.footer-nav a:hover { color: var(--gold); }

.footer-disclaimer {
  max-width: 700px;
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.rg-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  align-items: center;
}

.rg-badge {
  background: var(--dark3);
  border: 1px solid var(--dark4);
  border-radius: var(--radius);
  padding: 8px 14px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.age-badge {
  background: var(--red-accent);
  color: var(--white);
  font-weight: 900;
  font-size: 0.8rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 768px) {
  .footer-inner { flex-direction: row; justify-content: space-between; text-align: left; }
  .footer-nav { justify-content: flex-start; }
}
