/* ============================================================
   Gurubhai247 — brand stylesheet
   Palette pulled from the official logo: deep red badge,
   fiery golden-orange lettering, bright yellow sparks on a
   warm near-black ground.
   Fonts: Teko (display) + Mukta (body)
   ============================================================ */

:root {
  --bg:        #0f0908;
  --bg-2:      #180f0d;
  --bg-3:      #221513;
  --card:      #1c1210;
  --card-2:    #271815;

  --red:       #c01319;
  --red-dark:  #7d0c11;
  --red-light: #e5222a;

  --gold:      #ffb01f;
  --gold-2:    #ffd24a;
  --gold-deep: #e6890a;
  --orange:    #ff7a18;

  --text:      #f4ece3;
  --muted:     #b8a89c;
  --line:      rgba(255, 176, 31, 0.16);
  --line-2:    rgba(255, 176, 31, 0.30);

  --ok:        #37c26a;
  --warn:      #ffb01f;
  --bad:       #ff5a52;

  --shadow:    0 18px 44px rgba(0, 0, 0, 0.55);
  --grad-gold: linear-gradient(135deg, #ffe07a 0%, #ffb01f 42%, #ff7a18 100%);
  --grad-red:  linear-gradient(135deg, #e5222a 0%, #c01319 55%, #7d0c11 100%);
  --radius:    16px;
  --maxw:      1180px;

  --font-head: "Teko", "Arial Narrow", sans-serif;
  --font-body: "Mukta", "Segoe UI", system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background:
    radial-gradient(1100px 620px at 82% -8%, rgba(192, 19, 25, 0.30), transparent 60%),
    radial-gradient(900px 520px at 6% 4%, rgba(255, 176, 31, 0.10), transparent 55%),
    var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.wrap { width: min(100% - 40px, var(--maxw)); margin-inline: auto; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: 0.5px;
  color: #fff;
}

h1 { font-size: clamp(2.9rem, 6vw, 5rem); }
h2 { font-size: clamp(2.1rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.5rem, 2.4vw, 2rem); }

p  { margin-bottom: 1rem; color: var(--text); }
a  { color: var(--gold-2); text-decoration: none; transition: color .18s; }
a:hover { color: #fff; }

.gold-text {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.eyebrow {
  font-family: var(--font-head);
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-size: 1.05rem;
  margin-bottom: .5rem;
  display: inline-block;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-head);
  font-size: 1.25rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: .55rem 1.5rem;
  border-radius: 999px;
  border: 0; cursor: pointer;
  transition: transform .16s ease, box-shadow .16s ease, filter .16s;
  white-space: nowrap;
}
.btn-gold {
  background: var(--grad-gold);
  color: #3a1500;
  box-shadow: 0 8px 22px rgba(255, 138, 24, 0.35);
}
.btn-gold:hover { transform: translateY(-2px); filter: brightness(1.06); color: #3a1500; }
.btn-red {
  background: var(--grad-red);
  color: #fff;
  box-shadow: 0 8px 22px rgba(192, 19, 25, 0.4);
}
.btn-red:hover { transform: translateY(-2px); filter: brightness(1.08); color: #fff; }
.btn-ghost {
  background: transparent;
  color: var(--gold-2);
  border: 1.5px solid var(--line-2);
}
.btn-ghost:hover { border-color: var(--gold); color: #fff; }
.btn-lg { font-size: 1.5rem; padding: .7rem 2rem; }
.btn-block { width: 100%; justify-content: center; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(15, 9, 8, 0.82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 74px;
}
.brand { display: flex; align-items: center; gap: .6rem; }
.brand img { height: 50px; width: auto; display: block; }
.brand b {
  font-family: var(--font-head); font-size: 1.7rem; color: #fff; letter-spacing: .5px;
}
.brand b span { color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: .5rem; }
.nav-links a.link {
  font-family: var(--font-head);
  font-size: 1.3rem; letter-spacing: .5px;
  color: var(--text); padding: .35rem .75rem; border-radius: 8px;
}
.nav-links a.link:hover, .nav-links a.link.active { color: var(--gold); background: rgba(255,176,31,.08); }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; }
.nav-toggle span { display: block; width: 26px; height: 3px; background: var(--gold); margin: 5px 0; border-radius: 2px; transition: .2s; }

@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute; top: 74px; left: 0; right: 0;
    flex-direction: column; align-items: stretch;
    background: var(--bg-2); border-bottom: 1px solid var(--line);
    padding: 1rem; gap: .3rem;
    transform: translateY(-140%); transition: transform .28s ease; z-index: -1;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a.link { padding: .7rem; }
  .nav-links .btn { justify-content: center; }
}

/* ---------- Hero ---------- */
.hero { padding: 4.5rem 0 3rem; position: relative; }
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 3rem; align-items: center; }
.hero h1 { margin-bottom: 1rem; }
.hero p.lead { font-size: 1.2rem; color: var(--text); max-width: 46ch; }
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1.6rem; }
.hero-badge-img {
  width: 100%; max-width: 460px; margin-inline: auto; display: block;
  filter: drop-shadow(0 26px 40px rgba(0,0,0,.6));
  animation: float 5s ease-in-out infinite;
}
@keyframes float { 0%,100%{ transform: translateY(0); } 50%{ transform: translateY(-14px); } }

.trust-row { display: flex; gap: 1.6rem; flex-wrap: wrap; margin-top: 2rem; }
.trust-row .t { display: flex; align-items: center; gap: .5rem; color: var(--muted); font-size: .96rem; }
.trust-row .t b { color: var(--gold-2); font-family: var(--font-head); font-size: 1.5rem; }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-cta, .trust-row { justify-content: center; }
  .hero p.lead { margin-inline: auto; }
  .hero-badge-img { max-width: 340px; margin-top: 1rem; }
}

/* ---------- Sections ---------- */
.section { padding: 3.6rem 0; }
.section-head { max-width: 720px; margin: 0 auto 2.4rem; text-align: center; }
.section-head p { color: var(--muted); }

/* ---------- Stat strip ---------- */
.stat-strip {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
  background: linear-gradient(180deg, var(--card), var(--bg-2));
  border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem;
}
.stat-strip .s { text-align: center; }
.stat-strip .s b { font-family: var(--font-head); font-size: 2.6rem; color: var(--gold); display: block; line-height: 1; }
.stat-strip .s span { color: var(--muted); font-size: .92rem; }
@media (max-width: 720px) { .stat-strip { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Cards ---------- */
.grid { display: grid; gap: 1.4rem; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 900px) { .grid-3 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .grid-3, .grid-2 { grid-template-columns: 1fr; } }

.card {
  background: linear-gradient(180deg, var(--card), var(--bg-2));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.7rem;
  transition: transform .2s ease, border-color .2s ease;
}
.card:hover { transform: translateY(-5px); border-color: var(--line-2); }
.card .ico {
  width: 54px; height: 54px; border-radius: 14px;
  display: grid; place-items: center; font-size: 1.6rem;
  background: rgba(255,176,31,.12); border: 1px solid var(--line-2);
  margin-bottom: 1rem;
}
.card h3 { margin-bottom: .5rem; }
.card p { color: var(--muted); margin-bottom: 0; font-size: .98rem; }

.game-card { padding: 0; overflow: hidden; }
.game-card img { width: 100%; height: 170px; object-fit: cover; display: block; }
.game-card .body { padding: 1.1rem 1.3rem 1.4rem; }
.game-card .body h3 { font-size: 1.5rem; margin-bottom: .3rem; }
.game-card .body p { font-size: .92rem; }

/* ---------- Tools ---------- */
.tool {
  background: linear-gradient(180deg, var(--card-2), var(--bg-2));
  border: 1px solid var(--line-2); border-radius: var(--radius);
  padding: 1.7rem; height: 100%;
}
.tool h3 { display: flex; align-items: center; gap: .5rem; margin-bottom: .3rem; }
.tool .hint { color: var(--muted); font-size: .9rem; margin-bottom: 1.1rem; }
.field { margin-bottom: .9rem; }
.field label { display: block; font-size: .82rem; letter-spacing: .5px; text-transform: uppercase; color: var(--gold-2); margin-bottom: .3rem; }
.field input, .field select {
  width: 100%; padding: .7rem .85rem;
  background: var(--bg); color: var(--text);
  border: 1px solid var(--line-2); border-radius: 10px;
  font-family: var(--font-body); font-size: 1rem;
}
.field input:focus, .field select:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(255,176,31,.15); }
.tool-out {
  margin-top: 1rem; padding: 1rem; border-radius: 12px;
  background: rgba(255,176,31,.08); border: 1px dashed var(--line-2);
  text-align: center;
}
.tool-out .big { font-family: var(--font-head); font-size: 2.4rem; color: var(--gold); line-height: 1; }
.tool-out .lbl { color: var(--muted); font-size: .85rem; text-transform: uppercase; letter-spacing: 1px; }
.tool-out small { display:block; color: var(--muted); margin-top:.4rem; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: .7rem; }

/* ---------- Steps ---------- */
.steps { counter-reset: step; display: grid; grid-template-columns: repeat(4,1fr); gap: 1.2rem; }
@media (max-width: 900px){ .steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px){ .steps { grid-template-columns: 1fr; } }
.step { position: relative; padding-top: .5rem; }
.step .n {
  font-family: var(--font-head); font-size: 2.4rem;
  width: 58px; height: 58px; border-radius: 50%;
  display: grid; place-items: center; margin-bottom: .8rem;
  background: var(--grad-red); color: #fff; box-shadow: 0 8px 20px rgba(192,19,25,.4);
}
.step h3 { font-size: 1.4rem; margin-bottom: .3rem; }
.step p { color: var(--muted); font-size: .95rem; }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin-inline: auto; }
.faq details {
  background: var(--card); border: 1px solid var(--line); border-radius: 12px;
  padding: .3rem 1.2rem; margin-bottom: .8rem;
}
.faq details[open] { border-color: var(--line-2); }
.faq summary {
  cursor: pointer; list-style: none; padding: .9rem 0;
  font-family: var(--font-head); font-size: 1.4rem; color: #fff;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--gold); font-size: 1.8rem; line-height: 1; }
.faq details[open] summary::after { content: "\2212"; }
.faq p { color: var(--muted); padding-bottom: 1rem; margin: 0; }

/* ---------- Prose (content pages) ---------- */
.prose { max-width: 820px; margin-inline: auto; }
.prose h2 { margin: 2rem 0 .8rem; }
.prose h3 { margin: 1.6rem 0 .5rem; color: var(--gold-2); }
.prose p, .prose li { color: #ddd0c4; }
.prose ul, .prose ol { margin: 0 0 1.2rem 1.2rem; }
.prose li { margin-bottom: .5rem; }
.prose a { text-decoration: underline; }
.page-hero { padding: 3rem 0 1rem; text-align: center; }
.page-hero p { color: var(--muted); max-width: 60ch; margin-inline: auto; }

/* ---------- Auth ---------- */
.auth-shell { display: grid; grid-template-columns: 1fr 1fr; min-height: calc(100vh - 74px); }
.auth-visual {
  background:
    radial-gradient(600px 400px at 50% 20%, rgba(192,19,25,.5), transparent 60%),
    linear-gradient(160deg, var(--red-dark), #150a09);
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  padding: 2.5rem; text-align: center;
}
.auth-visual img { width: min(320px, 70%); filter: drop-shadow(0 20px 34px rgba(0,0,0,.6)); margin-bottom: 1.4rem; }
.auth-visual h2 { margin-bottom: .6rem; }
.auth-visual p { color: #f0d9c9; max-width: 40ch; }
.auth-form-side { display: grid; place-items: center; padding: 2.5rem 1.5rem; }
.auth-card { width: min(440px, 100%); }
.auth-card h1 { font-size: 3rem; margin-bottom: .3rem; }
.auth-card .sub { color: var(--muted); margin-bottom: 1.6rem; }
.form-note { font-size: .82rem; color: var(--muted); margin-top: .3rem; }
.checkbox-row { display: flex; align-items: flex-start; gap: .5rem; font-size: .9rem; color: var(--muted); margin: .5rem 0 1rem; }
.checkbox-row input { margin-top: .35rem; }
.divider { text-align: center; color: var(--muted); margin: 1.2rem 0; position: relative; font-size: .85rem; }
.divider::before, .divider::after { content:""; position:absolute; top:50%; width:38%; height:1px; background: var(--line); }
.divider::before { left: 0; } .divider::after { right: 0; }
.switch-line { text-align: center; margin-top: 1.2rem; color: var(--muted); }
@media (max-width: 820px) { .auth-shell { grid-template-columns: 1fr; } .auth-visual { display: none; } }

/* alerts */
.alert { padding: .8rem 1rem; border-radius: 10px; font-size: .92rem; margin-bottom: 1rem; }
.alert-warn { background: rgba(255,176,31,.1); border: 1px solid var(--line-2); color: var(--gold-2); }

/* responsible gaming banner */
.rg-banner {
  background: linear-gradient(90deg, rgba(192,19,25,.16), rgba(255,176,31,.08));
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.4rem 1.6rem; display: flex; gap: 1rem; align-items: center; flex-wrap: wrap;
}
.rg-banner .big18 {
  font-family: var(--font-head); font-size: 2.2rem; color: #fff;
  background: var(--grad-red); width: 60px; height: 60px; border-radius: 50%;
  display: grid; place-items: center; flex-shrink: 0;
}

/* ---------- CTA band ---------- */
.cta-band {
  background:
    radial-gradient(700px 300px at 80% 0%, rgba(255,176,31,.18), transparent 60%),
    var(--grad-red);
  border-radius: 22px; padding: 3rem 2rem; text-align: center; margin: 1rem 0;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: #ffe6d8; max-width: 56ch; margin: .6rem auto 1.4rem; }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--line); margin-top: 3rem; padding: 2.6rem 0 1.4rem; background: var(--bg-2); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2rem; }
.footer-grid .brand b { font-size: 1.5rem; }
.footer-about { color: var(--muted); font-size: .94rem; max-width: 42ch; margin-top: .8rem; }
.footer-col h4 { font-family: var(--font-head); color: var(--gold); font-size: 1.4rem; letter-spacing: 1px; margin-bottom: .7rem; }
.footer-col a { display: block; color: var(--muted); font-size: .95rem; padding: .22rem 0; }
.footer-col a:hover { color: var(--gold-2); }
.footer-bottom {
  border-top: 1px solid var(--line); margin-top: 2rem; padding-top: 1.4rem;
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  color: var(--muted); font-size: .86rem;
}
.age-chip { border: 1px solid var(--line-2); border-radius: 999px; padding: .15rem .6rem; color: var(--gold-2); font-weight: 700; }
@media (max-width: 720px) { .footer-grid { grid-template-columns: 1fr; } }

/* utility */
.center { text-align: center; }
.mt-1 { margin-top: 1rem; } .mt-2 { margin-top: 2rem; }
.pill { display:inline-block; font-family: var(--font-head); letter-spacing:1px; font-size:.95rem; padding:.2rem .8rem; border-radius:999px; background:rgba(255,176,31,.12); border:1px solid var(--line-2); color:var(--gold-2); }
.disclaimer-mini { color: var(--muted); font-size: .82rem; text-align: center; margin-top: 1.4rem; }
