/* ==========================================================================
   uglynakedgamer.com — shared stylesheet
   Dark neon gaming / streaming theme. Vanilla CSS, no framework.
   ========================================================================== */

:root {
  --bg:        #0e0e12;
  --bg-2:      #15151c;
  --bg-3:      #1c1c26;
  --surface:   #191922;
  --surface-2: #21212d;
  --line:      #2a2a37;
  --text:      #ececf1;
  --text-dim:  #a0a0b0;
  --text-mute: #6b6b7b;
  --purple:    #9147ff;
  --purple-2:  #b088ff;
  --teal:      #00aff0;
  --teal-2:    #38c6ff;
  --pink:      #ff4d8d;
  --live:      #ff2f4a;
  --gold:      #f5c451;
  --radius:    14px;
  --radius-sm: 9px;
  --shadow:    0 10px 30px rgba(0,0,0,.45);
  --glow-p:    0 0 0 1px rgba(145,71,255,.35), 0 8px 30px rgba(145,71,255,.25);
  --maxw:      1240px;
  --font-head: "Chakra Petch", "Rajdhani", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(145,71,255,.14), transparent 60%),
    radial-gradient(900px 500px at 0% 0%, rgba(0,175,240,.10), transparent 55%),
    var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

body.locked { overflow: hidden; }

a { color: var(--teal-2); text-decoration: none; }
a:hover { color: var(--teal); }

h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 700; line-height: 1.15; letter-spacing: .3px; }
h1 { font-size: clamp(1.8rem, 4vw, 3rem); margin: 0 0 .4em; }
h2 { font-size: clamp(1.3rem, 2.6vw, 2rem); margin: 0 0 .5em; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }
.narrow { max-width: 820px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  font-family: var(--font-head); font-weight: 600; letter-spacing: .4px;
  padding: .68em 1.15em; border-radius: var(--radius-sm); border: 1px solid transparent;
  cursor: pointer; font-size: .95rem; text-transform: uppercase;
  transition: transform .12s ease, box-shadow .2s ease, background .2s ease;
  background: var(--surface-2); color: var(--text);
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-primary { background: linear-gradient(135deg, var(--purple), #7a2fff); color: #fff; box-shadow: var(--glow-p); }
.btn-primary:hover { color:#fff; box-shadow: 0 0 0 1px rgba(145,71,255,.5), 0 12px 34px rgba(145,71,255,.4); }
.btn-teal { background: linear-gradient(135deg, var(--teal), #0090d6); color:#04121a; }
.btn-teal:hover { color:#04121a; }
.btn-ghost { background: transparent; border-color: var(--line); color: var(--text); }
.btn-ghost:hover { border-color: var(--purple); color:#fff; }
.btn-block { width: 100%; }
.btn-sm { padding: .45em .8em; font-size: .82rem; }

/* ---------- Beta bar ---------- */
.betabar {
  background: linear-gradient(90deg, rgba(145,71,255,.22), rgba(0,175,240,.18));
  border-bottom: 1px solid var(--line);
  font-size: .82rem; color: var(--text-dim);
}
.betabar .container { display: flex; align-items: center; justify-content: center; gap: 10px; padding: 7px 20px; flex-wrap: wrap; text-align: center; }
.betabar .pill {
  font-family: var(--font-head); font-weight: 700; letter-spacing: .6px; text-transform: uppercase;
  font-size: .72rem; padding: 3px 9px; border-radius: 999px; color: #fff;
  background: rgba(255,47,74,.18); border: 1px solid rgba(255,47,74,.5);
}
.betabar .pill.granted { background: rgba(51,214,138,.15); border-color: rgba(51,214,138,.55); color: #7ff0b6; }
.betabar a { font-weight: 600; }

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(14,14,18,.86); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; gap: 18px; padding: 12px 20px; max-width: var(--maxw); margin: 0 auto; }
.brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand img { width: 46px; height: 46px; }
.brand .word { font-family: var(--font-head); font-weight: 700; font-size: 1.28rem; letter-spacing: .3px; line-height: 1; }
.brand .word b { color: var(--purple-2); }
.brand .slogan { display:block; font-size: .62rem; letter-spacing: 1.4px; text-transform: uppercase; color: var(--text-mute); font-family: var(--font-head); margin-top: 3px; }

.nav-search { flex: 1; max-width: 460px; position: relative; }
.nav-search input {
  width: 100%; padding: .6em .9em .6em 2.3em; border-radius: 999px;
  background: var(--surface); border: 1px solid var(--line); color: var(--text); font-size: .92rem;
}
.nav-search input:focus { outline: none; border-color: var(--purple); box-shadow: 0 0 0 3px rgba(145,71,255,.18); }
.nav-search::before { content: "🔍"; position: absolute; left: .8em; top: 50%; transform: translateY(-50%); font-size: .85rem; opacity: .7; }

.nav-actions { display: flex; align-items: center; gap: 10px; margin-left: auto; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a { color: var(--text-dim); font-weight: 600; padding: 8px 12px; border-radius: 8px; font-size: .9rem; }
.nav-links a:hover, .nav-links a.active { color: #fff; background: var(--surface-2); }

.hamburger { display: none; background: var(--surface-2); border: 1px solid var(--line); border-radius: 8px; padding: 8px 10px; cursor: pointer; color: var(--text); font-size: 1.1rem; }

/* ---------- Hero ---------- */
.hero { padding: 54px 0 26px; }
.hero .container { display: grid; grid-template-columns: 1.3fr 1fr; gap: 40px; align-items: center; }
.hero .eyebrow { display:inline-block; font-family: var(--font-head); text-transform: uppercase; letter-spacing: 1.5px; font-size: .75rem; color: var(--purple-2); border: 1px solid rgba(145,71,255,.4); padding: 4px 10px; border-radius: 999px; margin-bottom: 14px; }
.hero p.lead { color: var(--text-dim); font-size: 1.08rem; max-width: 46ch; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 22px; }
.hero-art { position: relative; display: grid; place-items: center; }
.hero-art img { width: min(320px, 80%); filter: drop-shadow(0 20px 40px rgba(0,0,0,.5)); }
.hero-art::after { content:""; position:absolute; inset: 6% ; border-radius: 50%; background: radial-gradient(circle, rgba(145,71,255,.28), transparent 65%); z-index: -1; }

/* ---------- Live counter ---------- */
.livestat { display: inline-flex; align-items: center; gap: 10px; background: var(--surface); border: 1px solid var(--line); border-radius: 999px; padding: 8px 16px; font-family: var(--font-head); }
.livestat .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--live); box-shadow: 0 0 0 0 rgba(255,47,74,.6); animation: pulse 1.8s infinite; }
.livestat b { color: #fff; font-variant-numeric: tabular-nums; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(255,47,74,.55);} 70%{box-shadow:0 0 0 10px rgba(255,47,74,0);} 100%{box-shadow:0 0 0 0 rgba(255,47,74,0);} }

/* ---------- Section headings ---------- */
.section { padding: 30px 0; }
.section-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 18px; flex-wrap: wrap; }
.section-head h2 { margin: 0; }
.section-head .muted { color: var(--text-mute); font-size: .9rem; }

/* ---------- Category chips ---------- */
.chips { display: flex; gap: 10px; flex-wrap: wrap; }
.chip {
  font-family: var(--font-head); font-weight: 600; font-size: .82rem; letter-spacing: .3px;
  padding: 7px 14px; border-radius: 999px; cursor: pointer; user-select: none;
  background: var(--surface); border: 1px solid var(--line); color: var(--text-dim);
  transition: all .15s ease;
}
.chip:hover { color: #fff; border-color: var(--purple); }
.chip.active { background: linear-gradient(135deg, var(--purple), #7a2fff); border-color: transparent; color: #fff; }

/* blurred scene images share cover-sizing */
.blur { background-size: cover; background-position: center; background-repeat: no-repeat; }

/* ---------- Featured streamer ---------- */
.featured { display: grid; grid-template-columns: 1.15fr 1fr; gap: 0; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; margin-bottom: 26px; cursor: pointer; transition: border-color .2s ease, box-shadow .2s ease; }
.featured:hover { border-color: var(--purple); box-shadow: var(--shadow); }
.featured-thumb { position: relative; min-height: 300px; }
.featured-thumb .veil { position: absolute; inset: 0; display: grid; place-items: center; background: rgba(6,6,10,.3); }
.featured-info { padding: 26px 28px; display: flex; flex-direction: column; gap: 10px; }
.featured-info .eyebrow { color: var(--gold); border-color: rgba(245,196,81,.4); }
.featured-id { display: flex; align-items: center; gap: 12px; }
.featured-id .avatar { width: 52px; height: 52px; }
.featured-id h3 { margin: 0; font-size: 1.25rem; }
.featured-id .game { color: var(--text-dim); font-size: .88rem; }
.featured-info p { color: var(--text-dim); margin: 4px 0; font-size: .95rem; }
.mini-stats { display: flex; gap: 22px; margin: 4px 0 10px; font-size: .85rem; color: var(--text-mute); }
.mini-stats b { color: #fff; font-family: var(--font-head); }
.featured-info .btn { align-self: flex-start; }

/* redeem invite input */
.code-input { width: 100%; padding: .8em 1em; border-radius: var(--radius-sm); background: var(--bg-2); border: 1px solid var(--line); color: var(--text); font-family: var(--font-head); font-size: 1.2rem; letter-spacing: 3px; text-align: center; text-transform: uppercase; }
.code-input:focus { outline: none; border-color: var(--purple); box-shadow: 0 0 0 3px rgba(145,71,255,.18); }

/* ---------- Stream grid ---------- */
.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; }
.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; cursor: pointer; transition: transform .15s ease, box-shadow .2s ease, border-color .2s ease;
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-4px); border-color: var(--purple); box-shadow: var(--shadow); }
.thumb { position: relative; aspect-ratio: 16/9; overflow: hidden; }
.thumb .blur { position: absolute; inset: -20px; filter: blur(22px) saturate(1.2); transform: scale(1.1); }
.thumb .veil { position: absolute; inset: 0; display: grid; place-items: center; text-align: center; background: rgba(6,6,10,.32); }
.thumb .veil .lock { font-family: var(--font-head); font-weight: 700; font-size: .8rem; color: #fff; text-shadow: 0 2px 8px rgba(0,0,0,.6); padding: 6px 12px; border: 1px solid rgba(255,255,255,.25); border-radius: 999px; background: rgba(0,0,0,.35); }
.badge-live { position: absolute; top: 10px; left: 10px; background: var(--live); color: #fff; font-family: var(--font-head); font-weight: 700; font-size: .7rem; letter-spacing: .6px; padding: 3px 8px; border-radius: 6px; display: flex; align-items: center; gap: 5px; }
.badge-live::before { content:""; width: 6px; height: 6px; border-radius: 50%; background: #fff; animation: pulse 1.6s infinite; }
.badge-viewers { position: absolute; bottom: 10px; right: 10px; background: rgba(0,0,0,.6); color: #fff; font-size: .72rem; padding: 3px 8px; border-radius: 6px; font-variant-numeric: tabular-nums; }
.badge-cat { position: absolute; bottom: 10px; left: 10px; background: rgba(145,71,255,.85); color: #fff; font-size: .68rem; padding: 3px 8px; border-radius: 6px; font-weight: 600; }
.card-body { padding: 12px 14px 14px; display: flex; gap: 11px; }
.avatar { width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0; border: 2px solid var(--purple); }
.card-meta h3 { font-size: .98rem; margin: 0 0 2px; }
.card-meta .game { color: var(--text-dim); font-size: .85rem; }
.card-meta .tags { margin-top: 6px; display: flex; gap: 6px; flex-wrap: wrap; }
.tag { font-size: .68rem; background: var(--surface-2); color: var(--text-mute); padding: 2px 7px; border-radius: 5px; }

.empty-state { text-align: center; padding: 60px 20px; color: var(--text-mute); }
.empty-state .big { font-size: 2.4rem; margin-bottom: 8px; }

/* ---------- Forms / auth ---------- */
.auth-wrap { min-height: calc(100vh - 220px); display: grid; place-items: center; padding: 40px 20px; }
.auth-card { width: 100%; max-width: 420px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 28px; box-shadow: var(--shadow); }
.auth-card.wide { max-width: 560px; }
.auth-card h1 { font-size: 1.7rem; margin-bottom: 4px; }
.auth-card .sub { color: var(--text-dim); margin-bottom: 22px; font-size: .93rem; }
.field { margin-bottom: 15px; }
.field label { display: block; font-size: .82rem; color: var(--text-dim); margin-bottom: 6px; font-weight: 600; }
.field input, .field select, .field textarea {
  width: 100%; padding: .72em .9em; border-radius: var(--radius-sm);
  background: var(--bg-2); border: 1px solid var(--line); color: var(--text); font-size: .95rem; font-family: var(--font-body);
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--purple); box-shadow: 0 0 0 3px rgba(145,71,255,.16); }
.field textarea { min-height: 130px; resize: vertical; }
.form-row { display: flex; gap: 12px; }
.form-row .field { flex: 1; }
.form-aux { display: flex; justify-content: space-between; align-items: center; font-size: .85rem; margin: 4px 0 16px; color: var(--text-dim); flex-wrap: wrap; gap: 8px; }
.checkbox { display: flex; align-items: flex-start; gap: 8px; font-size: .84rem; color: var(--text-dim); }
.checkbox input { width: auto; margin-top: 3px; }
.divider-or { text-align: center; color: var(--text-mute); font-size: .8rem; margin: 18px 0; position: relative; }
.divider-or::before, .divider-or::after { content:""; position: absolute; top: 50%; width: 40%; height: 1px; background: var(--line); }
.divider-or::before { left: 0; } .divider-or::after { right: 0; }
.social-btns { display: flex; flex-direction: column; gap: 10px; }
.auth-foot { text-align: center; margin-top: 18px; font-size: .9rem; color: var(--text-dim); }

.role-toggle { display: inline-flex; background: var(--bg-2); border: 1px solid var(--line); border-radius: 999px; padding: 4px; margin-bottom: 20px; }
.role-toggle a { padding: 7px 16px; border-radius: 999px; font-family: var(--font-head); font-weight: 600; font-size: .85rem; color: var(--text-dim); }
.role-toggle a.active { background: var(--purple); color: #fff; }

/* form error / notice */
.form-msg { display: none; padding: 12px 14px; border-radius: var(--radius-sm); font-size: .88rem; margin-bottom: 16px; border: 1px solid transparent; }
.form-msg.show { display: block; }
.form-msg.error { background: rgba(255,47,74,.12); border-color: rgba(255,47,74,.4); color: #ff9aa8; }
.form-msg.info { background: rgba(0,175,240,.1); border-color: rgba(0,175,240,.35); color: #8fdcff; }

/* ---------- Creator profile ---------- */
.profile-banner { position: relative; height: 240px; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); }
.profile-banner .blur { position: absolute; inset: -30px; filter: blur(30px); transform: scale(1.1); }
.profile-banner .veil { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(6,6,10,.1), rgba(6,6,10,.75)); display: grid; place-items: center; }
.profile-head { display: flex; align-items: flex-end; gap: 20px; margin-top: -50px; padding: 0 10px; position: relative; z-index: 2; }
.profile-head .avatar-lg { width: 108px; height: 108px; border-radius: 50%; border: 4px solid var(--bg); flex-shrink: 0; }
.profile-head .id h1 { margin: 0; }
.profile-head .id .handle { color: var(--text-dim); }
.verified { color: var(--teal); }
.stats-row { display: flex; gap: 26px; margin: 18px 4px; flex-wrap: wrap; }
.stats-row .s b { font-family: var(--font-head); font-size: 1.3rem; color: #fff; display: block; }
.stats-row .s span { font-size: .8rem; color: var(--text-mute); }
.gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 12px; margin-top: 10px; }
.gallery .cell { aspect-ratio: 1; border-radius: var(--radius-sm); overflow: hidden; position: relative; border: 1px solid var(--line); }
.gallery .cell .blur { position: absolute; inset: -12px; filter: blur(16px); transform: scale(1.1); }
.gallery .cell .veil { position: absolute; inset: 0; display: grid; place-items: center; background: rgba(6,6,10,.4); font-size: 1.4rem; }
.gallery .cell .cap { position: absolute; left: 0; right: 0; bottom: 0; padding: 14px 9px 7px; font-size: .7rem; line-height: 1.2; color: #d6d6e4; background: linear-gradient(transparent, rgba(0,0,0,.82)); z-index: 2; }

.tiers { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
.tier { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; text-align: center; }
.tier.feat { border-color: var(--purple); box-shadow: var(--glow-p); position: relative; }
.tier.feat::before { content: "MOST GAINS"; position: absolute; top: -11px; left: 50%; transform: translateX(-50%); background: var(--purple); color: #fff; font-family: var(--font-head); font-size: .64rem; letter-spacing: 1px; padding: 3px 10px; border-radius: 999px; }
.tier h3 { font-size: 1.1rem; margin-bottom: 4px; }
.tier .price { font-family: var(--font-head); font-size: 2rem; color: #fff; margin: 8px 0; }
.tier .price span { font-size: .8rem; color: var(--text-mute); }
.tier ul { list-style: none; padding: 0; margin: 14px 0 18px; text-align: left; font-size: .88rem; color: var(--text-dim); }
.tier li { padding: 5px 0 5px 22px; position: relative; }
.tier li::before { content: "✓"; position: absolute; left: 0; color: var(--teal); }

/* ---------- Generic content pages ---------- */
.page { padding: 40px 0 60px; }
.page h1 { border-bottom: 1px solid var(--line); padding-bottom: 16px; }
.page h2 { margin-top: 34px; color: var(--purple-2); }
.page p, .page li { color: var(--text-dim); }
.page a { text-decoration: underline; }
.prose { max-width: 780px; }
.card-plain { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px 26px; }
.notice-box { background: rgba(245,196,81,.08); border: 1px solid rgba(245,196,81,.35); border-radius: var(--radius-sm); padding: 14px 16px; color: #f0d693; font-size: .9rem; }

.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary { cursor: pointer; padding: 16px 0; font-family: var(--font-head); font-weight: 600; font-size: 1.02rem; list-style: none; display: flex; justify-content: space-between; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "＋"; color: var(--purple-2); }
.faq-item[open] summary::after { content: "－"; }
.faq-item p { padding: 0 0 16px; margin: 0; }

/* ---------- Invite page ---------- */
.invite-card { max-width: 480px; margin: 60px auto; text-align: center; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 34px 30px; box-shadow: var(--shadow); }
.invite-card .seal { font-size: 2.6rem; }
.invite-card .code { font-family: var(--font-head); letter-spacing: 3px; font-size: 1.3rem; color: var(--purple-2); background: var(--bg-2); border: 1px dashed var(--line); border-radius: var(--radius-sm); padding: 10px; margin: 16px 0; }
.invite-card .countdown { color: var(--text-mute); font-size: .85rem; margin-top: 10px; }
.copybox { display: flex; gap: 8px; margin-top: 12px; }
.copybox input { flex: 1; padding: .6em .8em; border-radius: var(--radius-sm); background: var(--bg-2); border: 1px solid var(--line); color: var(--text-dim); font-size: .82rem; }

/* ---------- Hero-ish content for landing (become-creator) ---------- */
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 18px; margin-top: 24px; }
.feature { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; }
.feature .ico { font-size: 1.6rem; }
.feature h3 { margin: 10px 0 6px; font-size: 1.05rem; }
.feature p { color: var(--text-dim); font-size: .9rem; margin: 0; }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--line); background: var(--bg-2); margin-top: 40px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 30px; padding: 44px 0 30px; }
.footer-grid h4 { font-size: .8rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text-mute); margin-bottom: 12px; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 8px; }
.footer-grid a { color: var(--text-dim); font-size: .9rem; }
.footer-grid a:hover { color: #fff; }
.footer-brand p { color: var(--text-mute); font-size: .88rem; max-width: 34ch; }
/* match the header wordmark colour + hover in the footer */
.footer-brand .brand .word { color: var(--teal-2); }
.footer-brand .brand:hover .word { color: var(--teal); }
.footer-bottom { border-top: 1px solid var(--line); padding: 18px 0; display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; color: var(--text-mute); font-size: .82rem; }
.satire-note { color: var(--text-mute); font-size: .8rem; }

/* ---------- Cookie banner ---------- */
.cookie {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 60;
  max-width: 720px; margin: 0 auto; background: var(--surface-2);
  border: 1px solid var(--line); border-radius: var(--radius); padding: 18px 20px;
  box-shadow: var(--shadow); display: none; gap: 16px; align-items: center; flex-wrap: wrap;
}
.cookie.show { display: flex; }
.cookie p { margin: 0; flex: 1; min-width: 240px; font-size: .88rem; color: var(--text-dim); }
.cookie .cookie-btns { display: flex; gap: 10px; }

/* ---------- Modal (age gate + generic) ---------- */
.modal-overlay { position: fixed; inset: 0; background: rgba(4,4,8,.82); backdrop-filter: blur(6px); z-index: 100; display: none; place-items: center; padding: 20px; }
.modal-overlay.show { display: grid; }
.modal { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); max-width: 440px; width: 100%; padding: 34px 30px; text-align: center; box-shadow: var(--shadow); }
.modal img { width: 74px; height: 74px; margin-bottom: 8px; }
.modal h2 { font-size: 1.5rem; }
.modal p { color: var(--text-dim); font-size: .92rem; }
.modal .modal-btns { display: flex; gap: 12px; margin-top: 20px; }
.modal .modal-btns .btn { flex: 1; }
.modal .fineprint { font-size: .72rem; color: var(--text-mute); margin-top: 16px; }

/* toast for copy */
.toast { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(20px); background: var(--surface-2); border: 1px solid var(--purple); color: #fff; padding: 12px 20px; border-radius: 999px; z-index: 120; opacity: 0; transition: all .25s ease; font-size: .9rem; pointer-events: none; }
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* success burst */
@keyframes popin { 0%{transform:scale(.6);opacity:0;} 60%{transform:scale(1.1);} 100%{transform:scale(1);opacity:1;} }
.pop { animation: popin .5s ease both; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-art { order: -1; }
  .hero-art img { width: 200px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .featured { grid-template-columns: 1fr; }
  .featured-thumb { min-height: 210px; }
}
@media (max-width: 720px) {
  .nav-search { display: none; }
  .nav-links { display: none; }
  .nav-links.open { display: flex; position: absolute; top: 100%; right: 12px; flex-direction: column; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 8px; box-shadow: var(--shadow); min-width: 180px; }
  .nav-links.open a { width: 100%; }
  .hamburger { display: inline-block; }
  .nav-actions .btn-signup { display: none; }
  .profile-head { flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { flex-direction: column; gap: 0; }
}
