/* Fireball Casino HU — Affiliate Review Site */
:root {
  --bg: #0b050e;
  --bg-card: #150d1b;
  --bg-surf: #23162b;
  --bg-surf2: #34223f;
  --accent: #ff551f;
  --accent2: #ff7343;
  --accent-red: #ff334b;
  --neon: #ffa500;
  --success: #2ec167;
  --text: #ffffff;
  --text2: #9d8fa9;
  --border: rgba(255, 85, 31, 0.15);
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

* { 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.65;
  font-size: 16px;
  overflow-x: hidden;
}

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

a { color: var(--accent2); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--accent); }

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

/* ===== HEADER ===== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: linear-gradient(180deg, rgba(11,5,14,0.97), rgba(11,5,14,0.92));
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 20px; max-width: 1200px; margin: 0 auto; gap: 20px;
}
.logo-link { display: inline-flex; align-items: center; flex-shrink: 0; }
.logo-img { height: 40px; width: auto; }

.main-nav { display: flex; gap: 4px; flex-wrap: wrap; }
.main-nav a {
  color: var(--text); padding: 8px 14px; border-radius: 8px;
  font-size: 14px; font-weight: 500; transition: all .2s ease;
}
.main-nav a:hover, .main-nav a.active {
  background: var(--bg-surf2); color: var(--accent2);
}

.cta-header {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff; padding: 10px 22px; border-radius: 10px;
  font-weight: 700; font-size: 14px; white-space: nowrap;
  box-shadow: 0 4px 14px rgba(255, 85, 31, 0.35);
  transition: transform .2s ease, box-shadow .2s ease;
}
.cta-header:hover {
  transform: translateY(-2px); color: #fff;
  box-shadow: 0 8px 22px rgba(255, 85, 31, 0.5);
}

.burger {
  display: none; background: transparent; border: 0; cursor: pointer;
  width: 40px; height: 40px; padding: 0; color: var(--text);
}
.burger span {
  display: block; width: 24px; height: 2px; background: var(--text);
  margin: 5px auto; transition: all .3s ease;
}

@media (max-width: 900px) {
  .main-nav {
    position: fixed; top: 68px; left: 0; right: 0;
    background: var(--bg-card); border-top: 1px solid var(--border);
    flex-direction: column; gap: 0; padding: 14px 20px;
    max-height: 0; overflow: hidden; transition: max-height .3s ease;
  }
  .main-nav.open { max-height: 600px; overflow-y: auto; }
  .main-nav a { padding: 12px; border-bottom: 1px solid var(--border); }
  .burger { display: block; }
  .cta-header { padding: 8px 14px; font-size: 13px; }
}

/* ===== HERO ===== */
.hero {
  position: relative; padding: 60px 0 50px;
  background:
    radial-gradient(ellipse at top left, rgba(255,85,31,0.18), transparent 50%),
    radial-gradient(ellipse at bottom right, rgba(255,51,75,0.12), transparent 50%),
    var(--bg);
}
.hero-inner {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 50px;
  align-items: center;
}
.hero-text h1 {
  font-size: clamp(28px, 4.2vw, 44px); line-height: 1.15;
  margin-bottom: 18px; font-weight: 800;
  background: linear-gradient(135deg, #fff 30%, var(--accent2) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-text p.lead {
  font-size: 17px; color: var(--text2); margin-bottom: 26px;
}
.hero-badges {
  display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 28px;
}
.badge {
  background: var(--bg-surf); padding: 8px 14px; border-radius: 999px;
  font-size: 13px; color: var(--text); border: 1px solid var(--border);
}
.badge.hot { background: var(--accent); color: #fff; border-color: transparent; font-weight: 600; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff; padding: 16px 32px; border-radius: 12px;
  font-weight: 700; font-size: 16px; display: inline-flex; align-items: center; gap: 8px;
  box-shadow: 0 6px 20px rgba(255, 85, 31, 0.4);
  transition: transform .2s ease, box-shadow .2s ease;
  border: 0; cursor: pointer;
}
.btn-primary:hover {
  transform: translateY(-2px); color: #fff;
  box-shadow: 0 10px 28px rgba(255, 85, 31, 0.55);
}
.btn-secondary {
  background: var(--bg-surf); color: var(--text); padding: 16px 28px;
  border-radius: 12px; font-weight: 600; font-size: 15px;
  border: 1px solid var(--border);
}
.btn-secondary:hover { background: var(--bg-surf2); color: var(--text); }

.hero-image {
  border-radius: 18px; overflow: hidden; box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.hero-image img { width: 100%; height: auto; }

@media (max-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; gap: 30px; }
  .hero { padding: 40px 0 30px; }
}

/* ===== SECTIONS ===== */
section { padding: 50px 0; }
.section-title {
  font-size: clamp(24px, 3vw, 32px); margin-bottom: 18px; font-weight: 700;
}
.section-title .accent { color: var(--accent2); }
.section-sub {
  color: var(--text2); margin-bottom: 32px; font-size: 16px;
  max-width: 800px;
}

/* ===== CARDS GRID ===== */
.cards-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}
.card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 14px; padding: 26px; transition: all .25s ease;
}
.card:hover {
  transform: translateY(-4px); border-color: var(--accent);
  box-shadow: 0 12px 28px rgba(255, 85, 31, 0.18);
}
.card-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), var(--accent-red));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px; font-size: 22px;
}
.card h3 { font-size: 19px; margin-bottom: 10px; color: var(--text); }
.card p { color: var(--text2); font-size: 15px; }

/* ===== CONTENT BLOCKS ===== */
.content-block {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 16px; padding: 36px; margin-bottom: 32px;
}
.content-block h2 {
  font-size: clamp(22px, 2.6vw, 28px); margin-bottom: 16px;
  color: var(--text); font-weight: 700;
}
.content-block h2 .accent { color: var(--accent2); }
.content-block h3 {
  font-size: 19px; margin: 24px 0 12px; color: var(--accent2); font-weight: 600;
}
.content-block p { margin-bottom: 14px; color: var(--text); }
.content-block ul, .content-block ol {
  margin: 14px 0 18px 22px; color: var(--text);
}
.content-block li { margin-bottom: 8px; }
.content-block li::marker { color: var(--accent); }
.content-block strong { color: var(--accent2); }

@media (max-width: 600px) {
  .content-block { padding: 24px 20px; }
}

/* ===== TABLES ===== */
.table-wrap { overflow-x: auto; margin: 18px 0; border-radius: 12px; }
table {
  width: 100%; border-collapse: collapse; background: var(--bg-surf);
  border-radius: 12px; overflow: hidden;
}
th, td {
  padding: 14px 16px; text-align: left;
  border-bottom: 1px solid var(--border);
}
th {
  background: var(--bg-surf2); color: var(--accent2);
  font-weight: 600; font-size: 14px; text-transform: uppercase; letter-spacing: .5px;
}
td { color: var(--text); font-size: 15px; }
tr:last-child td { border-bottom: 0; }
tr:hover td { background: rgba(255, 85, 31, 0.04); }

/* ===== STATS BAR ===== */
.stats-bar {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px; margin: 30px 0;
}
.stat {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 12px; padding: 22px 18px; text-align: center;
}
.stat-num {
  font-size: clamp(22px, 3vw, 32px); font-weight: 800;
  color: var(--neon); display: block; margin-bottom: 6px;
}
.stat-label { font-size: 13px; color: var(--text2); text-transform: uppercase; letter-spacing: .5px; }

/* ===== FAQ ===== */
.faq-list { display: flex; flex-direction: column; gap: 12px; margin: 18px 0; }
.faq-item {
  background: var(--bg-surf); border: 1px solid var(--border);
  border-radius: 12px; overflow: hidden;
}
.faq-item summary {
  padding: 18px 22px; cursor: pointer; font-weight: 600; font-size: 16px;
  list-style: none; display: flex; justify-content: space-between; align-items: center;
  color: var(--text); transition: color .2s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; font-size: 24px; color: var(--accent); font-weight: 400;
  transition: transform .3s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item[open] summary { color: var(--accent2); }
.faq-item .faq-body {
  padding: 0 22px 18px; color: var(--text2); font-size: 15px; line-height: 1.7;
}

/* ===== CTA BLOCK ===== */
.cta-block {
  background: linear-gradient(135deg, rgba(255,85,31,0.15), rgba(255,51,75,0.08));
  border: 1px solid var(--accent);
  border-radius: 18px; padding: 40px; text-align: center;
  margin: 36px 0; position: relative; overflow: hidden;
}
.cta-block::before {
  content: ""; position: absolute; top: -50%; right: -20%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,165,0,0.25), transparent 70%);
  pointer-events: none;
}
.cta-block h2 {
  font-size: clamp(22px, 2.6vw, 28px); margin-bottom: 12px; color: var(--text);
}
.cta-block p {
  color: var(--text); margin-bottom: 22px; font-size: 16px;
  max-width: 600px; margin-left: auto; margin-right: auto;
}

/* ===== BREADCRUMBS ===== */
.breadcrumbs {
  padding: 18px 0 0; font-size: 13px; color: var(--text2);
}
.breadcrumbs a { color: var(--text2); }
.breadcrumbs a:hover { color: var(--accent2); }
.breadcrumbs span.sep { margin: 0 8px; color: var(--text2); }
.breadcrumbs span.current { color: var(--accent2); }

/* ===== PAGE HEADER ===== */
.page-head {
  padding: 50px 0 30px;
  background:
    radial-gradient(ellipse at top, rgba(255,85,31,0.12), transparent 60%),
    var(--bg);
}
.page-head h1 {
  font-size: clamp(28px, 4vw, 40px); margin-bottom: 14px; font-weight: 800;
}
.page-head h1 .accent { color: var(--accent2); }
.page-head .lead {
  color: var(--text2); font-size: 17px; max-width: 800px;
}

/* ===== FEATURE LIST ===== */
.feature-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; }
.feature {
  display: flex; gap: 14px; padding: 18px;
  background: var(--bg-surf); border-radius: 12px; border: 1px solid var(--border);
}
.feature .ico {
  flex-shrink: 0; width: 40px; height: 40px; border-radius: 10px;
  background: var(--bg-surf2); display: flex; align-items: center; justify-content: center;
  color: var(--accent); font-size: 20px;
}
.feature h4 { font-size: 16px; margin-bottom: 4px; }
.feature p { font-size: 14px; color: var(--text2); }

/* ===== FOOTER ===== */
.site-footer {
  background: #050309; border-top: 1px solid var(--border);
  padding: 50px 0 24px; margin-top: 60px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px;
  margin-bottom: 36px;
}
.footer-col h4 {
  font-size: 14px; text-transform: uppercase; letter-spacing: 1px;
  color: var(--accent2); margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: var(--text2); font-size: 14px; }
.footer-col a:hover { color: var(--accent); }
.footer-about p { font-size: 14px; color: var(--text2); margin-bottom: 14px; }
.footer-logos { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 14px; }
.footer-logo {
  background: var(--bg-surf); padding: 8px 14px; border-radius: 8px;
  font-size: 12px; color: var(--text2); border: 1px solid var(--border);
}
.footer-bottom {
  padding-top: 24px; border-top: 1px solid var(--border);
  text-align: center; color: var(--text2); font-size: 13px;
}
.footer-bottom p { margin-bottom: 6px; }
.age-warn {
  display: inline-block; background: var(--accent-red); color: #fff;
  width: 28px; height: 28px; border-radius: 50%;
  text-align: center; line-height: 28px; font-weight: 700; font-size: 13px;
  margin-right: 8px; vertical-align: middle;
}

@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ===== UTIL ===== */
.text-center { text-align: center; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mb-3 { margin-bottom: 24px; }
.highlight { color: var(--neon); font-weight: 700; }
.tag-new {
  display: inline-block; background: var(--accent-red); color: #fff;
  padding: 2px 8px; border-radius: 999px; font-size: 11px;
  font-weight: 700; vertical-align: middle; margin-left: 6px;
}

/* ===== PROS / CONS ===== */
.proscons { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 22px 0; }
.proscons .col { padding: 22px; border-radius: 12px; border: 1px solid var(--border); }
.proscons .pros { background: rgba(46, 193, 103, 0.08); border-color: rgba(46,193,103,0.3); }
.proscons .cons { background: rgba(255, 51, 75, 0.06); border-color: rgba(255,51,75,0.25); }
.proscons h4 { font-size: 16px; margin-bottom: 12px; }
.proscons .pros h4 { color: var(--success); }
.proscons .cons h4 { color: var(--accent-red); }
.proscons ul { list-style: none; margin: 0 !important; }
.proscons li { padding-left: 22px; position: relative; margin-bottom: 8px; font-size: 14px; }
.proscons .pros li::before { content: "✓"; position: absolute; left: 0; color: var(--success); font-weight: 700; }
.proscons .cons li::before { content: "✕"; position: absolute; left: 0; color: var(--accent-red); font-weight: 700; }

@media (max-width: 600px) {
  .proscons { grid-template-columns: 1fr; }
}
