@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;500;600;700&family=Exo+2:ital,wght@0,300;0,400;0,600;0,700;1,400&display=swap');

: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);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Exo 2', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
}

/* FIRE BACKGROUND */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 50% 100%, rgba(255,85,31,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 30% 20% at 80% 80%, rgba(255,165,0,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 40% 30% at 20% 90%, rgba(255,51,75,0.05) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

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

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

h1, h2, h3, h4 { font-family: 'Rajdhani', sans-serif; line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 700; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); font-weight: 600; }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.5rem); font-weight: 600; }

p { margin-bottom: 1em; }
ul, ol { padding-left: 1.5em; margin-bottom: 1em; }
li { margin-bottom: .4em; }

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg-surf);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 1rem;
}
.logo-link { flex-shrink: 0; display: flex; align-items: center; }
.logo-img { height: 40px; width: auto; }

.main-nav { display: flex; align-items: center; gap: .25rem; flex-wrap: wrap; }
.main-nav a {
  color: var(--text2);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: .85rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: .4rem .65rem;
  border-radius: 6px;
  transition: color .2s, background .2s;
}
.main-nav a:hover, .main-nav a.active { color: var(--text); background: var(--bg-surf2); }
.main-nav a.nav-cta {
  background: var(--accent);
  color: #fff;
  padding: .4rem 1rem;
}
.main-nav a.nav-cta:hover { background: var(--accent2); color: #fff; }

.burger { display: none; background: none; border: none; cursor: pointer; padding: .4rem; }
.burger span {
  display: block; width: 24px; height: 2px;
  background: var(--text); margin: 5px 0;
  transition: transform .3s, opacity .3s;
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* MAIN LAYOUT */
.site-main { position: relative; z-index: 1; }

/* HERO */
.hero {
  padding: 5rem 1.5rem 3rem;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.hero-text h1 { margin-bottom: 1rem; }
.hero-text h1 span { color: var(--accent); }
.hero-text p { color: var(--text2); font-size: 1.1rem; margin-bottom: 1.5rem; }
.hero-img { border-radius: 16px; overflow: hidden; box-shadow: var(--shadow), 0 0 60px rgba(255,85,31,.15); }
.hero-img img { width: 100%; height: 320px; object-fit: cover; }

/* STATS BAR */
.stats-bar {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem;
}
.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.stat-item { text-align: center; }
.stat-item .val { font-family: 'Rajdhani', sans-serif; font-size: 2rem; font-weight: 700; color: var(--accent); line-height: 1; }
.stat-item .lbl { font-size: .8rem; color: var(--text2); text-transform: uppercase; letter-spacing: .06em; margin-top: .25rem; }

/* SECTION GENERIC */
.section { padding: 3.5rem 1.5rem; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-title { margin-bottom: 2rem; }
.section-title h2 { margin-bottom: .5rem; }
.section-title p { color: var(--text2); }

/* CARD GRID */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.75rem;
  transition: border-color .25s, transform .25s;
}
.card:hover { border-color: rgba(255,85,31,.4); transform: translateY(-3px); }
.card h3 { margin-bottom: .75rem; }
.card p { color: var(--text2); font-size: .95rem; }

/* ICON CARD */
.icon-card .card-icon {
  width: 48px; height: 48px;
  background: rgba(255,85,31,.15);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

/* CTA BUTTON */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2rem;
  border-radius: 8px;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background .2s, transform .15s, box-shadow .2s;
  text-decoration: none;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 20px rgba(255,85,31,.35);
}
.btn-primary:hover {
  background: var(--accent2);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(255,85,31,.5);
}
.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent);
}
.btn-outline:hover { background: var(--accent); color: #fff; }
.btn-lg { padding: 1rem 2.5rem; font-size: 1.15rem; }

/* PAGE HERO (inner pages) */
.page-hero {
  padding: 3rem 1.5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.page-hero-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 2.5rem;
  align-items: start;
}
.page-hero-img {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow), 0 0 40px rgba(255,85,31,.12);
}
.page-hero-img img { width: 100%; height: 260px; object-fit: cover; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .82rem;
  color: var(--text2);
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--text2); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { color: var(--accent); }

/* TABLE */
.table-wrap { overflow-x: auto; margin: 1.5rem 0; }
table { width: 100%; border-collapse: collapse; }
th {
  background: var(--bg-surf);
  color: var(--text);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: .9rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  padding: .85rem 1rem;
  text-align: left;
  border-bottom: 2px solid var(--border);
}
td {
  padding: .85rem 1rem;
  border-bottom: 1px solid rgba(255,255,255,.05);
  color: var(--text2);
  font-size: .95rem;
}
tr:hover td { background: rgba(255,85,31,.04); }
td:first-child { color: var(--text); font-weight: 500; }

/* HIGHLIGHT BOX */
.highlight-box {
  background: linear-gradient(135deg, rgba(255,85,31,.12) 0%, rgba(255,165,0,.06) 100%);
  border: 1px solid rgba(255,85,31,.3);
  border-radius: 12px;
  padding: 1.75rem;
  margin: 2rem 0;
}
.highlight-box h3 { color: var(--neon); margin-bottom: .75rem; }

/* FAQ */
.faq-list { margin: 1.5rem 0; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  margin-bottom: .75rem;
  overflow: hidden;
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  color: var(--text);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  text-align: left;
  padding: 1.1rem 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-q::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform .25s;
}
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
  color: var(--text2);
  font-size: .95rem;
}
.faq-a-inner { padding: 0 1.5rem 1.25rem; }
.faq-item.open .faq-a { max-height: 400px; }

/* CTA BANNER */
.cta-banner {
  background: linear-gradient(135deg, var(--bg-surf) 0%, var(--bg-surf2) 100%);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 3rem 2rem;
  text-align: center;
  margin: 3rem 0 1rem;
}
.cta-banner h2 { margin-bottom: .75rem; }
.cta-banner p { color: var(--text2); margin-bottom: 1.75rem; }

/* STEPS */
.steps { list-style: none; padding: 0; counter-reset: steps; margin: 1.5rem 0; }
.steps li {
  counter-increment: steps;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.steps li::before {
  content: counter(steps);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  min-width: 34px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  margin-top: .2rem;
}

/* FOOTER */
.site-footer {
  background: var(--bg-surf);
  border-top: 1px solid var(--border);
  padding: 3rem 1.5rem 1.5rem;
  margin-top: 4rem;
  position: relative;
  z-index: 1;
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
.footer-brand p { color: var(--text2); font-size: .9rem; margin-top: 1rem; line-height: 1.6; }
.footer-col h4 {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text);
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: .55rem; }
.footer-col ul a { color: var(--text2); font-size: .9rem; }
.footer-col ul a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.footer-bottom p { color: var(--text2); font-size: .8rem; line-height: 1.5; max-width: 800px; }
.footer-badges { display: flex; gap: .75rem; align-items: center; flex-wrap: wrap; }
.badge {
  padding: .35rem .85rem;
  border-radius: 20px;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.badge-green { background: rgba(46,193,103,.15); color: var(--success); border: 1px solid rgba(46,193,103,.3); }
.badge-orange { background: rgba(255,85,31,.12); color: var(--accent2); border: 1px solid rgba(255,85,31,.25); }
.badge-age { background: rgba(255,51,75,.12); color: var(--accent-red); border: 1px solid rgba(255,51,75,.25); font-size: .8rem; padding: .35rem .7rem; border-radius: 6px; }

/* CONTENT BODY */
.content-body { max-width: 900px; }
.content-body h2 { margin: 2rem 0 .75rem; }
.content-body h3 { margin: 1.5rem 0 .6rem; color: var(--accent2); }
.content-body ul, .content-body ol { margin: .75rem 0 1rem 1.5rem; }
.content-body li { color: var(--text2); }
.content-body li strong { color: var(--text); }

/* CONTACT CARD */
.contact-methods { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.25rem; margin: 1.5rem 0; }
.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
}
.contact-card .icon { font-size: 2.2rem; margin-bottom: .75rem; }
.contact-card h3 { font-size: 1.1rem; margin-bottom: .4rem; }
.contact-card p { color: var(--text2); font-size: .9rem; margin: 0; }

/* ACCENT TEXT */
.text-accent { color: var(--accent); }
.text-neon { color: var(--neon); }
.text-success { color: var(--success); }
.text-muted { color: var(--text2); }

/* DIVIDER */
.divider { height: 1px; background: var(--border); margin: 2.5rem 0; }

/* 18+ NOTICE */
.age-notice {
  background: rgba(255,51,75,.08);
  border: 1px solid rgba(255,51,75,.2);
  border-radius: 8px;
  padding: .75rem 1.25rem;
  font-size: .85rem;
  color: var(--text2);
  display: flex;
  align-items: center;
  gap: .75rem;
  margin: 1.5rem 0;
}
.age-notice .age-badge {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  background: var(--accent-red);
  color: #fff;
  padding: .2rem .6rem;
  border-radius: 5px;
  flex-shrink: 0;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero-img { order: -1; }
  .page-hero-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 64px;
    left: 0; right: 0;
    background: var(--bg-surf);
    border-bottom: 1px solid var(--border);
    padding: 1rem;
    flex-direction: column;
    align-items: stretch;
    gap: .25rem;
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: .65rem 1rem; }
  .burger { display: block; }
  .header-inner { position: relative; }
  .stats-inner { gap: 1rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
}

@media (max-width: 480px) {
  .hero { padding: 3rem 1rem 2rem; }
  .section { padding: 2.5rem 1rem; }
}
