/* Aviator DE — Global Stylesheet */
:root {
  --bg: #ffffff;
  --bg-header: #000000;
  --bg-footer: #0a0a0a;
  --bg-card: #f8f9fa;
  --bg-surf: #141414;
  --bg-surf2: #e9ecef;
  --accent: #e52521;
  --accent2: #ff3a35;
  --accent-red: #ff2a2a;
  --neon: #26d926;
  --success: #26d926;
  --text: #1a1a1a;
  --text-light: #ffffff;
  --text2: #6c757d;
  --border: rgba(0, 0, 0, 0.08);
  --shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  --shadow-hover: 0 10px 30px rgba(0, 0, 0, 0.10);
  --radius: 10px;
  --radius-sm: 6px;
  --radius-lg: 14px;
  --container: 1200px;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  font-size: 16px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--accent2); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

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

/* ---------- HEADER ---------- */
.site-header {
  background: var(--bg-header);
  color: var(--text-light);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 2px solid var(--accent);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 20px;
  max-width: var(--container);
  margin: 0 auto;
}
.logo-link { display: inline-flex; align-items: center; }
.logo-img { height: 40px; width: auto; display: block; }
.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: nowrap;
}
.main-nav a {
  color: var(--text-light);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition: background .2s ease, color .2s ease;
}
.main-nav a:hover { background: rgba(255,255,255,.08); color: var(--text-light); }
.main-nav a.is-active { color: var(--accent); background: rgba(229,37,33,.1); }

.play-btn {
  display: inline-block;
  background: var(--accent);
  color: var(--text-light) !important;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: background .2s ease, transform .1s ease;
  box-shadow: 0 4px 14px rgba(229,37,33,.35);
}
.play-btn:hover { background: var(--accent2); color: var(--text-light) !important; transform: translateY(-1px); }

.burger {
  display: none;
  width: 40px; height: 40px;
  color: var(--text-light);
  align-items: center; justify-content: center;
  border-radius: var(--radius-sm);
}
.burger span, .burger span::before, .burger span::after {
  content: ''; display: block;
  width: 22px; height: 2px;
  background: var(--text-light);
  position: relative;
  transition: transform .25s ease, top .25s ease, bottom .25s ease;
}
.burger span::before { position: absolute; top: -7px; left: 0; }
.burger span::after  { position: absolute; bottom: -7px; left: 0; top: auto; }
.burger.is-open span { background: transparent; }
.burger.is-open span::before { top: 0; transform: rotate(45deg); }
.burger.is-open span::after  { bottom: 0; transform: rotate(-45deg); }

@media (max-width: 900px) {
  .burger { display: flex; }
  .main-nav {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--bg-header);
    flex-direction: column;
    align-items: stretch;
    padding: 8px 12px 16px;
    gap: 2px;
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
    border-top: 1px solid rgba(255,255,255,.06);
  }
  .main-nav.is-open { max-height: 90vh; overflow: auto; }
  .main-nav a { padding: 12px 14px; font-size: 15px; }
}

/* ---------- HERO ---------- */
.hero {
  background: linear-gradient(180deg, #fff 0%, var(--bg-card) 100%);
  padding: 48px 0 32px;
  border-bottom: 1px solid var(--border);
}
.hero h1 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  color: var(--text);
}
.hero h1 .accent { color: var(--accent); }
.hero-lead {
  font-size: 17px;
  color: var(--text2);
  max-width: 780px;
  margin-bottom: 22px;
}
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px dashed var(--border);
}
.hero-stat { display: flex; flex-direction: column; }
.hero-stat b { font-size: 22px; font-weight: 800; color: var(--accent); }
.hero-stat span { font-size: 13px; color: var(--text2); text-transform: uppercase; letter-spacing: 0.05em; }

/* ---------- SECTION ---------- */
.section { padding: 48px 0; }
.section-tight { padding: 32px 0; }
.section h2 {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin-bottom: 18px;
  color: var(--text);
}
.section h3 {
  font-size: clamp(19px, 2.2vw, 22px);
  font-weight: 700;
  line-height: 1.3;
  margin: 26px 0 12px;
  color: var(--text);
}
.section p { margin-bottom: 14px; color: var(--text); }
.section ul, .section ol { margin: 12px 0 18px 24px; }
.section li { margin-bottom: 8px; line-height: 1.55; }
.section a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }
.section a:hover { color: var(--accent2); }

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-bottom: 8px;
}

/* Content tables */
.data-table {
  width: 100%;
  border-collapse: collapse;
  margin: 18px 0 22px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  font-size: 15px;
}
.data-table th, .data-table td {
  padding: 12px 14px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.data-table th { background: var(--bg-card); font-weight: 700; color: var(--text); }
.data-table tr:last-child td { border-bottom: none; }
.data-table tbody tr:hover { background: var(--bg-card); }

/* ---------- TOP CASINOS ---------- */
.top-casinos {
  padding: 32px 0 48px;
}
.top-casinos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .top-casinos-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .top-casinos-grid { grid-template-columns: 1fr; } }

.casino-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  min-height: 100%;
}
.casino-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }

.casino-card.is-top { border: 2px solid var(--accent); background: #fff; box-shadow: 0 6px 24px rgba(229,37,33,.08); }
.casino-card .rank-badge {
  position: absolute;
  top: -12px; left: 20px;
  background: var(--bg-surf2);
  color: var(--text);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.casino-card.is-top .rank-badge { background: var(--accent); color: var(--text-light); box-shadow: 0 4px 12px rgba(229,37,33,.35); }
.casino-card .recommend-tag {
  display: inline-block;
  background: var(--neon);
  color: #062306;
  font-size: 11px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 4px;
  margin-left: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.casino-card .logo-box {
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 14px 0 12px;
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 8px;
}
.casino-card .logo-box img { max-height: 54px; width: auto; object-fit: contain; }
.casino-card h3 {
  font-size: 18px;
  font-weight: 800;
  margin: 4px 0 6px;
  color: var(--text);
}
.stars {
  color: #f5b100;
  font-size: 15px;
  letter-spacing: 2px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.stars .rating-value { color: var(--text2); font-size: 13px; font-weight: 600; letter-spacing: 0; margin-left: 4px; }
.casino-usp { list-style: none; margin: 0 0 16px !important; padding: 0; }
.casino-usp li {
  padding: 6px 0 6px 22px;
  position: relative;
  font-size: 14px;
  color: var(--text);
  border-bottom: 1px dashed var(--border);
}
.casino-usp li:last-child { border-bottom: none; }
.casino-usp li::before {
  content: '✓';
  position: absolute;
  left: 0; top: 6px;
  color: var(--success);
  font-weight: 800;
}
.casino-cta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: auto;
}
.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: var(--text-light) !important;
  text-decoration: none !important;
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  text-align: center;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: background .2s ease, transform .1s ease;
}
.btn-primary:hover { background: var(--accent2); transform: translateY(-1px); }
.btn-secondary {
  display: inline-block;
  text-align: center;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  color: var(--text) !important;
  text-decoration: none !important;
  font-weight: 600;
  font-size: 13px;
  background: var(--bg);
  transition: background .2s ease;
}
.btn-secondary:hover { background: var(--bg-surf2); }

/* ---------- INLINE PLAY CTA ---------- */
.inline-cta {
  background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
  color: var(--text-light);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 28px 0;
  border: 1px solid rgba(255,255,255,.08);
  position: relative;
  overflow: hidden;
}
.inline-cta::before {
  content: '';
  position: absolute;
  right: -60px; top: -60px;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(229,37,33,.35) 0%, transparent 70%);
}
.inline-cta > * { position: relative; }
.inline-cta h3 { color: var(--text-light); font-size: 22px; margin-bottom: 4px; }
.inline-cta p { color: rgba(255,255,255,.8); font-size: 15px; margin: 0; }

/* ---------- REVIEWS SLIDER ---------- */
.reviews-wrap { position: relative; padding: 0; }
.reviews-viewport { overflow: hidden; }
.reviews-track {
  display: flex;
  gap: 20px;
  transition: transform .4s ease;
  will-change: transform;
}
.review-card {
  flex: 0 0 calc((100% - 40px) / 3);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  display: flex;
  flex-direction: column;
  min-height: 220px;
}
@media (max-width: 900px) { .review-card { flex-basis: calc((100% - 20px) / 2); } }
@media (max-width: 600px) { .review-card { flex-basis: 100%; } }

.review-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
}
.review-name { font-weight: 700; font-size: 15px; color: var(--text); }
.review-date { font-size: 12px; color: var(--text2); }
.review-stars { color: #f5b100; letter-spacing: 2px; font-size: 14px; margin-bottom: 10px; }
.review-text { font-size: 14px; color: var(--text); line-height: 1.55; }

.reviews-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 22px;
}
.review-btn {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text);
  display: flex; align-items: center; justify-content: center;
  transition: background .2s ease, border-color .2s ease, color .2s ease;
  font-size: 20px;
}
.review-btn:hover { background: var(--accent); border-color: var(--accent); color: var(--text-light); }
.review-btn[disabled] { opacity: .35; cursor: not-allowed; }
.review-btn[disabled]:hover { background: var(--bg); border-color: var(--border); color: var(--text); }

/* ---------- FAQ ---------- */
.faq { max-width: 900px; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-q {
  width: 100%;
  padding: 18px 22px;
  text-align: left;
  font-weight: 700;
  font-size: 16px;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  background: var(--bg);
  transition: background .2s ease;
}
.faq-q:hover { background: var(--bg-card); }
.faq-q .icon {
  flex: 0 0 24px;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
  transition: transform .25s ease;
}
.faq-item.is-open .faq-q .icon { transform: rotate(45deg); }
.faq-a {
  padding: 0 22px;
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s ease;
  color: var(--text);
  font-size: 15px;
  line-height: 1.65;
}
.faq-item.is-open .faq-a { padding: 4px 22px 20px; max-height: 600px; }

/* ---------- AUTHOR BOX ---------- */
.author-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px;
  margin: 40px 0 8px;
  display: flex;
  gap: 22px;
  align-items: flex-start;
  flex-wrap: wrap;
}
.author-box img {
  width: 96px; height: 96px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #fff;
  box-shadow: var(--shadow);
  flex-shrink: 0;
}
.author-body { flex: 1; min-width: 240px; }
.author-body h3 { font-size: 18px; margin-bottom: 4px; }
.author-role { color: var(--accent); font-weight: 600; font-size: 13px; margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.05em; }
.author-bio { color: var(--text); font-size: 14px; line-height: 1.6; margin-bottom: 8px; }
.author-updated { color: var(--text2); font-size: 12px; font-style: italic; }

/* ---------- PAGE HEADER (non-home pages) ---------- */
.page-hero {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-card) 100%);
  padding: 40px 0 30px;
  border-bottom: 1px solid var(--border);
}
.page-hero h1 {
  font-size: clamp(26px, 3.6vw, 38px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 12px;
  color: var(--text);
}
.page-hero .intro { font-size: 16px; color: var(--text2); max-width: 780px; }
.page-hero-image {
  margin-top: 24px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}
.page-hero-image img { width: 100%; height: auto; display: block; }

/* Article layout */
.article-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 40px;
  padding: 40px 0;
}
@media (max-width: 900px) { .article-wrap { grid-template-columns: 1fr; } }
.sidebar { }
.sidebar-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  position: sticky;
  top: 90px;
}
.sidebar-card h4 { font-size: 15px; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 12px; color: var(--text2); }
.sidebar-card ul { list-style: none; margin: 0 !important; padding: 0; }
.sidebar-card li { border-bottom: 1px solid var(--border); margin: 0; padding: 0; }
.sidebar-card li:last-child { border-bottom: none; }
.sidebar-card a { display: block; padding: 10px 0; font-size: 14px; color: var(--text); text-decoration: none; font-weight: 500; }
.sidebar-card a:hover { color: var(--accent); }

/* Legal / informational typography */
.legal-content h2 { margin-top: 32px; }
.legal-content p, .legal-content li { color: var(--text); }

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--bg-footer);
  color: rgba(255,255,255,.75);
  padding: 50px 0 26px;
  margin-top: 50px;
  font-size: 14px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr) 1.2fr;
  gap: 40px;
  margin-bottom: 32px;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-col h5 {
  color: var(--text-light);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 14px;
  font-weight: 700;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { color: rgba(255,255,255,.7); text-decoration: none; font-size: 14px; transition: color .2s ease; }
.footer-col a:hover { color: var(--accent2); }

.footer-cta {
  background: linear-gradient(135deg, rgba(229,37,33,.15), transparent);
  border: 1px solid rgba(229,37,33,.35);
  padding: 22px;
  border-radius: var(--radius);
}
.footer-cta p { color: rgba(255,255,255,.9); margin-bottom: 14px; font-size: 14px; }
.footer-cta .btn-primary { display: inline-block; width: auto; }

.footer-disclaimer {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 22px;
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
}
.age-18 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border: 2px solid var(--accent);
  color: var(--accent);
  border-radius: 50%;
  font-weight: 800;
  font-size: 14px;
  flex-shrink: 0;
}
.trust-badges {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
.trust-badge {
  padding: 6px 12px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-sm);
  color: rgba(255,255,255,.75);
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.05em;
}
.trust-badge:hover { color: var(--text-light); border-color: rgba(255,255,255,.4); }
.footer-legal { font-size: 12px; color: rgba(255,255,255,.5); margin-top: 18px; line-height: 1.6; }

/* Small utility */
.text-accent { color: var(--accent); }
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }

/* Small screens layout tweaks */
@media (max-width: 600px) {
  .hero { padding: 32px 0 24px; }
  .section { padding: 32px 0; }
  .inline-cta { padding: 22px; text-align: center; justify-content: center; }
  .author-box { padding: 20px; }
}

/* Print / accessibility */
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
  html { scroll-behavior: auto; }
}
:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; border-radius: 4px; }

/* Casino visit block: 300x300 image + CTA button */
.casino-visit {
  display: flex;
  align-items: center;
  gap: 28px;
  background: #fafafa;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  margin: 0 0 32px;
}
.casino-visit-image {
  flex: 0 0 300px;
  width: 300px;
  height: 300px;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
}
.casino-visit-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  padding: 20px;
  box-sizing: border-box;
}
.casino-visit-body {
  flex: 1 1 auto;
  min-width: 0;
}
.casino-visit-body h2 {
  margin: 0 0 8px;
  font-size: 22px;
  color: var(--text);
}
.casino-visit-body p {
  margin: 0 0 18px;
  color: var(--text2);
  font-size: 15px;
  line-height: 1.55;
}
.casino-visit-body .btn-primary {
  display: inline-block;
  width: auto;
  padding: 14px 30px;
}
@media (max-width: 720px) {
  .casino-visit { flex-direction: column; gap: 18px; padding: 20px; text-align: center; }
  .casino-visit-image { flex: 0 0 auto; width: 240px; height: 240px; }
  .casino-visit-body h2 { font-size: 20px; }
}
