/* ===========================
   Fireball Casino HU — Stylesheet
   =========================== */
: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);
  --radius: 14px;
  --radius-sm: 8px;
  --maxw: 1180px;
  --font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  background-image:
    radial-gradient(ellipse at 12% -10%, rgba(255, 85, 31, 0.18), transparent 55%),
    radial-gradient(ellipse at 90% 5%, rgba(255, 51, 75, 0.12), transparent 50%),
    radial-gradient(ellipse at 50% 100%, rgba(255, 165, 0, 0.08), transparent 55%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  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: var(--maxw); margin: 0 auto; padding: 0 20px; }

/* ===========================
   Header
   =========================== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(11, 5, 14, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
}
.logo-link { display: inline-flex; align-items: center; flex-shrink: 0; }
.logo-img {
  height: 40px;
  width: auto;
  display: block;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}
.main-nav a {
  color: var(--text);
  font-weight: 500;
  font-size: 14px;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: background .2s ease, color .2s ease;
  white-space: nowrap;
}
.main-nav a:hover { background: var(--bg-surf2); color: var(--accent2); }
.main-nav a.active { color: var(--accent); background: var(--bg-surf); }

.nav-cta {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff !important;
  padding: 10px 18px !important;
  border-radius: 999px !important;
  font-weight: 700 !important;
  box-shadow: 0 4px 16px rgba(255, 85, 31, 0.35);
  letter-spacing: .3px;
}
.nav-cta:hover { background: linear-gradient(135deg, var(--accent2), var(--accent)) !important; transform: translateY(-1px); }

.burger {
  display: none;
  background: var(--bg-surf);
  border: 1px solid var(--border);
  width: 42px; height: 42px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  align-items: center; justify-content: center;
  padding: 0;
}
.burger span {
  display: block; width: 20px; height: 2px;
  background: var(--text); margin: 3px 0;
  border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
}

/* ===========================
   Hero
   =========================== */
.hero {
  padding: 60px 0 50px;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 50px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-surf);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  color: var(--text2);
  margin-bottom: 18px;
  font-weight: 600;
  letter-spacing: .3px;
}
.hero-eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 8px var(--success);
}
.hero h1 {
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.1;
  margin: 0 0 18px;
  font-weight: 800;
  letter-spacing: -0.5px;
}
.hero h1 .accent {
  background: linear-gradient(135deg, var(--accent), var(--neon));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero p.lead {
  font-size: 17px;
  color: var(--text2);
  margin: 0 0 26px;
  max-width: 560px;
}
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 520px;
}
.hero-stats .stat {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  text-align: center;
}
.hero-stats .stat strong {
  display: block;
  font-size: 20px;
  color: var(--accent);
  font-weight: 800;
}
.hero-stats .stat span {
  font-size: 12px;
  color: var(--text2);
}
.hero-img-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow), 0 0 80px rgba(255, 85, 31, 0.18);
  aspect-ratio: 16 / 11;
}
.hero-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
}
.hero-img-wrap::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(11, 5, 14, 0.4));
}
.hero-badge {
  position: absolute;
  bottom: 20px; left: 20px;
  background: rgba(11, 5, 14, 0.75);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero-badge::before {
  content: "⚡";
  font-size: 16px;
}

/* ===========================
   Buttons
   =========================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  border: none;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
  text-align: center;
  font-family: inherit;
  letter-spacing: .3px;
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff;
  box-shadow: 0 6px 22px rgba(255, 85, 31, 0.4);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(255, 85, 31, 0.55);
  color: #fff;
}
.btn-ghost {
  background: var(--bg-surf);
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  background: var(--bg-surf2);
  color: var(--accent2);
}
.btn-lg { padding: 16px 34px; font-size: 16px; }

/* ===========================
   Sections
   =========================== */
section { padding: 60px 0; }
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 44px;
}
.section-head .kicker {
  display: inline-block;
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.section-head h2 {
  font-size: clamp(26px, 3.6vw, 38px);
  margin: 0 0 14px;
  font-weight: 800;
  letter-spacing: -0.4px;
}
.section-head p {
  color: var(--text2);
  margin: 0;
  font-size: 16px;
}
h2 { font-size: clamp(24px, 3.4vw, 34px); margin: 0 0 18px; font-weight: 800; line-height: 1.2; letter-spacing: -0.3px; }
h3 { font-size: clamp(19px, 2.2vw, 23px); margin: 28px 0 12px; font-weight: 700; color: var(--text); }
p { margin: 0 0 16px; }

/* ===========================
   Feature cards
   =========================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 22px;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--neon));
  opacity: 0;
  transition: opacity .25s ease;
}
.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 85, 31, 0.35);
  box-shadow: 0 14px 34px rgba(0,0,0,.45);
}
.feature-card:hover::before { opacity: 1; }
.feature-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255,85,31,.18), rgba(255,165,0,.1));
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
  border: 1px solid var(--border);
}
.feature-card h3 {
  margin: 0 0 8px;
  font-size: 18px;
  color: var(--text);
}
.feature-card p {
  color: var(--text2);
  font-size: 14px;
  margin: 0;
}

/* ===========================
   Info blocks (text + image)
   =========================== */
.info-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.info-split.reverse > div:first-child { order: 2; }
.info-img {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.info-img img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }
.info-img.tall img { aspect-ratio: 3/4; }

/* ===========================
   Article / content
   =========================== */
.content-wrap {
  max-width: 920px;
  margin: 0 auto;
}
.content-wrap ul, .content-wrap ol {
  margin: 16px 0 22px;
  padding-left: 22px;
  color: var(--text);
}
.content-wrap ul li, .content-wrap ol li {
  margin-bottom: 10px;
  line-height: 1.65;
}
.content-wrap ul li::marker { color: var(--accent); }
.content-wrap ol li::marker { color: var(--accent); font-weight: 700; }

/* Page hero (inner pages) */
.page-hero {
  padding: 50px 0 30px;
}
.page-hero .breadcrumbs {
  font-size: 13px;
  color: var(--text2);
  margin-bottom: 14px;
}
.page-hero .breadcrumbs a { color: var(--text2); }
.page-hero .breadcrumbs a:hover { color: var(--accent); }
.page-hero .breadcrumbs .sep { margin: 0 6px; opacity: .5; }
.page-hero h1 {
  font-size: clamp(28px, 4.4vw, 44px);
  margin: 0 0 16px;
  font-weight: 800;
  letter-spacing: -0.4px;
  line-height: 1.15;
}
.page-hero .intro {
  color: var(--text2);
  font-size: 17px;
  max-width: 760px;
  margin: 0 0 24px;
}
.page-hero-img {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  margin: 24px 0 0;
  max-height: 360px;
}
.page-hero-img img {
  width: 100%; height: 360px; object-fit: cover;
}

/* ===========================
   Tables
   =========================== */
.table-wrap {
  overflow-x: auto;
  margin: 20px 0 28px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-card);
}
table.fb-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}
table.fb-table th,
table.fb-table td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
table.fb-table th {
  background: var(--bg-surf);
  color: var(--accent2);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .4px;
  text-transform: uppercase;
}
table.fb-table tr:last-child td { border-bottom: none; }
table.fb-table tr:hover td { background: rgba(255,85,31,0.04); }

/* ===========================
   Callout / Tip box
   =========================== */
.callout {
  background: linear-gradient(135deg, rgba(255,85,31,.1), rgba(255,165,0,.05));
  border: 1px solid rgba(255,85,31,.25);
  border-left: 3px solid var(--accent);
  padding: 18px 22px;
  border-radius: var(--radius-sm);
  margin: 22px 0;
  color: var(--text);
}
.callout strong { color: var(--accent2); }

/* ===========================
   FAQ
   =========================== */
.faq-section { padding: 60px 0; }
.faq-wrap {
  max-width: 820px;
  margin: 0 auto;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color .2s ease;
}
.faq-item[open] {
  border-color: rgba(255, 85, 31, 0.4);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 24px;
  font-weight: 600;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--text);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 24px;
  color: var(--accent);
  font-weight: 300;
  transition: transform .25s ease;
  line-height: 1;
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
}
.faq-item .faq-body {
  padding: 0 24px 20px;
  color: var(--text2);
  line-height: 1.7;
}
.faq-item .faq-body p:last-child { margin-bottom: 0; }

/* ===========================
   CTA banner
   =========================== */
.cta-banner {
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 85, 31, 0.25), transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 165, 0, 0.18), transparent 50%),
    var(--bg-card);
  border: 1px solid rgba(255, 85, 31, 0.35);
  border-radius: 22px;
  padding: 50px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner h2 {
  font-size: clamp(24px, 3.2vw, 34px);
  margin: 0 0 12px;
}
.cta-banner p {
  color: var(--text2);
  margin: 0 auto 26px;
  max-width: 580px;
}

/* ===========================
   Footer
   =========================== */
.site-footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 50px 0 26px;
  margin-top: 60px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 36px;
}
.footer-col h4 {
  font-size: 14px;
  margin: 0 0 16px;
  color: var(--accent2);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.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 {
  color: var(--text2);
  font-size: 14px;
  margin: 14px 0 0;
  max-width: 320px;
}
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: var(--text2);
}
.footer-badges {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}
.badge-18 {
  background: var(--accent-red);
  color: #fff;
  width: 32px; height: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 12px;
}
.disclaimer {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  margin-top: 22px;
  font-size: 12.5px;
  color: var(--text2);
  line-height: 1.6;
}

/* ===========================
   Mobile menu
   =========================== */
@media (max-width: 900px) {
  .burger { display: inline-flex; }
  .main-nav {
    position: fixed;
    top: 64px; left: 0; right: 0;
    background: rgba(11, 5, 14, 0.97);
    backdrop-filter: blur(14px);
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    gap: 4px;
    border-bottom: 1px solid var(--border);
    max-height: calc(100vh - 64px);
    overflow-y: auto;
    transform: translateY(-110%);
    transition: transform .3s ease;
    z-index: 99;
  }
  .main-nav.open { transform: translateY(0); }
  .main-nav a { padding: 12px 14px; font-size: 15px; }
  .nav-cta { margin-top: 6px; }
}

@media (max-width: 860px) {
  .hero { padding: 36px 0 30px; }
  .hero-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero-stats { max-width: 100%; }
  .info-split { grid-template-columns: 1fr; gap: 28px; }
  .info-split.reverse > div:first-child { order: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  section { padding: 44px 0; }
  .cta-banner { padding: 36px 22px; }
  .page-hero-img img { height: 240px; }
}

@media (max-width: 520px) {
  .container { padding: 0 16px; }
  .hero-stats { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 26px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; }
  table.fb-table th, table.fb-table td { padding: 10px 12px; font-size: 14px; }
}
