:root {
  --bg: #0f0b05;
  --bg-alt: #17120b;
  --text: #f7efe6;
  --muted: #ccbfb2;
  --accent: #ffb650; /* honey/orange */
  --accent-2: #f07f2e; /* deeper orange */
  --ink: #2b1e12; /* dark brown */
  --card: #1e170f;
  --success: #48c78e;
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: radial-gradient(1200px 600px at 80% -10%, #2e1f11 0%, var(--bg) 60%),
              radial-gradient(1000px 500px at -10% 10%, #22170d 0%, var(--bg) 60%),
              var(--bg);
  line-height: 1.6;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

/* Header / Nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(15, 11, 5, 0.7);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
.brand-logo { width: 38px; height: 38px; border-radius: 10px; box-shadow: 0 6px 18px rgba(0,0,0,.35); }
.brand-name { font-family: 'Baloo 2', cursive; font-weight: 700; letter-spacing: .2px; color: var(--text); font-size: 1.2rem; }

.nav-toggle { display: none; font-size: 1.25rem; background: transparent; color: var(--text); border: none; cursor: pointer; }
.nav-links { display: flex; align-items: center; gap: 18px; }
.nav-links a { color: var(--text); text-decoration: none; opacity: .9; }
.nav-links a:hover { opacity: 1; }
.nav-links a.is-active,
.nav-links a[aria-current="page"] { opacity: 1; color: #ffd296; text-shadow: 0 0 18px rgba(255, 178, 96, .25); }

/* Buttons */
.btn { display:inline-block; padding: 10px 16px; border-radius: 12px; text-decoration: none; font-weight: 700; box-shadow: 0 8px 20px rgba(0,0,0,.2); transition: transform .12s ease, box-shadow .2s ease, background .2s ease; }
.btn:hover { transform: translateY(-1px); box-shadow: 0 12px 26px rgba(0,0,0,.28); }
.btn:active { transform: translateY(0); }
.btn-lg { padding: 14px 20px; font-size: 1.05rem; }
.btn-buy { background: linear-gradient(180deg, var(--accent) 0%, var(--accent-2) 100%); color: #2a1603; }
.btn-secondary { background: #22180f; color: var(--text); border: 1px solid rgba(255,255,255,.08); }
.btn-outline { background: transparent; border: 2px solid var(--accent); color: var(--text); }
.btn.is-disabled, .btn[aria-disabled="true"] { opacity: .6; cursor: not-allowed; pointer-events: none; box-shadow: none; transform: none; }
.btn:disabled { opacity: .6; cursor: not-allowed; box-shadow: none; transform: none; }

.accent { color: var(--accent); }
.muted { color: var(--muted); }

/* Hero */
.hero { position: relative; padding: 54px 0 24px; overflow:hidden; }
.hero-inner { display:grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items:center; }
.hero-copy h1 { font-family: 'Baloo 2', cursive; font-size: clamp(2rem, 4vw, 3rem); line-height: 1.1; margin: 0 0 10px; }
.hero-copy p { margin: 0 0 18px; color: var(--muted); }
.hero-cta { display: flex; gap: 12px; margin: 16px 0 12px; }
.hero-badges { display:flex; gap: 8px; margin-top: 4px; }
.badge { background: #241a10; border: 1px solid rgba(255,255,255,.08); padding: 6px 10px; border-radius: 999px; font-size: .85rem; color: var(--muted); }
.badge-warm { background: #2a1d10; color: #ffd9a6; }
.badge-dark { background: #1b140c; color: #e7dbc9; }

.hero-art { display:flex; justify-content:center; align-items:center; }
.hero-logo { width: min(420px, 80%); border-radius: 28px; filter: drop-shadow(0 20px 50px rgba(0,0,0,.45)); }
.floating { animation: float 5.5s ease-in-out infinite; }
@keyframes float { 0%,100%{ transform: translateY(0) } 50%{ transform: translateY(-10px) } }

.shape-blur { position:absolute; pointer-events:none; filter: blur(80px); opacity:.35; }
.shape-1 { width: 300px; height: 300px; background: #ffb65033; top: -60px; right: -40px; border-radius: 60px; }
.shape-2 { width: 240px; height: 240px; background: #f07f2e33; bottom: -60px; left: -40px; border-radius: 50%; }

/* Sections */
.section { padding: 64px 0; }
.section h2 { font-family: 'Baloo 2', cursive; font-size: clamp(1.6rem, 3vw, 2.2rem); margin: 0 0 18px; }
.section .container { opacity: 0; transform: translateY(10px); transition: opacity .6s ease, transform .6s ease; }
.section .container.reveal { opacity: 1; transform: none; }

/* Generic cards & layout (used by Lottery page) */
.card { background: var(--card); border: 1px solid rgba(255,255,255,.06); border-radius: 16px; padding: 16px; box-shadow: 0 10px 24px rgba(0,0,0,.18); }
.grid-2 { display:grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.row { display:flex; align-items:center; gap: 12px; flex-wrap: wrap; }
.input { background: #20180f; color: var(--text); border: 1px solid rgba(255,255,255,.08); border-radius: 12px; padding: 10px 12px; min-width: 140px; }
.input:focus { outline: none; border-color: #ffd296; box-shadow: 0 0 0 4px rgba(255, 206, 138, .12); }

/* Key-value list */
.key-values { list-style: none; padding: 0; margin: 8px 0 0; display: grid; gap: 10px; }
.key-values li { display:flex; align-items:center; justify-content: space-between; background: #1c150e; border: 1px solid rgba(255,255,255,.06); border-radius: 12px; padding: 10px 12px; }
.key-values .key { color: var(--muted); }
.key-values .value { font-weight: 700; color: #ffe1b6; }

/* Tickets grid */
.tickets-grid { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 10px; }
.ticket-pill { background: #24190f; border: 1px solid rgba(255,255,255,.08); color: #ffe7c5; padding: 8px 12px; border-radius: 999px; font-weight: 700; letter-spacing: 1px; box-shadow: 0 6px 16px rgba(0,0,0,.18); transition: transform .12s ease, box-shadow .2s ease; }
.ticket-pill:hover { transform: translateY(-1px); box-shadow: 0 10px 22px rgba(0,0,0,.24); }

/* Modal */
.modal { position: fixed; inset: 0; display: grid; place-items: center; z-index: 100; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(12, 9, 6, .7); backdrop-filter: blur(4px); }
.modal-panel { position: relative; background: #1f170f; border: 1px solid rgba(255,255,255,.08); width: min(520px, 90%); border-radius: 16px; padding: 18px; box-shadow: 0 24px 60px rgba(0,0,0,.45); z-index: 1; }
.modal-close { position: absolute; top: 10px; right: 10px; width: 32px; height: 32px; border-radius: 8px; border: 1px solid rgba(255,255,255,.1); background: #261a10; color: var(--text); cursor: pointer; }
.qr { display: grid; place-items: center; min-height: 220px; background: #1b140d; border: 1px dashed rgba(255,255,255,.12); border-radius: 12px; margin: 12px 0; }

/* How to Buy */
.how-to-buy .steps { display:grid; gap: 16px; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); margin: 20px 0 22px; list-style: none; padding: 0; }
.how-to-buy .steps li { background: var(--card); border: 1px solid rgba(255,255,255,.06); padding: 16px; border-radius: 16px; }
.how-to-buy h3 { margin: 0 0 6px; font-size: 1.05rem; }
.how-to-buy p { margin: 0; color: var(--muted); }
.how-to-buy a { color: #ffd296; }
.buy-actions { display:flex; gap: 12px; flex-wrap: wrap; }

/* Roadmap */
.roadmap .timeline { position: relative; display:grid; gap: 18px; }
.milestone { padding: 16px 16px 16px 44px; background: var(--card); border: 1px solid rgba(255,255,255,.06); border-radius: 16px; position: relative; }
.milestone .dot { position:absolute; left: 16px; top: 20px; width: 12px; height: 12px; border-radius: 50%; background: #6c6c6c; box-shadow: 0 0 0 3px rgba(255,255,255,.06); }
.milestone.done .dot { background: var(--success); }
.milestone.active .dot { background: var(--accent); }
.milestone h3 { margin: 0 0 6px; font-size: 1.1rem; }
.milestone p { margin: 0; color: var(--muted); }

/* Partners */
.partners .partners-grid { display:grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 18px; align-items:center; }
.partner { background: #1f180f; border-radius: 16px; border: 1px solid rgba(255,255,255,.06); display:flex; align-items:center; justify-content:center; padding: 16px; height: 100px; transition: transform .18s ease, box-shadow .2s ease, filter .2s ease; filter: grayscale(.2) saturate(.9); }
.partner:hover { transform: translateY(-3px); filter: grayscale(0) saturate(1.2); box-shadow: 0 16px 30px rgba(0,0,0,.25); }
.partner img { max-height: 56px; max-width: 100%; object-fit: contain; }

/* Footer */
.site-footer { border-top: 1px solid rgba(255,255,255,.08); background: var(--bg-alt); }
.footer-inner { display:flex; align-items:center; justify-content:space-between; padding: 18px 0; gap: 12px; flex-wrap: wrap; }
.socials { display:flex; gap: 10px; }
.social { display:inline-flex; align-items:center; justify-content:center; width: 38px; height: 38px; border-radius: 10px; background: #241a10; color: var(--text); text-decoration:none; border: 1px solid rgba(255,255,255,.06); }
.social svg { width: 20px; height: 20px; fill: currentColor; }
.social:hover { background: #2a1d10; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,1px,1px); white-space: nowrap; border: 0; }
.copyright { margin: 0; color: var(--muted); font-size: .95rem; }

/* Responsive */
@media (max-width: 880px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-cta { justify-content: center; }
  .hero-badges { justify-content: center; }
}

@media (max-width: 720px) {
  .nav-toggle { display: inline-block; }
  .nav-links { display:none; position:absolute; right: 4%; top: 62px; background: #1a140d; padding: 12px; border-radius: 12px; border: 1px solid rgba(255,255,255,.08); flex-direction: column; gap: 10px; min-width: 200px; }
  .nav-links.open { display:flex; }
  .grid-2 { grid-template-columns: 1fr; }
}


