/* ============================================
   Gates of Olympus Landing — styles
   ============================================ */

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

:root {
  --bg-dark: #0a1030;
  --bg-card: #12193f;
  --bg-card-alt: #0e1438;
  --border: #1a2050;
  --text: #e8ecf5;
  --text-muted: #a8b2d0;
  --text-soft: #c5cce0;
  --gold: #ffd700;
  --gold-dark: #d4a017;
  --purple: #5b2d8f;
  --purple-dark: #3d1b6b;
  --green: #5dcaa5;
  --red: #f09595;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', Roboto, -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
  background: var(--bg-dark);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

a { color: inherit; text-decoration: none; }

/* === Header === */
.site-header {
  position: sticky; top: 0;
  background: rgba(10, 16, 48, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  z-index: 100;
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 16px; gap: 12px;
}
.logo { flex-shrink: 0; display: inline-flex; align-items: center; }
.logo-img {
  height: 44px;
  width: auto;
  display: block;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
}
.logo-text {
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--purple), var(--purple-dark));
  border: 2px solid var(--gold-dark);
  border-radius: 4px;
  color: var(--gold);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.8px;
  padding: 8px 14px;
}
.main-nav { display: none; gap: 22px; align-items: center; }
.main-nav a {
  color: #fff; font-size: 13px; font-weight: 600; letter-spacing: 1px;
  text-transform: uppercase; transition: color 0.2s;
}
.main-nav a:hover { color: var(--gold); }
.header-cta { display: none; }

/* Mobile nav toggle */
.nav-toggle {
  display: flex; flex-direction: column; gap: 4px;
  background: none; border: none; cursor: pointer; padding: 8px;
}
.nav-toggle span {
  width: 22px; height: 2px; background: var(--gold); border-radius: 1px; transition: 0.2s;
}

/* === Buttons === */
.btn {
  display: inline-block; padding: 12px 22px;
  background: var(--gold); color: var(--bg-dark);
  border: none; border-radius: 6px;
  font-weight: 800; font-size: 12px; letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 4px 18px rgba(255, 215, 0, 0.3);
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 26px rgba(255, 215, 0, 0.5); }
.btn-primary { padding: 9px 16px; font-size: 11px; }
.btn-cta { padding: 16px 28px; font-size: 13px; }
.btn-small { padding: 8px 14px; font-size: 10px; }

/* === Hero === */
.hero { position: relative; overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('images/hero-bg.jpg');
  background-size: cover; background-position: center;
  z-index: 0;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(10, 16, 48, 0.55) 0%,
    rgba(10, 16, 48, 0.35) 35%,
    rgba(10, 16, 48, 0.85) 100%);
  z-index: 1;
}
.hero-inner {
  position: relative; z-index: 2;
  padding: 40px 16px 48px;
  display: grid; grid-template-columns: 1fr; gap: 32px; align-items: center;
}

.hero-badges { display: flex; gap: 8px; margin-bottom: 20px; flex-wrap: wrap; }
.badge {
  padding: 6px 14px;
  background: rgba(40, 80, 180, 0.45);
  border: 1px solid rgba(140, 180, 255, 0.55);
  border-radius: 20px;
  color: #e8f0ff; font-size: 11px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.hero h1 {
  color: var(--gold); font-size: 28px; font-weight: 800;
  line-height: 1.22; margin-bottom: 16px;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.85);
}
.hero-description {
  color: #fff; font-size: 14px; line-height: 1.7;
  margin-bottom: 24px;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.9);
}

.hero-card { max-width: 80%; margin: 0 auto; width: 100%; }
.slot-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  border: 4px solid var(--gold-dark);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.75);
}
.slot-frame {
  background: linear-gradient(135deg, #6b3dab, #2d1555);
  border: 3px solid var(--gold-dark);
  border-radius: 10px;
  padding: 16px;
  box-shadow: 0 8px 36px rgba(0, 0, 0, 0.7);
  aspect-ratio: 4/3;
  display: flex; flex-direction: column; justify-content: space-between;
  position: relative; overflow: hidden;
}
.slot-frame::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255, 215, 0, 0.22), transparent 65%);
  pointer-events: none;
}
.slot-title {
  color: var(--gold); font-weight: 800; font-size: 16px;
  letter-spacing: 2px; text-align: center;
  position: relative; z-index: 1;
}
.slot-grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 4px;
  padding: 12px; background: rgba(0, 0, 0, 0.35); border-radius: 6px;
  position: relative; z-index: 1;
}
.slot-grid span { aspect-ratio: 1; border-radius: 3px; display: block; }
.slot-caption {
  color: var(--gold); font-size: 9px; font-weight: 700;
  letter-spacing: 0.8px; text-align: center; text-transform: uppercase;
  position: relative; z-index: 1;
}

.hero-stats {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 0;
  background: rgba(10, 16, 48, 0.85);
  border-top: 1px solid var(--border);
}
.stat {
  padding: 12px 8px; text-align: center;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stat:nth-child(2n) { border-right: none; }
.stat-label {
  display: block; color: #8892b8; font-size: 10px;
  text-transform: uppercase; letter-spacing: 0.8px;
  margin-bottom: 2px;
}
.stat-value { display: block; color: var(--gold); font-size: 14px; font-weight: 700; }

/* === Section titles === */
.section-title {
  color: #fff; font-size: 22px; font-weight: 700;
  border-left: 3px solid var(--gold); padding-left: 14px;
  margin-bottom: 20px;
}
.section-sub { color: var(--text-muted); font-size: 14px; margin-bottom: 20px; }

/* === SEO content (generated HTML from Claude) === */
.seo-content { padding: 40px 0; }
.seo-block { margin-bottom: 32px; }
.seo-block:last-child { margin-bottom: 0; }
.seo-block > h2 {
  color: #fff; font-size: 22px; font-weight: 700;
  border-left: 3px solid var(--gold); padding-left: 14px;
  margin-bottom: 16px;
}

/* hbox — подложка для первого абзаца SEO-блока */
.seo-block .hbox {
  background: var(--bg-card);
  border-left: 3px solid var(--gold);
  border-radius: 0 8px 8px 0;
  padding: 16px 20px;
  margin: 14px 0 18px;
}
.seo-block .hbox p {
  margin: 0;
  color: var(--text);
  font-size: 14px;
  line-height: 1.7;
}
.seo-block .hbox p + p { margin-top: 10px; }

/* sc-img — картинка после первого абзаца внутри SEO-блока */
.seo-block .sc-img {
  display: block;
  width: 100%;
  max-width: 560px;
  height: auto;
  margin: 18px auto;
  border-radius: 10px;
  border: 2px solid var(--gold-dark);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.45);
}

.seo-image {
  margin: 32px 0; border-radius: 10px; overflow: hidden;
  border: 2px solid var(--gold-dark);
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.5);
}
.seo-image img {
  width: 100%; height: auto; display: block;
  aspect-ratio: 16 / 9; object-fit: cover;
}
.seo-content h2 {
  color: #fff; font-size: 22px; font-weight: 700;
  border-left: 3px solid var(--gold); padding-left: 14px;
  margin: 28px 0 14px;
}
.seo-content h3 {
  color: var(--gold); font-size: 17px; font-weight: 600;
  margin: 20px 0 10px;
}
.seo-content p {
  color: var(--text-soft); font-size: 14px; line-height: 1.75;
  margin-bottom: 14px;
}
.seo-content strong, .seo-content b { color: var(--gold); font-weight: 600; }
.seo-content ul, .seo-content ol {
  margin: 14px 0 18px 0; padding-left: 0; list-style: none;
}
.seo-content li {
  position: relative; padding-left: 22px;
  color: var(--text-soft); font-size: 14px; line-height: 1.7;
  margin-bottom: 8px;
}
.seo-content ul li::before {
  content: '✦'; position: absolute; left: 0; top: 0;
  color: var(--gold); font-size: 13px;
}
.seo-content ol { counter-reset: item; }
.seo-content ol li { counter-increment: item; }
.seo-content ol li::before {
  content: counter(item) '.'; position: absolute; left: 0; top: 0;
  color: var(--gold); font-weight: 700;
}
.seo-content table {
  width: 100%; border-collapse: collapse;
  border: 1px solid var(--border); border-radius: 8px; overflow: hidden;
  margin: 18px 0; font-size: 13px;
}
.seo-content th {
  background: #1a2050; color: var(--gold);
  font-weight: 700; padding: 12px 14px; text-align: left;
}
.seo-content td {
  padding: 12px 14px; color: var(--text-soft);
  border-top: 1px solid var(--border);
}
.seo-content tr:nth-child(even) td { background: var(--bg-card-alt); }
.seo-content tr:nth-child(odd) td { background: var(--bg-card); }
.seo-content blockquote {
  background: var(--bg-card);
  border-left: 3px solid var(--gold);
  padding: 14px 18px; margin: 18px 0;
  color: var(--text-soft); font-style: italic;
  border-radius: 0 6px 6px 0;
}

/* === Pros / Cons === */
.pros-cons { padding: 36px 0; background: rgba(10, 16, 48, 0.4); }
.pros-cons-grid { display: grid; grid-template-columns: 1fr; gap: 14px; }
.pros-card, .cons-card {
  background: var(--bg-card);
  border-radius: 8px; padding: 18px;
}
.pros-card { border-left: 3px solid var(--green); }
.cons-card { border-left: 3px solid var(--red); }
.pros-card h3 { color: var(--green); font-size: 14px; margin-bottom: 12px; }
.cons-card h3 { color: var(--red); font-size: 14px; margin-bottom: 12px; }
.pros-list, .cons-list { list-style: none; }
.pros-list li, .cons-list li {
  position: relative; padding-left: 22px;
  font-size: 13px; color: var(--text-soft); line-height: 1.7;
  margin-bottom: 8px;
}
.pros-list li::before { content: '+'; position: absolute; left: 4px; color: var(--green); font-weight: 700; }
.cons-list li::before { content: '—'; position: absolute; left: 0; color: var(--red); font-weight: 700; }

/* === Expert === */
.expert { padding: 36px 0; }
.expert-card {
  background: var(--bg-card);
  border-radius: 10px; padding: 22px;
  display: grid; grid-template-columns: 64px 1fr; gap: 16px;
  align-items: start;
}
.expert-avatar {
  width: 64px; height: 64px;
  border: 2px solid var(--gold); border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.expert-avatar img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.expert-name { color: var(--gold); font-weight: 700; font-size: 15px; margin-bottom: 2px; }
.expert-position { color: #8892b8; font-size: 12px; margin-bottom: 10px; }
.expert-quote {
  color: var(--text-soft); font-size: 14px; line-height: 1.65;
  font-style: italic; border-left: 2px solid var(--gold);
  padding-left: 12px;
}

/* === Casino list === */
.casino-list { padding: 36px 0; background: rgba(10, 16, 48, 0.4); }
.casinos { display: flex; flex-direction: column; gap: 10px; }
.casino-item {
  background: var(--bg-card);
  border-radius: 8px; padding: 12px;
  display: grid; grid-template-columns: 60px 1fr auto; gap: 12px;
  align-items: center;
}
.casino-logo {
  width: 60px; height: 48px; border-radius: 6px;
  overflow: hidden; background: #fff;
  display: flex; align-items: center; justify-content: center;
}
.casino-logo img {
  width: 100%; height: 100%;
  object-fit: contain;
  display: block;
}
.casino-info { min-width: 0; }
.casino-name { color: var(--gold); font-weight: 600; font-size: 14px; }
.casino-bonus { color: var(--text-muted); font-size: 11px; }
.casino-rating { color: var(--gold); font-size: 12px; font-weight: 700; grid-column: 3; display: none; }
.casino-item .btn-small { grid-column: 3; }

/* === Reviews block (generated HTML) === */
.reviews-section { padding: 36px 0; }
.reviews-section .review {
  background: var(--bg-card); border-radius: 8px;
  padding: 16px; margin-bottom: 10px;
}
.reviews-section .review-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 10px;
  gap: 12px;
}
.reviews-section .review-user {
  display: flex; align-items: center; gap: 10px; flex: 1; min-width: 0;
}
.reviews-section .review-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  overflow: hidden; flex-shrink: 0;
  border: 1px solid var(--border);
}
.reviews-section .review-avatar img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.reviews-section .review-author { color: var(--gold); font-weight: 600; font-size: 13px; }
.reviews-section .review-rating { color: var(--gold); font-size: 13px; flex-shrink: 0; }
.reviews-section .review-text { color: var(--text-soft); font-size: 13px; line-height: 1.65; }

/* === FAQ === */
.faq-section { padding: 36px 0; background: rgba(10, 16, 48, 0.4); }
.faq-section .faq-item {
  background: var(--bg-card); border-radius: 6px;
  padding: 14px 16px; margin-bottom: 8px;
}
.faq-section .faq-question {
  color: var(--gold); font-weight: 600; font-size: 14px;
  margin-bottom: 6px; cursor: pointer;
}
.faq-section .faq-question::before { content: '+ '; color: var(--gold); }
.faq-section .faq-answer { color: var(--text-soft); font-size: 13px; line-height: 1.7; }
.faq-section .faq-answer p { margin-bottom: 8px; }

/* === Final CTA === */
.cta-final {
  padding: 48px 16px; text-align: center;
  background: linear-gradient(180deg, var(--bg-dark), rgba(91, 45, 143, 0.2), var(--bg-dark));
  border-top: 1px solid var(--border);
}
.cta-final h2 { color: var(--gold); font-size: 22px; margin-bottom: 10px; }
.cta-final p { color: var(--text-muted); font-size: 14px; margin-bottom: 20px; }

/* === Footer === */
.site-footer {
  background: #070a24; border-top: 1px solid var(--border);
  padding: 32px 0 16px;
}
.footer-grid {
  display: grid; grid-template-columns: 1fr; gap: 24px; margin-bottom: 24px;
}
.footer-logo-img {
  height: 40px;
  width: auto;
  display: block;
  margin-bottom: 12px;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.4));
}
.footer-logo {
  display: inline-flex; font-size: 11px; padding: 8px 14px;
  margin-bottom: 12px;
}
.footer-about { color: var(--text-muted); font-size: 12px; line-height: 1.65; }
.footer-col h4 {
  color: var(--gold); font-size: 12px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 12px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a {
  color: var(--text-soft); font-size: 13px; transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 16px; text-align: center;
}
.age-warning {
  display: inline-flex; align-items: center; gap: 10px; margin-bottom: 12px;
}
.age-badge {
  width: 30px; height: 30px;
  border: 1.5px solid #ff3355; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #ff3355; font-weight: 700; font-size: 10px;
}
.age-warning span:last-child { color: var(--text-soft); font-size: 12px; }
.disclaimer {
  color: #6a7290; font-size: 11px; line-height: 1.55;
  max-width: 560px; margin: 0 auto 8px;
}
.copyright { color: #4a5080; font-size: 10px; }

/* === Mobile nav open === */
.main-nav.open {
  display: flex; flex-direction: column; gap: 0;
  position: absolute; top: 100%; left: 0; right: 0;
  background: rgba(10, 16, 48, 0.98);
  border-top: 1px solid var(--border);
  padding: 12px 16px;
}
.main-nav.open a {
  padding: 10px 0; border-bottom: 1px solid var(--border);
}
.main-nav.open a:last-child { border-bottom: none; }

/* ============================================
   Tablet — 768px+
   ============================================ */
@media (min-width: 768px) {
  .container { padding: 0 24px; }

  .header-inner { padding: 16px 24px; }
  .logo-text { font-size: 13px; padding: 10px 16px; }
  .nav-toggle { display: none; }
  .main-nav { display: flex; }
  .header-cta { display: inline-block; }

  .hero-inner {
    grid-template-columns: 1fr 1fr; gap: 32px;
    padding: 64px 24px 72px;
  }
  .hero h1 { font-size: 36px; }
  .hero-description { font-size: 15px; }

  .hero-stats { grid-template-columns: repeat(4, 1fr); }
  .stat { padding: 14px 10px; border-bottom: none; }
  .stat:nth-child(2n) { border-right: 1px solid var(--border); }
  .stat:last-child { border-right: none; }
  .stat-value { font-size: 15px; }

  .section-title { font-size: 24px; }

  .pros-cons-grid { grid-template-columns: 1fr 1fr; gap: 16px; }

  .expert-card { grid-template-columns: 80px 1fr; padding: 28px; gap: 20px; }
  .expert-avatar { width: 80px; height: 80px; }
  .expert-name { font-size: 17px; }

  .casino-item {
    grid-template-columns: 80px 1fr auto auto;
    padding: 14px 16px;
  }
  .casino-logo { width: 80px; height: 56px; font-size: 12px; }
  .casino-name { font-size: 15px; }
  .casino-bonus { font-size: 12px; }
  .casino-rating { display: block; }

  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; gap: 32px; }
  .footer-bottom { text-align: center; }

  .cta-final { padding: 64px 24px; }
  .cta-final h2 { font-size: 28px; }
}

/* ============================================
   Desktop — 1200px+
   ============================================ */
@media (min-width: 1200px) {
  .hero-inner { padding: 88px 24px 96px; gap: 48px; }
  .hero h1 { font-size: 44px; line-height: 1.18; }
  .hero-description { font-size: 16px; }

  .section-title { font-size: 28px; }
  .seo-content h2 { font-size: 26px; }
  .seo-content { padding: 56px 0; }
  .pros-cons, .expert, .casino-list, .reviews-section, .faq-section { padding: 48px 0; }

  .cta-final h2 { font-size: 34px; }
}
