/* ==========================================================================
   Jeeto88 — jeeto88.live
   Shared stylesheet | Theme: gold on black (matches brand logo)
   Fonts: Oswald (headings) + Poppins (body)
   ========================================================================== */

:root {
  --black:        #0b0b0f;
  --black-2:      #121218;
  --panel:        #17171f;
  --panel-2:      #1e1e28;
  --line:         #2a2a36;
  --gold:         #f5c518;
  --gold-deep:    #d4a017;
  --gold-soft:    #ffde6b;
  --crimson:      #8b1e3f;
  --green:        #1faa59;
  --text:         #f3f3f5;
  --muted:        #a3a3b0;
  --muted-2:      #7d7d8a;
  --radius:       14px;
  --radius-sm:    9px;
  --shadow:       0 18px 45px rgba(0,0,0,.45);
  --shadow-gold:  0 10px 30px rgba(245,197,24,.22);
  --wrap:         1180px;
  --grad-gold:    linear-gradient(135deg, #ffde6b 0%, #f5c518 45%, #c9930a 100%);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  background: var(--black);
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; height: auto; }
a { color: var(--gold); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--gold-soft); }

h1, h2, h3, h4 {
  font-family: "Oswald", "Poppins", sans-serif;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: .3px;
  color: #fff;
}

h1 { font-size: clamp(2rem, 5vw, 3.35rem); text-transform: uppercase; }
h2 { font-size: clamp(1.6rem, 3.6vw, 2.4rem); text-transform: uppercase; }
h3 { font-size: clamp(1.2rem, 2.4vw, 1.5rem); }

p { margin-bottom: 1rem; color: var(--text); }
section p { color: #d9d9e0; }

.wrap { width: min(var(--wrap), 92%); margin-inline: auto; }
.gold { color: var(--gold); }
.center { text-align: center; }

/* ---- Top bar ---- */
.topbar {
  background: linear-gradient(90deg, var(--crimson), #5c1329);
  color: #ffe9c7;
  font-size: .82rem;
  text-align: center;
  padding: 7px 12px;
  letter-spacing: .3px;
}
.topbar strong { color: var(--gold-soft); }

/* ---- Navigation ---- */
.nav {
  position: sticky; top: 0; z-index: 60;
  background: rgba(11,11,15,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px; padding: 12px 0;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand img { height: 40px; width: auto; }
.brand span {
  font-family: "Oswald", sans-serif; font-weight: 700; font-size: 1.25rem;
  color: #fff; text-transform: uppercase; letter-spacing: 1px;
}
.nav-links { display: flex; align-items: center; gap: 6px; list-style: none; }
.nav-links a {
  color: var(--text); font-weight: 500; font-size: .95rem;
  padding: 9px 15px; border-radius: 8px; display: block;
  transition: background .2s, color .2s;
}
.nav-links a:hover, .nav-links a.active { background: var(--panel-2); color: var(--gold); }
.nav-links a.cta {
  background: var(--grad-gold); color: #1a1204; font-weight: 700;
  box-shadow: var(--shadow-gold);
}
.nav-links a.cta:hover { color: #1a1204; filter: brightness(1.06); }

.nav-toggle {
  display: none; background: none; border: 1px solid var(--line);
  color: var(--gold); width: 44px; height: 42px; border-radius: 9px;
  font-size: 1.4rem; cursor: pointer;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: "Oswald", sans-serif; font-weight: 600; letter-spacing: .6px;
  text-transform: uppercase; font-size: 1rem;
  padding: 13px 30px; border-radius: 40px; cursor: pointer; border: none;
  transition: transform .15s ease, filter .2s ease, box-shadow .2s ease;
}
.btn-gold { background: var(--grad-gold); color: #1a1204; box-shadow: var(--shadow-gold); }
.btn-gold:hover { transform: translateY(-2px); filter: brightness(1.05); color: #1a1204; }
.btn-ghost { background: transparent; color: var(--gold); border: 2px solid var(--gold); }
.btn-ghost:hover { background: rgba(245,197,24,.12); color: var(--gold-soft); }
.btn-block { width: 100%; justify-content: center; }

/* ---- Hero ---- */
.hero { position: relative; overflow: hidden; padding: 72px 0 64px; }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(900px 420px at 80% 10%, rgba(245,197,24,.16), transparent 60%),
    radial-gradient(700px 500px at 0% 90%, rgba(139,30,63,.30), transparent 60%);
  z-index: 0;
}
.hero-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 46px; align-items: center;
}
.hero .eyebrow {
  display: inline-block; font-family: "Oswald", sans-serif; letter-spacing: 2px;
  text-transform: uppercase; color: var(--gold); font-size: .85rem;
  border: 1px solid var(--gold-deep); border-radius: 30px; padding: 5px 16px; margin-bottom: 18px;
}
.hero h1 { margin-bottom: 16px; }
.hero h1 .line { color: var(--gold); }
.hero p.lead { font-size: 1.12rem; color: #e2e2ea; max-width: 560px; margin-bottom: 26px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-media { position: relative; }
.hero-media img {
  border-radius: 20px; border: 1px solid var(--line);
  box-shadow: var(--shadow); width: 100%; object-fit: cover;
}
.hero-badge {
  position: absolute; bottom: -18px; left: -14px;
  background: var(--panel); border: 1px solid var(--gold-deep);
  border-radius: 14px; padding: 12px 18px; box-shadow: var(--shadow);
  font-family: "Oswald", sans-serif;
}
.hero-badge b { color: var(--gold); font-size: 1.5rem; display: block; }
.hero-badge small { color: var(--muted); text-transform: uppercase; letter-spacing: 1px; font-size: .7rem; }

/* ---- Stats strip ---- */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  margin-top: 46px; position: relative; z-index: 1;
}
.stat {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px 18px; text-align: center;
}
.stat b { font-family: "Oswald", sans-serif; font-size: 1.9rem; color: var(--gold); display: block; }
.stat span { color: var(--muted); font-size: .86rem; }

/* ---- Sections ---- */
.section { padding: 62px 0; }
.section-head { max-width: 720px; margin: 0 auto 40px; text-align: center; }
.section-head .kicker {
  font-family: "Oswald", sans-serif; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); font-size: .85rem; display: block; margin-bottom: 8px;
}
.section-head p { color: var(--muted); }
.alt { background: var(--black-2); border-block: 1px solid var(--line); }

/* ---- Cards grid ---- */
.grid { display: grid; gap: 22px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.card {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 24px; transition: transform .2s ease, border-color .2s ease;
}
.card:hover { transform: translateY(-4px); border-color: var(--gold-deep); }
.card .ico {
  width: 52px; height: 52px; border-radius: 12px; display: grid; place-items: center;
  background: rgba(245,197,24,.12); color: var(--gold); font-size: 1.5rem; margin-bottom: 16px;
}
.card h3 { margin-bottom: 8px; color: #fff; }
.card p { color: var(--muted); font-size: .95rem; margin: 0; }

/* Feature card with image */
.feature { padding: 0; overflow: hidden; }
.feature img { height: 190px; object-fit: cover; width: 100%; }
.feature .body { padding: 22px 24px; }

/* ---- Split content block ---- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
.split img { border-radius: 18px; border: 1px solid var(--line); box-shadow: var(--shadow); }
.split.rev .txt { order: 2; }
.split ul { list-style: none; margin: 16px 0 0; }
.split li { padding-left: 30px; position: relative; margin-bottom: 10px; color: #d9d9e0; }
.split li::before {
  content: "✓"; position: absolute; left: 0; top: 0; color: var(--gold);
  font-weight: 700;
}

/* ---- Tools ---- */
.tool {
  background: linear-gradient(180deg, var(--panel), var(--black-2));
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 24px; height: 100%;
}
.tool h3 { color: var(--gold); margin-bottom: 4px; }
.tool .tool-sub { color: var(--muted); font-size: .88rem; margin-bottom: 18px; }
.field { margin-bottom: 14px; }
.field label { display: block; font-size: .82rem; color: var(--muted); margin-bottom: 6px; letter-spacing: .3px; }
.field input, .field select {
  width: 100%; background: var(--black); border: 1px solid var(--line); color: var(--text);
  padding: 12px 14px; border-radius: var(--radius-sm); font-family: inherit; font-size: .95rem;
}
.field input:focus, .field select:focus { outline: none; border-color: var(--gold); }
.tool-out {
  margin-top: 16px; background: var(--black); border: 1px dashed var(--gold-deep);
  border-radius: var(--radius-sm); padding: 16px; text-align: center;
}
.tool-out .big { font-family: "Oswald", sans-serif; font-size: 2rem; color: var(--gold); display: block; }
.tool-out small { color: var(--muted); }
.spin-face {
  font-family: "Oswald", sans-serif; font-size: 3rem; color: var(--gold);
  text-align: center; letter-spacing: 4px; min-height: 62px;
}

/* ---- Steps ---- */
.steps { counter-reset: step; display: grid; gap: 18px; }
.step {
  display: flex; gap: 18px; align-items: flex-start;
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px 22px;
}
.step .num {
  flex: none; width: 42px; height: 42px; border-radius: 50%;
  background: var(--grad-gold); color: #1a1204; display: grid; place-items: center;
  font-family: "Oswald", sans-serif; font-weight: 700; font-size: 1.2rem;
}
.step h4 { color: #fff; margin-bottom: 4px; }
.step p { color: var(--muted); margin: 0; font-size: .94rem; }

/* ---- FAQ / accordion ---- */
.faq { max-width: 820px; margin-inline: auto; }
.qa { border: 1px solid var(--line); border-radius: var(--radius-sm); margin-bottom: 12px; background: var(--panel); overflow: hidden; }
.qa button {
  width: 100%; text-align: left; background: none; border: none; color: #fff;
  font-family: "Poppins", sans-serif; font-weight: 600; font-size: 1rem;
  padding: 17px 20px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 14px;
}
.qa button .plus { color: var(--gold); font-size: 1.4rem; flex: none; transition: transform .2s; }
.qa.open button .plus { transform: rotate(45deg); }
.qa .ans { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.qa .ans p { padding: 0 20px 18px; color: var(--muted); margin: 0; }

/* ---- Auth forms (login/signup) ---- */
.auth-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
.auth-card {
  background: var(--panel); border: 1px solid var(--line); border-radius: 18px;
  padding: 34px 32px; box-shadow: var(--shadow); max-width: 460px; width: 100%;
}
.auth-card h2 { font-size: 1.7rem; margin-bottom: 6px; }
.auth-card .sub { color: var(--muted); margin-bottom: 22px; font-size: .95rem; }
.auth-note {
  font-size: .82rem; color: var(--muted-2); margin-top: 16px; text-align: center; line-height: 1.5;
}
.auth-side ul { list-style: none; margin-top: 18px; }
.auth-side li { padding-left: 28px; position: relative; margin-bottom: 12px; color: #d9d9e0; }
.auth-side li::before { content: "★"; position: absolute; left: 0; color: var(--gold); }
.divider { display: flex; align-items: center; gap: 12px; color: var(--muted-2); font-size: .8rem; margin: 18px 0; }
.divider::before, .divider::after { content: ""; height: 1px; background: var(--line); flex: 1; }

/* ---- APK download box ---- */
.dl-box {
  background: linear-gradient(160deg, var(--panel), var(--black-2));
  border: 1px solid var(--gold-deep); border-radius: 18px; padding: 30px;
  text-align: center; box-shadow: var(--shadow);
}
.dl-box .ver { display: inline-block; background: var(--panel-2); border: 1px solid var(--line); border-radius: 30px; padding: 4px 14px; font-size: .8rem; color: var(--muted); margin-bottom: 14px; }
.spec-table { width: 100%; border-collapse: collapse; margin-top: 8px; }
.spec-table th, .spec-table td { text-align: left; padding: 12px 14px; border-bottom: 1px solid var(--line); font-size: .92rem; }
.spec-table th { color: var(--muted); font-weight: 500; width: 45%; }
.spec-table td { color: #fff; }

/* ---- Legal / article pages ---- */
.page-hero { padding: 48px 0 30px; border-bottom: 1px solid var(--line); background: var(--black-2); }
.page-hero .crumb { color: var(--muted-2); font-size: .85rem; margin-top: 8px; }
.page-hero .crumb a { color: var(--muted); }
.prose { max-width: 860px; margin-inline: auto; }
.prose h2 { font-size: 1.5rem; margin: 34px 0 12px; }
.prose h3 { font-size: 1.15rem; margin: 24px 0 8px; color: var(--gold); }
.prose p, .prose li { color: #d3d3dc; }
.prose ul, .prose ol { margin: 0 0 16px 22px; }
.prose li { margin-bottom: 8px; }
.prose .updated { color: var(--muted-2); font-size: .85rem; margin-bottom: 22px; }
.callout {
  background: rgba(139,30,63,.16); border: 1px solid var(--crimson); border-radius: var(--radius-sm);
  padding: 16px 18px; margin: 20px 0; color: #f0d6dd; font-size: .95rem;
}

/* ---- Contact ---- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.contact-item { display: flex; gap: 14px; margin-bottom: 20px; }
.contact-item .ico { flex: none; width: 46px; height: 46px; border-radius: 11px; background: rgba(245,197,24,.12); color: var(--gold); display: grid; place-items: center; font-size: 1.2rem; }
.contact-item b { color: #fff; display: block; }
.contact-item span { color: var(--muted); font-size: .92rem; }

/* ---- CTA band ---- */
.cta-band {
  background: var(--grad-gold); color: #1a1204; border-radius: 20px;
  padding: 42px 40px; text-align: center; margin: 10px 0;
}
.cta-band h2 { color: #1a1204; }
.cta-band p { color: #3a2c07; max-width: 620px; margin: 8px auto 22px; }
.cta-band .btn-gold { background: #1a1204; color: var(--gold); }
.cta-band .btn-gold:hover { color: var(--gold-soft); }

/* ---- Footer ---- */
.footer { background: var(--black-2); border-top: 1px solid var(--line); padding: 52px 0 24px; margin-top: 30px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 34px; }
.footer .brand img { height: 42px; }
.footer p { color: var(--muted); font-size: .92rem; }
.footer h4 { color: #fff; font-size: 1rem; margin-bottom: 14px; text-transform: uppercase; letter-spacing: 1px; }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 9px; }
.footer ul a { color: var(--muted); font-size: .92rem; }
.footer ul a:hover { color: var(--gold); }
.age-badge { display: inline-flex; align-items: center; gap: 8px; border: 1px solid var(--crimson); color: #f0c9d3; border-radius: 30px; padding: 5px 14px; font-size: .82rem; margin-top: 14px; }
.age-badge b { background: var(--crimson); color: #fff; border-radius: 20px; padding: 1px 8px; font-size: .78rem; }
.footer-bottom { border-top: 1px solid var(--line); margin-top: 34px; padding-top: 20px; display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; color: var(--muted-2); font-size: .84rem; }
.footer-bottom a { color: var(--muted); }

/* ---- Responsible gaming ribbon ---- */
.rg-ribbon { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 18px 22px; display: flex; gap: 14px; align-items: center; margin-top: 24px; }
.rg-ribbon .ico { flex: none; font-size: 1.6rem; }
.rg-ribbon p { margin: 0; color: var(--muted); font-size: .9rem; }

/* ---- Responsive ---- */
@media (max-width: 940px) {
  .hero-grid, .split, .auth-wrap, .contact-grid { grid-template-columns: 1fr; }
  .split.rev .txt { order: 0; }
  .hero-media { order: -1; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .auth-side { display: none; }
  .auth-card { margin-inline: auto; }
}
@media (max-width: 640px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute; top: 100%; left: 0; right: 0; flex-direction: column;
    align-items: stretch; gap: 4px; background: var(--black-2); border-bottom: 1px solid var(--line);
    padding: 12px 5%; transform: translateY(-8px); opacity: 0; pointer-events: none; transition: .22s;
  }
  .nav-links.show { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .cta-band { padding: 30px 22px; }
}
