: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 8px 24px rgba(0, 0, 0, 0.1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

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

.container { max-width: 1200px; 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;
  padding: 14px 20px;
  max-width: 1280px;
  margin: 0 auto;
  gap: 16px;
}
.logo-link { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.logo-img { height: 40px; width: auto; }

.main-nav { display: flex; align-items: center; gap: 4px; flex: 1; justify-content: center; }
.main-nav a {
  color: var(--text-light);
  text-decoration: none;
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 6px;
  transition: background .2s, color .2s;
  white-space: nowrap;
}
.main-nav a:hover { background: rgba(255,255,255,.08); color: var(--accent2); }
.main-nav a.is-active { color: var(--accent2); background: rgba(229,37,33,.12); }

.play-btn {
  background: var(--accent);
  color: var(--text-light) !important;
  text-decoration: none;
  padding: 10px 22px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: .5px;
  transition: background .2s, transform .2s;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(229,37,33,.4);
}
.play-btn:hover { background: var(--accent2); transform: translateY(-1px); }

.burger {
  display: none;
  background: transparent;
  border: none;
  color: var(--text-light);
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 4px;
}
.burger span { width: 24px; height: 2px; background: var(--text-light); display: block; }

@media (max-width: 900px) {
  .burger { display: flex; }
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-header);
    flex-direction: column;
    padding: 12px;
    border-top: 1px solid rgba(255,255,255,.1);
    gap: 4px;
  }
  .main-nav.is-open { display: flex; }
  .main-nav a { width: 100%; padding: 12px 16px; }
}

/* HERO */
.hero {
  background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
  color: var(--text-light);
  padding: 60px 0 40px;
  text-align: center;
  border-bottom: 3px solid var(--accent);
}
.hero h1 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  margin-bottom: 18px;
  line-height: 1.15;
}
.hero h1 span { color: var(--accent2); }
.hero-lead {
  max-width: 780px;
  margin: 0 auto;
  font-size: 17px;
  color: #d0d0d0;
}

/* MAIN CONTENT */
main { padding: 40px 0 60px; }
main h2 {
  font-size: clamp(22px, 3vw, 30px);
  margin: 40px 0 16px;
  color: var(--text);
  font-weight: 700;
  line-height: 1.25;
}
main h3 {
  font-size: clamp(18px, 2.2vw, 22px);
  margin: 26px 0 12px;
  color: var(--text);
  font-weight: 700;
}
main p { margin-bottom: 14px; }
main ul, main ol { margin: 14px 0 18px 24px; }
main li { margin-bottom: 6px; }
main a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
main a:hover { color: var(--accent2); }

/* Article image */
.article-img {
  border-radius: 12px;
  margin: 20px 0 28px;
  box-shadow: var(--shadow);
  width: 100%;
}

/* CTA button inline */
.cta-inline {
  display: inline-block;
  background: var(--accent);
  color: var(--text-light) !important;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none !important;
  margin: 20px 0;
  transition: background .2s, transform .2s;
  box-shadow: 0 4px 14px rgba(229,37,33,.35);
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.cta-inline:hover { background: var(--accent2); transform: translateY(-2px); color: var(--text-light) !important; }

.cta-block {
  background: var(--bg-card);
  border-left: 4px solid var(--accent);
  padding: 24px;
  margin: 30px 0;
  border-radius: 8px;
  text-align: center;
}
.cta-block p { margin-bottom: 12px; font-size: 17px; font-weight: 500; }

/* TABLES */
.data-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  background: var(--bg-card);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  font-size: 15px;
}
.data-table thead { background: var(--bg-header); color: var(--text-light); }
.data-table th, .data-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.data-table tbody tr:hover { background: var(--bg-surf2); }
.data-table tbody tr:last-child td { border-bottom: none; }

/* TOP CASINOS SHOWCASE */
.top-casinos {
  padding: 30px 0 20px;
}
.top-casinos h2 { text-align: center; margin-top: 0; }
.top-casinos-lead { text-align: center; max-width: 700px; margin: 0 auto 30px; color: var(--text2); }

.casino-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .casino-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .casino-grid { grid-template-columns: 1fr; } }

.casino-card {
  background: var(--bg-card);
  border-radius: 14px;
  padding: 22px 20px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform .2s, box-shadow .2s;
  position: relative;
  border: 2px solid transparent;
}
.casino-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.casino-card.featured { border-color: var(--accent); background: #fff; }

.rank-badge {
  position: absolute;
  top: -12px;
  left: 20px;
  background: var(--bg-surf2);
  color: var(--text);
  padding: 5px 12px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .5px;
}
.casino-card.featured .rank-badge {
  background: var(--accent);
  color: var(--text-light);
}
.rec-badge {
  background: var(--neon);
  color: #000;
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: inline-block;
}

.casino-logo {
  width: 130px;
  height: 70px;
  object-fit: contain;
  margin: 12px 0;
}
.casino-card.featured .casino-logo { width: 150px; height: 80px; }

.stars { color: #f5a623; font-size: 18px; letter-spacing: 2px; margin-bottom: 6px; }
.stars .rating-num { color: var(--text); font-weight: 700; margin-left: 6px; font-size: 15px; }

.casino-usp {
  font-size: 14px;
  color: var(--text);
  margin: 10px 0 16px;
  min-height: 44px;
  line-height: 1.4;
}
.casino-usp strong { color: var(--accent); font-weight: 700; }

.casino-actions { display: flex; flex-direction: column; gap: 8px; width: 100%; margin-top: auto; }
.casino-cta {
  background: var(--accent);
  color: var(--text-light) !important;
  padding: 11px 16px;
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none !important;
  transition: background .2s;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.casino-cta:hover { background: var(--accent2); }
.casino-review {
  color: var(--text2);
  font-size: 13px;
  text-decoration: underline;
  padding: 4px;
}
.casino-review:hover { color: var(--accent); }

/* REVIEWS SLIDER */
.reviews-section {
  padding: 30px 0;
  background: var(--bg-card);
  border-radius: 14px;
  margin: 30px 0;
}
.reviews-section h2 { text-align: center; margin-top: 0; }

.reviews-slider {
  position: relative;
  padding: 20px 40px;
  max-width: 1160px;
  margin: 0 auto;
}
.reviews-track {
  display: flex;
  gap: 20px;
  overflow: hidden;
}
.review-card {
  background: #fff;
  border-radius: 12px;
  padding: 22px;
  box-shadow: var(--shadow);
  flex: 0 0 calc((100% - 40px) / 3);
  min-width: 0;
}
@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: center; margin-bottom: 8px; }
.review-name { font-weight: 700; }
.review-date { font-size: 13px; color: var(--text2); }
.review-stars { color: #f5a623; font-size: 15px; letter-spacing: 1px; margin-bottom: 10px; }
.review-text { font-size: 14px; color: var(--text); line-height: 1.5; }

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--accent);
  color: var(--text-light);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  font-weight: 700;
  z-index: 5;
  transition: background .2s;
  box-shadow: 0 2px 8px rgba(0,0,0,.2);
}
.slider-btn:hover { background: var(--accent2); }
.slider-btn.prev { left: 0; }
.slider-btn.next { right: 0; }
.slider-btn:disabled { opacity: .4; cursor: not-allowed; }

/* FAQ */
.faq-section {
  padding: 20px 0;
  margin: 30px 0;
}
.faq-section h2 { text-align: center; }
.faq-item {
  background: var(--bg-card);
  border-radius: 10px;
  margin-bottom: 12px;
  border: 1px solid var(--border);
  overflow: hidden;
}
.faq-question {
  padding: 16px 22px;
  cursor: pointer;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  list-style: none;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after {
  content: '+';
  color: var(--accent);
  font-size: 22px;
  font-weight: 700;
  transition: transform .2s;
}
details[open] .faq-question::after { content: '−'; }
.faq-answer {
  padding: 0 22px 18px;
  color: var(--text);
  font-size: 15px;
  line-height: 1.6;
}

/* AUTHOR BLOCK */
.author-block {
  background: var(--bg-card);
  border-radius: 14px;
  padding: 26px;
  margin: 40px 0 20px;
  display: flex;
  gap: 22px;
  align-items: flex-start;
  border-left: 4px solid var(--accent);
}
.author-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 3px solid var(--accent);
}
.author-info h3 { margin: 0 0 4px; font-size: 18px; }
.author-info .author-role { color: var(--accent); font-size: 14px; font-weight: 600; margin-bottom: 8px; }
.author-info .author-bio { font-size: 14px; color: var(--text); line-height: 1.55; margin-bottom: 8px; }
.author-info .author-updated { font-size: 12px; color: var(--text2); font-style: italic; }
@media (max-width: 600px) {
  .author-block { flex-direction: column; align-items: center; text-align: center; }
}

/* AVIATOR GAME PREVIEW */
.game-preview {
  background: var(--bg-surf);
  color: var(--text-light);
  border-radius: 16px;
  padding: 34px 24px;
  margin: 30px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.game-preview::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 40%, rgba(229,37,33,.15), transparent 60%);
  pointer-events: none;
}
.game-preview h2 { color: var(--text-light); position: relative; margin-top: 0; }
.game-preview p { position: relative; color: #ccc; max-width: 620px; margin: 0 auto 20px; }
.multiplier-demo {
  display: inline-block;
  font-size: 52px;
  font-weight: 800;
  color: var(--neon);
  padding: 10px 30px;
  border: 2px solid var(--neon);
  border-radius: 12px;
  font-family: 'Courier New', monospace;
  margin: 14px 0;
  position: relative;
  text-shadow: 0 0 10px rgba(38,217,38,.5);
}

/* PROS/CONS */
.proscons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 24px 0;
}
@media (max-width: 600px) { .proscons { grid-template-columns: 1fr; } }
.pros, .cons {
  background: var(--bg-card);
  border-radius: 10px;
  padding: 20px;
}
.pros { border-top: 4px solid var(--success); }
.cons { border-top: 4px solid var(--accent); }
.pros h3, .cons h3 { margin-top: 0; }
.pros ul, .cons ul { list-style: none; margin-left: 0; }
.pros li, .cons li { padding-left: 26px; position: relative; margin-bottom: 8px; }
.pros li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--success);
  font-weight: 700;
  font-size: 18px;
}
.cons li::before {
  content: '✕';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 700;
  font-size: 16px;
}

/* CASINO REVIEW HERO */
.review-hero {
  background: linear-gradient(135deg, #000 0%, #2a0e0d 100%);
  color: var(--text-light);
  padding: 46px 0 36px;
  border-bottom: 3px solid var(--accent);
}
.review-hero-inner {
  display: flex;
  align-items: center;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  flex-wrap: wrap;
}
.review-hero-logo {
  background: #fff;
  border-radius: 14px;
  padding: 20px;
  width: 200px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.review-hero-logo img { max-width: 100%; max-height: 100%; object-fit: contain; }
.review-hero-content { flex: 1; min-width: 260px; }
.review-hero h1 { font-size: clamp(26px, 3.5vw, 38px); margin-bottom: 10px; }
.review-hero .rating-line { display: flex; align-items: center; gap: 12px; margin: 10px 0; flex-wrap: wrap; }
.review-hero .stars { font-size: 22px; }
.review-hero-lead { color: #d0d0d0; font-size: 16px; max-width: 640px; }

/* Bonus box */
.bonus-box {
  background: linear-gradient(135deg, var(--accent) 0%, #b91c17 100%);
  color: var(--text-light);
  border-radius: 14px;
  padding: 24px;
  margin: 24px 0;
  text-align: center;
  box-shadow: 0 6px 20px rgba(229,37,33,.3);
}
.bonus-box h3 { color: var(--text-light); margin-top: 0; font-size: 22px; }
.bonus-box .bonus-amount { font-size: 34px; font-weight: 800; margin: 8px 0; }
.bonus-box .cta-inline { background: #fff; color: var(--accent) !important; margin-top: 12px; }
.bonus-box .cta-inline:hover { background: #f0f0f0; }

/* Casino cover block — 300x300 image + CTA button */
.casino-cover {
  display: flex;
  align-items: stretch;
  gap: 24px;
  background: var(--bg-card);
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 24px;
  margin: 24px 0 32px;
  box-shadow: 0 4px 14px rgba(0,0,0,.06);
  flex-wrap: wrap;
}
.casino-cover-img {
  width: 300px;
  height: 300px;
  flex-shrink: 0;
  background: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  box-sizing: border-box;
  border: 1px solid #e5e7eb;
}
.casino-cover-img img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}
.casino-cover-action {
  flex: 1;
  min-width: 260px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}
.casino-cover-action h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.25;
  color: var(--text);
}
.casino-cover-action p {
  margin: 0;
  color: #495057;
  font-size: 15px;
  line-height: 1.55;
}
.casino-cover-action .cover-features {
  list-style: none;
  padding: 0;
  margin: 4px 0 0;
  display: grid;
  gap: 6px;
}
.casino-cover-action .cover-features li {
  padding-left: 22px;
  position: relative;
  font-size: 14px;
  color: #343a40;
}
.casino-cover-action .cover-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--neon);
  font-weight: 800;
}
.casino-cover-action .btn-cover {
  align-self: flex-start;
  background: var(--accent);
  color: #fff !important;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 16px;
  transition: background .15s, transform .15s;
  box-shadow: 0 4px 12px rgba(229,37,33,.25);
}
.casino-cover-action .btn-cover:hover {
  background: var(--accent2);
  transform: translateY(-1px);
}
@media (max-width: 640px) {
  .casino-cover { padding: 16px; gap: 16px; }
  .casino-cover-img { width: 100%; height: auto; aspect-ratio: 1/1; max-width: 300px; margin: 0 auto; }
  .casino-cover-action { min-width: 0; text-align: left; }
  .casino-cover-action .btn-cover { width: 100%; text-align: center; align-self: stretch; }
}

/* FEATURES GRID */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin: 24px 0;
}
.feature-item {
  background: var(--bg-card);
  padding: 20px;
  border-radius: 10px;
  border-top: 3px solid var(--accent);
}
.feature-item h4 { margin: 0 0 8px; color: var(--accent); font-size: 16px; }
.feature-item p { font-size: 14px; margin: 0; color: var(--text); }

/* Article page image cover */
.page-cover {
  width: 100%;
  max-height: 340px;
  object-fit: cover;
  border-radius: 14px;
  margin: 0 0 26px;
  box-shadow: var(--shadow);
}

/* FOOTER */
.site-footer {
  background: var(--bg-footer);
  color: #b0b0b0;
  padding: 50px 0 20px;
  margin-top: 60px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr; gap: 30px; } }
.footer-col h4 {
  color: var(--text-light);
  margin-bottom: 16px;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 8px;
  display: inline-block;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 8px; }
.footer-col a {
  color: #b0b0b0;
  text-decoration: none;
  font-size: 14px;
  transition: color .2s;
}
.footer-col a:hover { color: var(--accent2); }

.footer-cta {
  text-align: center;
  padding: 24px 20px;
  margin: 30px auto 0;
  max-width: 1160px;
  border-top: 1px solid rgba(255,255,255,.1);
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-cta .cta-inline { background: var(--accent); }

.footer-bottom {
  max-width: 1200px;
  margin: 20px auto 0;
  padding: 20px;
  text-align: center;
  font-size: 12px;
  color: #808080;
  line-height: 1.6;
}
.footer-disclaimer { margin-bottom: 12px; }
.footer-badges { display: flex; justify-content: center; gap: 14px; margin: 12px 0; flex-wrap: wrap; align-items: center; }
.footer-badges span {
  border: 1px solid rgba(255,255,255,.2);
  padding: 4px 10px;
  border-radius: 4px;
  font-weight: 700;
}
.badge-18 {
  display: inline-block;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff !important;
  line-height: 32px;
  font-weight: 800;
  font-size: 13px;
  border: none !important;
  padding: 0 !important;
}

/* CONTACT PAGE FORM */
.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin: 24px 0;
}
.contact-item {
  background: var(--bg-card);
  padding: 22px;
  border-radius: 10px;
  border-left: 4px solid var(--accent);
}
.contact-item h4 { margin: 0 0 8px; color: var(--accent); }
.contact-item a { word-break: break-all; }

/* REDIRECT PAGE */
.redirect-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background: var(--bg-surf);
  color: var(--text-light);
  text-align: center;
  padding: 20px;
}
.redirect-page .spinner {
  width: 60px;
  height: 60px;
  border: 4px solid rgba(255,255,255,.2);
  border-top-color: var(--accent2);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 20px auto;
}
@keyframes spin { to { transform: rotate(360deg); } }
