:root {
  --bg: #07040f;
  --bg-2: #12081f;
  --card: rgba(18, 10, 32, 0.78);
  --gold: #ffd24a;
  --gold-2: #f5b400;
  --purple: #9b4dff;
  --cyan: #3df0ff;
  --text: #f4f0ff;
  --muted: #b7a8d4;
  --danger: #ff4d6d;
  --ok: #2ee59d;
  --line: rgba(255, 210, 74, 0.22);
  --radius: 14px;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { min-height: 100%; }
body {
  font-family: "Rajdhani", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(900px 500px at 10% 10%, rgba(155, 77, 255, 0.28), transparent 55%),
    radial-gradient(800px 500px at 90% 20%, rgba(61, 240, 255, 0.12), transparent 50%),
    radial-gradient(700px 400px at 50% 100%, rgba(245, 180, 0, 0.14), transparent 50%),
    linear-gradient(180deg, #05030b 0%, #12081f 55%, #07040f 100%);
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; color: inherit; }

.wrap { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
.top-strip {
  background: #080510;
  border-bottom: 1px solid rgba(46, 229, 157, 0.18);
  height: 26px;
  display: flex;
  align-items: center;
}
.top-strip .wrap { display: flex; justify-content: center; }
.live-now {
  color: var(--ok);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  white-space: nowrap;
  line-height: 1;
}
.live-now::before {
  content: "";
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--ok);
  box-shadow: 0 0 6px var(--ok);
  animation: livepulse 1.2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes livepulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.nav {
  position: sticky; top: 0; z-index: 40;
  backdrop-filter: blur(16px);
  background: rgba(7, 4, 15, 0.72);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 12px; min-height: 58px; }
.brand { display: flex; align-items: center; gap: 8px; font-weight: 800; letter-spacing: 1px; font-size: 14px; white-space: nowrap; }
.brand span { color: var(--gold); }
.logo-mark {
  width: 32px; height: 32px; border-radius: 8px;
  background: linear-gradient(135deg, var(--gold), #fff3b0 45%, var(--gold-2));
  color: #1a1200; display: grid; place-items: center; font-weight: 900; font-size: 13px;
}
.nav-main { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.nav-chip {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 8px 12px; border-radius: 10px; font-weight: 800; letter-spacing: 0.6px;
  font-size: 13px; color: var(--gold); border: 1px solid var(--gold); background: transparent;
  white-space: nowrap;
}
.nav-chip.lg { padding: 9px 16px; font-size: 14px; }
.nav-chip.on {
  background: linear-gradient(180deg, #ffe57a, var(--gold) 40%, var(--gold-2));
  color: #1a1200; border-color: var(--gold);
}
.nav-more { display: flex; align-items: center; gap: 14px; margin-left: auto; }
.nav-links { display: flex; gap: 14px; flex-wrap: nowrap; font-weight: 700; letter-spacing: 0.6px; font-size: 13px; }
.nav-links a { color: var(--muted); }
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-cta { display: flex; gap: 8px; align-items: center; flex-shrink: 0; }
.nav-cta .btn { padding: 8px 12px; font-size: 12px; }
@media (min-width: 981px) {
  .nav-chip {
    border: 0; padding: 0; background: none; color: var(--muted); font-size: 13px; border-radius: 0;
  }
  .nav-chip.lg { padding: 0; font-size: 13px; }
  .nav-chip.on { background: none; color: var(--gold); box-shadow: none; }
}
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border: 0; cursor: pointer; border-radius: 10px; padding: 11px 18px;
  font-weight: 800; letter-spacing: 0.8px; transition: 0.2s transform, 0.2s box-shadow;
}
.btn:hover { transform: translateY(-1px); }
.btn-gold {
  background: linear-gradient(180deg, #ffe57a, var(--gold) 40%, var(--gold-2));
  color: #1a1200; box-shadow: 0 8px 24px rgba(245, 180, 0, 0.35);
}
.btn-ghost { background: transparent; border: 1px solid var(--gold); color: var(--gold); }
.btn-wide { width: 100%; padding: 14px 18px; font-size: 18px; }
.menu-btn { display: none; background: none; border: 1px solid var(--line); color: var(--gold); padding: 8px 12px; border-radius: 8px; }

.hero { padding: 36px 0 20px; text-align: center; position: relative; }
.hero-link { text-decoration: none; display: inline-block; color: inherit; }
.kicker { color: var(--gold); font-weight: 800; letter-spacing: 3px; font-size: 13px; }
.title {
  font-family: "Russo One", sans-serif;
  font-size: clamp(26px, 5vw, 52px);
  line-height: 1.08;
  margin: 10px 0 12px;
  background: linear-gradient(180deg, #fff7d1, var(--gold) 45%, #b88716);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  text-shadow: 0 10px 30px rgba(0,0,0,0.4);
}
.ribbon {
  display: inline-block; margin: 8px 0 22px; padding: 8px 18px;
  background: linear-gradient(90deg, #ffe57a, var(--gold));
  color: #160f00; font-weight: 900; letter-spacing: 1.2px; border-radius: 6px;
}
.countdown-label { font-weight: 800; letter-spacing: 2px; margin-bottom: 10px; color: #fff; }
.timer { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; }
.tbox {
  min-width: 78px; padding: 12px 10px; border-radius: 10px;
  border: 1px solid var(--gold);
  background: rgba(0,0,0,0.45);
  box-shadow: 0 0 18px rgba(255, 210, 74, 0.18);
}
.tbox b { display: block; font-size: 28px; }
.tbox span { color: var(--gold); font-size: 11px; letter-spacing: 1px; }

.prize { margin: 28px auto; max-width: 640px; }
.prize h3 { letter-spacing: 2px; }
.prize .amount { font-size: clamp(48px, 9vw, 84px); color: var(--gold); font-weight: 900; line-height: 1; }
.prize .sub {
  display: inline-block; margin-top: 6px; padding: 6px 16px; border-radius: 999px;
  background: linear-gradient(90deg, #5b21b6, #7c3aed);
}

.info-bar, .trust-bar, .card, .form-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow);
}
.info-bar, .trust-bar {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; padding: 18px; margin: 22px 0;
}
.info-item, .trust-item { text-align: center; }
.info-item small, .trust-item p { color: var(--muted); }
.info-item b { display: block; margin-top: 4px; }

.grid { display: grid; gap: 18px; }
.grid-2 { grid-template-columns: 1.1fr 0.9fr; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.card { padding: 18px; }
.card h3 { margin-bottom: 8px; }
.muted { color: var(--muted); }
.tag {
  display: inline-block; padding: 4px 10px; border-radius: 999px; font-size: 12px; font-weight: 800;
  background: rgba(155,77,255,0.2); color: #e9d5ff; margin-bottom: 8px;
}
.tag.live { background: rgba(46,229,157,0.16); color: var(--ok); }
.tag.soon { background: rgba(255,210,74,0.16); color: var(--gold); }

.form-card { padding: 22px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: 13px; color: var(--muted); font-weight: 700; }
.field input, .field select, .field textarea {
  background: #0d0818; border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px; padding: 12px 12px; outline: none;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold); }
.full { grid-column: 1 / -1; }
.check { display: flex; gap: 8px; align-items: center; font-size: 14px; color: var(--muted); }
.msg { margin-top: 10px; font-weight: 700; min-height: 20px; }
.ok { color: var(--ok); }
.err { color: var(--danger); }

.table { width: 100%; border-collapse: collapse; }
.table th, .table td { text-align: left; padding: 12px 10px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.table th { color: var(--gold); font-size: 13px; letter-spacing: 1px; }
.badge { padding: 4px 8px; border-radius: 999px; font-size: 12px; font-weight: 800; }
.paid { background: rgba(46,229,157,0.16); color: var(--ok); }
.pending { background: rgba(255,210,74,0.16); color: var(--gold); }

.footer { padding: 28px 0 40px; color: var(--muted); text-align: center; }
.page { padding: 28px 0 50px; }
.page h1 { font-family: "Russo One", sans-serif; margin-bottom: 8px; }
.layout { display: grid; grid-template-columns: 320px 1fr 260px; gap: 18px; align-items: start; }
.side-art {
  min-height: 420px; border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(155,77,255,0.1), transparent),
    radial-gradient(circle at 50% 30%, rgba(155,77,255,0.45), transparent 55%),
    #10081c;
  border: 1px solid rgba(155,77,255,0.25);
  position: relative; overflow: hidden;
}
.side-art::after {
  content: "BOOYAH";
  position: absolute; bottom: 18px; left: 0; right: 0; text-align: center;
  font-family: "Russo One", sans-serif; letter-spacing: 3px; color: rgba(255,255,255,0.7);
}
.announce { border-left: 3px solid var(--gold); padding-left: 12px; margin: 10px 0; }

.prize-row td, .prize-row th { font-size: 15px; }
.tabs { display: flex; flex-wrap: wrap; gap: 8px; margin: 16px 0 20px; }
.tab {
  background: #0d0818; border: 1px solid var(--line); color: var(--muted);
  border-radius: 10px; padding: 10px 16px; font-weight: 800; cursor: pointer;
}
.tab.on { background: linear-gradient(180deg, #ffe57a, var(--gold)); color: #1a1200; border-color: var(--gold); }
.panel { display: none; }
.panel.on { display: block; }
.ava {
  width: 42px; height: 42px; border-radius: 50%; object-fit: cover;
  border: 2px solid var(--gold); vertical-align: middle;
}
.nav-ava {
  width: 26px; height: 26px; border-radius: 50%; object-fit: cover;
  border: 1px solid var(--gold); vertical-align: middle;
}
.ava.lg { width: 86px; height: 86px; }
.board-row { display: flex; align-items: center; gap: 14px; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.board-row b { color: var(--gold); }

@media (max-width: 980px) {
  .menu-btn { display: block; }
  .nav-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 8px 10px;
    padding: 8px 0 10px;
  }
  .brand { min-width: 0; overflow: hidden; }
  .nav-main {
    grid-column: 1 / -1;
    width: 100%;
    justify-content: space-between;
    gap: 8px;
  }
  .nav-chip { flex: 1; padding: 11px 8px; font-size: 14px; }
  .nav-chip.lg { flex: 1.25; padding: 12px 10px; font-size: 16px; }
  .nav-more {
    display: none;
    grid-column: 1 / -1;
    margin-left: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 8px 0 4px;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .nav-more.open { display: flex; }
  .nav-links { flex-direction: column; gap: 0; width: 100%; }
  .nav-links a { padding: 12px 4px; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .nav-cta { width: 100%; flex-wrap: wrap; }
  .nav-cta .btn { flex: 1; min-width: 46%; justify-content: center; padding: 11px 12px; font-size: 14px; }
  .layout, .grid-2, .grid-3, .form-grid, .info-bar, .trust-bar { grid-template-columns: 1fr; }
  .side-art { min-height: 220px; }
}
