/* Base */
* { box-sizing: border-box; }
html, body { margin: 0; }
html { scroll-behavior: smooth; }
:root {
  --bg1: #1a0033;
  --bg2: #2c003d;
  --bg3: #33004d;
  --text: #ffffff;
  --gold: #ffd700;
  --green: #00ff00;
  --panel: rgba(255,255,255,0.07);
  --border: rgba(255,215,0,0.35);
}
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}
body {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: linear-gradient(135deg, var(--bg1), var(--bg2), var(--bg3));
  line-height: 1.6;
}
.wrap { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.center { text-align: center; }
.skip-link { position: absolute; left: -999px; top: auto; width: 1px; height: 1px; overflow: hidden; }
.skip-link:focus { left: 16px; top: 8px; width: auto; height: auto; background: var(--gold); color: #1a0033; padding: 8px 12px; border-radius: 10px; }

/* Nav */
.site-nav { position: sticky; top: 0; z-index: 20; background: rgba(0,0,0,0.6); backdrop-filter: blur(8px); }
.site-nav .wrap { display: flex; align-items: center; justify-content: space-between; min-height: 64px; }
.brand { display: inline-flex; gap: 10px; align-items: center; color: var(--text); text-decoration: none; font-weight: 800; letter-spacing: 0.5px; }
.menu-toggle { display: none; border: 1px solid var(--border); background: transparent; color: var(--text); padding: 8px 10px; border-radius: 8px; }
.nav-list { list-style: none; display: flex; gap: 18px; }
.nav-list a { color: var(--text); text-decoration: none; font-weight: 600; }
.nav-list a:hover { color: var(--green); }
@media (max-width: 840px) {
  .menu-toggle { display: inline-block; }
  .nav-list { position: absolute; inset: 64px 0 auto 0; display: none; flex-direction: column; padding: 16px 20px; background: rgba(0,0,0,0.85); border-bottom: 1px solid var(--border); }
  .nav-list.open { display: flex; }
}

/* Hero */
.hero { position: relative; min-height: 60vh; display: grid; place-items: center; text-align: center; }
.hero .overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.55); }
.hero-wrap { position: relative; z-index: 1; padding: 40px 0; }
h1 { font-size: clamp(2.2rem, 6vw, 4rem); text-shadow: 2px 2px 10px var(--gold); margin: 0 0 12px; }
.tagline { font-size: 1.2rem; color: var(--green); margin-bottom: 24px; }
.cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 18px; border-radius: 999px; border: 1px solid var(--border); font-weight: 700; cursor: pointer; }
.buy-btn, .flip-btn, .connect-btn {
  background: linear-gradient(45deg, var(--gold), #800080);
}
.btn:hover { filter: brightness(1.1); }
.to-top { color: var(--text); text-decoration: none; opacity: 0.85; }
.to-top:hover { opacity: 1; text-decoration: underline; text-underline-offset: 4px; }

/* Sections */
.section { padding: 64px 0; }
.section.alt { background: rgba(0,0,0,0.2); }
h2 { font-size: 2rem; text-align: center; margin: 0 0 22px; color: var(--gold); text-transform: uppercase; }
.lead { text-align: center; font-size: 1.1rem; max-width: 800px; margin: 0 auto 28px; }
.logo-figure { display: grid; place-items: center; }
.logo-img { border-radius: 50%; border: 3px solid var(--gold); max-width: 320px; width: 100%; height: auto; }

/* Cards & grids */
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 22px; }
.card { background: var(--panel); border: 1px solid var(--border); border-radius: 12px; padding: 18px; text-align: center; }
@media (max-width: 900px) { .grid-4 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .grid-4 { grid-template-columns: 1fr; } }

/* Steps */
.steps { max-width: 700px; margin: 0 auto 16px; padding-left: 1.2em; }

/* Price / game */
.price-ticker { text-align: center; font-size: 1.1rem; color: var(--green); margin-top: 12px; min-height: 1.4em; }
.flip-result { text-align: center; font-size: 1.1rem; color: var(--gold); min-height: 1.4em; }

/* Footer */
.site-footer { border-top: 1px solid var(--border); padding: 22px 0; }
.disclaimer { font-size: 0.85rem; opacity: 0.8; margin: 6px 0 0; }

/* Hero image replacement class (use your own) */
.hero { background: url('./assets/hero.jpg') center/cover no-repeat; }


/* Twitter timeline embed */
.tweet-embed { max-width: 700px; margin: 18px auto 0; }
@media (max-width: 760px) {
  .tweet-embed { max-width: 100%; padding: 0 8px; }
}
