/* ─────────────────────────────────────────────
   COIN GIRLIES 🎀 — girlcore sticker-wall design
   ───────────────────────────────────────────── */
:root {
  --bg: #fff3f8;
  --bg-soft: #ffe4f0;
  --card: #ffffff;
  --ink: #2b1226;
  --muted: #8d6c80;
  --faint: #b7849f;
  --pink: #ff3d9a;
  --pink-deep: #e0187f;
  --pink-soft: #ffd0e5;
  --pink-ghost: #fff0f7;
  --lilac: #8f5bff;
  --lilac-soft: #ecdfff;
  --mint: #0e9f72;
  --mint-soft: #d3f6e8;
  --sky: #2f7fd0;
  --sky-soft: #d9ecff;
  --sun: #ffd43b;
  --sun-soft: #fff3c4;
  --red: #e0244d;
  --red-soft: #ffdbe2;
  --amber: #b06e00;
  --amber-soft: #ffe9b8;
  --phantom: #ab9ff2;
  --border: var(--ink);
  --hard: 5px 6px 0 var(--ink);
  --hard-sm: 3px 4px 0 var(--ink);
  --hard-pink: 6px 7px 0 var(--pink-soft);
  --r: 16px;
  --r-big: 24px;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Nunito", -apple-system, "Segoe UI", sans-serif;
  --font-hand: "Caveat", "Comic Sans MS", cursive;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  background-image: radial-gradient(#ffd0e5 1.6px, transparent 1.6px);
  background-size: 28px 28px;
  color: var(--ink);
  font-size: 16.5px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--pink-deep); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3 { font-family: var(--font-display); font-weight: 900; line-height: 1.05; letter-spacing: -.015em; }
h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); }
h2 { font-size: clamp(1.6rem, 3.6vw, 2.5rem); }
h3 { font-size: 1.2rem; }
.outline-txt { color: var(--bg); -webkit-text-stroke: 2px var(--ink); text-stroke: 2px var(--ink); }
.hand { font-family: var(--font-hand); font-weight: 700; }

.wrap { max-width: 1140px; margin: 0 auto; padding: 0 22px; }
.wrap-slim { max-width: 800px; margin: 0 auto; padding: 0 22px; }
main { padding-bottom: 80px; }
section { margin-top: 64px; }

.kicker {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .78rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink); background: var(--sun); border: 2px solid var(--ink); border-radius: 999px;
  padding: 4px 14px; margin-bottom: 14px; box-shadow: var(--hard-sm); transform: rotate(-1deg);
}
.sub { color: var(--muted); max-width: 60ch; margin-top: 12px; font-weight: 700; }
.section-head { margin-bottom: 26px; }
.section-head .row { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; flex-wrap: wrap; }

/* ── checkerboard strip ─────────────────── */
.checker { height: 18px; background: conic-gradient(var(--ink) 90deg, var(--pink) 90deg 180deg, var(--ink) 180deg 270deg, var(--pink) 270deg); background-size: 36px 36px; border-top: 2.5px solid var(--ink); border-bottom: 2.5px solid var(--ink); }

/* ── header ─────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: var(--bg); border-bottom: 2.5px solid var(--ink);
}
.site-header .bar { display: flex; align-items: center; gap: 14px; height: 66px; }
.logo { display: flex; align-items: center; gap: 8px; font-family: var(--font-display); font-weight: 900; font-size: 1.35rem; color: var(--ink); text-decoration: none; white-space: nowrap; }
.logo:hover { text-decoration: none; transform: rotate(-2deg); }
.logo .bow { font-size: 1.4rem; }
.logo em { color: var(--pink); font-style: italic; }
.main-nav { display: flex; align-items: center; gap: 2px; margin-left: auto; flex-wrap: wrap; }
.main-nav a {
  padding: 7px 10px; border-radius: 999px; font-size: .85rem; font-weight: 900;
  color: var(--ink); white-space: nowrap; border: 2px solid transparent;
}
.main-nav a:hover { background: var(--sun); border-color: var(--ink); text-decoration: none; transform: rotate(-1.5deg); }
.main-nav a.active { background: var(--ink); color: #fff; }
.nav-cta { margin-left: 8px; background: var(--pink); color: #fff !important; border: 2px solid var(--ink) !important; box-shadow: var(--hard-sm); }
.nav-cta:hover { background: var(--pink) !important; transform: translate(-1px, -1px) rotate(0) !important; }
.nav-login { border: 2px dashed var(--ink) !important; }
.nav-burger {
  display: none; margin-left: auto; border: 2.5px solid var(--ink); background: var(--sun);
  border-radius: 12px; padding: 7px 12px; font-weight: 900; font-family: var(--font-body); font-size: .9rem; cursor: pointer; box-shadow: var(--hard-sm);
}
.me-chip {
  display: inline-flex; align-items: center; gap: 8px; margin-left: 8px;
  background: var(--lilac-soft); border: 2px solid var(--ink);
  border-radius: 999px; padding: 3px 12px 3px 3px; font-weight: 900; font-size: .85rem; color: var(--ink); box-shadow: var(--hard-sm);
}
.me-chip:hover { text-decoration: none; transform: rotate(-2deg); }
@media (max-width: 1080px) {
  .nav-burger { display: block; }
  .main-nav {
    display: none; position: absolute; top: 66px; left: 0; right: 0;
    background: var(--bg); border-bottom: 2.5px solid var(--ink);
    flex-direction: column; align-items: stretch; padding: 14px 22px 20px; gap: 6px;
  }
  .main-nav a { font-size: 1.05rem; padding: 10px 14px; border: 2px solid var(--ink); background: #fff; }
  body.nav-open .main-nav { display: flex; }
}

/* ── ticker ─────────────────────────────── */
.ticker { background: var(--pink); color: var(--ink); overflow: hidden; padding: 8px 0; font-weight: 900; font-size: .9rem; border-bottom: 2.5px solid var(--ink); }
.ticker-track { display: flex; gap: 40px; white-space: nowrap; animation: tick 32s linear infinite; width: max-content; }
.ticker-track span::after { content: "🎀"; margin-left: 40px; }
@keyframes tick { to { transform: translateX(-50%); } }

/* ── buttons & chips ────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-body); font-weight: 900; font-size: .95rem;
  border-radius: 14px; padding: 12px 22px; cursor: pointer;
  border: 2.5px solid var(--ink); background: #fff; color: var(--ink);
  box-shadow: var(--hard-sm); transition: transform .1s ease, box-shadow .1s ease; text-decoration: none;
}
.btn:hover { transform: translate(-2px, -2px); box-shadow: 5px 6px 0 var(--ink); text-decoration: none; }
.btn:active { transform: translate(2px, 3px); box-shadow: 0 0 0 var(--ink); }
.btn-primary { background: var(--pink); color: #fff; }
.btn-dark { background: var(--ink); color: #fff; }
.btn-small { padding: 8px 16px; font-size: .84rem; box-shadow: var(--hard-sm); }
.btn-ghost { background: var(--sun); }
.btn-phantom { background: var(--phantom); }
.btn-block { width: 100%; padding: 15px 22px; font-size: 1.05rem; }
.chip {
  display: inline-flex; align-items: center; gap: 6px; padding: 4px 12px; border-radius: 999px;
  font-size: .78rem; font-weight: 900; background: var(--pink-soft); color: var(--ink);
  border: 2px solid var(--ink); white-space: nowrap;
}
.chip.lilac { background: var(--lilac-soft); }
.chip.mint { background: var(--mint-soft); }
.chip.red { background: var(--red-soft); }
.chip.amber { background: var(--amber-soft); }
.chip.sky { background: var(--sky-soft); }
.chip.sun { background: var(--sun-soft); }

/* ── cards ──────────────────────────────── */
.card {
  background: var(--card); border: 2.5px solid var(--ink);
  border-radius: var(--r-big); padding: 24px; box-shadow: var(--hard);
}
.card.tilt-l { transform: rotate(-1.2deg); }
.card.tilt-r { transform: rotate(1.2deg); }
.grid { display: grid; gap: 20px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

/* ── banners ────────────────────────────── */
.banner {
  border-radius: var(--r); padding: 13px 18px; font-weight: 800; font-size: .93rem;
  display: flex; gap: 12px; align-items: flex-start; border: 2.5px solid var(--ink); box-shadow: var(--hard-sm);
}
.banner .b-emoji { font-size: 1.3rem; line-height: 1.3; }
.banner-info { background: var(--pink-ghost); }
.banner-warn { background: var(--amber-soft); }
.banner-danger { background: var(--red-soft); }
.banner-mint { background: var(--mint-soft); }
.banner a { color: var(--pink-deep); text-decoration: underline; }

/* ── hero ───────────────────────────────── */
.hero { padding: 58px 0 10px; position: relative; }
.hero .wrap { display: grid; grid-template-columns: 1.15fr .85fr; gap: 44px; align-items: center; }
@media (max-width: 900px) { .hero .wrap { grid-template-columns: 1fr; } }
.hero h1 .hl { background: var(--sun); border: 2.5px solid var(--ink); border-radius: 14px; padding: 0 12px; display: inline-block; transform: rotate(-1deg); box-shadow: var(--hard-sm); }
.hero h1 .hl-pink { background: var(--pink-soft); transform: rotate(.8deg); }
.hero-ctas { display: flex; gap: 14px; margin-top: 28px; flex-wrap: wrap; }
.hero-note { margin-top: 16px; font-size: 1.15rem; color: var(--muted); font-family: var(--font-hand); }
.hero-card { position: relative; }
.hero-card .sticker {
  position: absolute; background: var(--sun); border: 2px solid var(--ink); border-radius: 12px;
  box-shadow: var(--hard-sm); padding: 6px 14px; font-family: var(--font-hand); font-size: 1.15rem; z-index: 3;
  animation: floaty 4s ease-in-out infinite;
}
.sticker.s2 { background: var(--lilac-soft); animation-delay: 1.3s; }
.sticker.s3 { background: var(--mint-soft); animation-delay: 2.1s; }
@keyframes floaty { 0%,100% { transform: translateY(0) rotate(-3deg); } 50% { transform: translateY(-8px) rotate(2deg); } }
.float-emoji { position: absolute; font-size: 1.9rem; z-index: 1; animation: floaty 5s ease-in-out infinite; filter: drop-shadow(2px 3px 0 rgba(43,18,38,.15)); }

/* ── chat mock ──────────────────────────── */
.chat-mock { background: var(--card); border: 2.5px solid var(--ink); border-radius: 26px; box-shadow: var(--hard); padding: 20px; transform: rotate(1.6deg); }
.chat-mock .chat-title { display: flex; align-items: center; gap: 10px; font-weight: 900; padding-bottom: 12px; border-bottom: 2px dashed var(--pink-soft); margin-bottom: 14px; }
.bubble { max-width: 85%; padding: 10px 14px; border-radius: 18px; font-size: .9rem; font-weight: 800; margin-bottom: 10px; border: 2px solid var(--ink); }
.bubble.them { background: var(--bg-soft); border-bottom-left-radius: 4px; }
.bubble.me { background: var(--pink); color: #fff; margin-left: auto; border-bottom-right-radius: 4px; }
.bubble .who { display: block; font-size: .72rem; color: var(--pink-deep); }
.bubble.me .who { color: #ffd0e5; }

/* ── meme wall ──────────────────────────── */
.meme-wall { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
@media (max-width: 1000px) { .meme-wall { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .meme-wall { grid-template-columns: 1fr; } }
.meme-card {
  border: 2.5px solid var(--ink); border-radius: 20px; padding: 20px 18px 18px; cursor: pointer;
  box-shadow: var(--hard); position: relative; text-align: center; background: #fff;
  transition: transform .12s ease; font-family: var(--font-body);
}
.meme-card:nth-child(4n+1) { transform: rotate(-1.6deg); background: linear-gradient(160deg, #fff, var(--pink-soft)); }
.meme-card:nth-child(4n+2) { transform: rotate(1.4deg); background: linear-gradient(160deg, #fff, var(--lilac-soft)); }
.meme-card:nth-child(4n+3) { transform: rotate(-.8deg); background: linear-gradient(160deg, #fff, var(--mint-soft)); }
.meme-card:nth-child(4n+4) { transform: rotate(1.8deg); background: linear-gradient(160deg, #fff, var(--sun-soft)); }
.meme-card:hover { transform: rotate(0) scale(1.05); z-index: 2; }
.meme-card::before { content: ""; position: absolute; top: -10px; left: 50%; transform: translateX(-50%) rotate(-2deg); width: 74px; height: 20px; background: rgba(255, 212, 59, .75); border: 1px solid rgba(43,18,38,.2); }
.meme-card .m-word { display: inline-block; font-size: .72rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; background: var(--ink); color: #fff; border-radius: 999px; padding: 3px 12px; }
.meme-card .m-art { font-size: 3rem; line-height: 1.15; margin: 12px 0 6px; }
.meme-card .m-cap { font-family: var(--font-hand); font-size: 1.35rem; line-height: 1.2; }
.meme-card .m-tap { font-size: .7rem; font-weight: 900; color: var(--faint); margin-top: 10px; text-transform: uppercase; letter-spacing: .1em; }

/* girl math vs crypto math split card */
.vs-card { display: grid; grid-template-columns: 1fr auto 1fr; align-items: stretch; border: 2.5px solid var(--ink); border-radius: var(--r-big); overflow: hidden; box-shadow: var(--hard); background: #fff; }
.vs-side { padding: 22px; }
.vs-side.girl { background: var(--pink-soft); }
.vs-side.crypto { background: var(--lilac-soft); }
.vs-mid { display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 900; font-size: 1.3rem; background: var(--sun); border-left: 2.5px solid var(--ink); border-right: 2.5px solid var(--ink); padding: 0 14px; }
.vs-side .vs-tag { font-size: .72rem; font-weight: 900; text-transform: uppercase; letter-spacing: .12em; }
.vs-side .hand { font-size: 1.45rem; display: block; margin-top: 8px; }
@media (max-width: 700px) { .vs-card { grid-template-columns: 1fr; } .vs-mid { border: none; border-top: 2.5px solid var(--ink); border-bottom: 2.5px solid var(--ink); padding: 8px; } }

/* ── room tiles ─────────────────────────── */
.room-tile { border: 2.5px solid var(--ink); border-radius: 22px; padding: 22px 20px; box-shadow: var(--hard); text-decoration: none; color: var(--ink); display: block; transition: transform .12s ease; position: relative; overflow: hidden; }
.room-tile:hover { transform: rotate(-1.5deg) scale(1.03); text-decoration: none; z-index: 2; }
.room-tile .r-emoji { font-size: 3.2rem; line-height: 1; filter: drop-shadow(2px 3px 0 rgba(43,18,38,.18)); }
.room-tile h3 { margin-top: 10px; font-size: 1.25rem; }
.room-tile .hand { font-size: 1.25rem; color: var(--ink); opacity: .75; display: block; margin-top: 2px; }
.rt-pink { background: var(--pink-soft); } .rt-lilac { background: var(--lilac-soft); }
.rt-mint { background: var(--mint-soft); } .rt-red { background: var(--red-soft); }
.rt-sun { background: var(--sun-soft); } .rt-ink { background: var(--ink); color: #fff; }
.rt-ink .hand { color: #ffd0e5; opacity: 1; }
.rt-ink h3 { color: #fff; }

/* ── forum / feed ───────────────────────── */
.feed { display: flex; flex-direction: column; gap: 18px; }
.post-card { background: var(--card); border: 2.5px solid var(--ink); border-radius: var(--r-big); padding: 20px 22px; box-shadow: var(--hard); }
.feed .post-card:nth-child(odd) { transform: rotate(.35deg); }
.feed .post-card:nth-child(even) { transform: rotate(-.35deg); }
.post-top { display: flex; align-items: center; gap: 12px; }
.post-top .names { min-width: 0; }
.post-top .dname { font-weight: 900; font-size: .98rem; }
.post-top .handle { color: var(--faint); font-weight: 800; font-size: .82rem; }
.post-top .meta-right { margin-left: auto; display: flex; align-items: center; gap: 8px; }
.post-time { color: var(--faint); font-size: .78rem; font-weight: 800; white-space: nowrap; }
.post-title { font-family: var(--font-display); font-weight: 900; font-size: 1.2rem; margin: 12px 0 6px; }
.post-body { color: #553a4d; font-size: .95rem; font-weight: 600; }
.post-body p + p { margin-top: 8px; }
.post-shot { margin-top: 14px; }
.reactions { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 16px; }
.react {
  border: 2px solid var(--ink); background: #fff; border-radius: 999px;
  padding: 5px 13px; font-size: .82rem; font-weight: 900; cursor: pointer; font-family: var(--font-body);
  color: var(--ink); transition: transform .1s ease; box-shadow: 2px 3px 0 var(--pink-soft);
}
.react:hover { transform: scale(1.08) rotate(-2deg); }
.react.on { background: var(--pink); color: #fff; box-shadow: 2px 3px 0 var(--ink); }
.post-actions { display: flex; gap: 14px; margin-top: 14px; padding-top: 12px; border-top: 2px dashed var(--pink-soft); align-items: center; }
.post-actions button, .post-actions a { background: none; border: none; font-family: var(--font-body); font-weight: 900; font-size: .82rem; color: var(--muted); cursor: pointer; }
.post-actions button:hover { color: var(--pink-deep); }
.post-actions .spacer { margin-left: auto; }
.comments { margin-top: 14px; display: flex; flex-direction: column; gap: 10px; }
.comment { display: flex; gap: 10px; background: var(--bg-soft); border: 2px solid var(--ink); border-radius: 16px; padding: 10px 14px; }
.comment .c-body { font-size: .88rem; font-weight: 600; }
.comment .c-name { font-weight: 900; font-size: .84rem; }
.comment .c-badge { font-size: .68rem; }
.helpful-star { display: inline-flex; gap: 4px; align-items: center; background: var(--mint-soft); border: 1.5px solid var(--ink); color: var(--mint); font-size: .66rem; font-weight: 900; border-radius: 999px; padding: 1px 8px; margin-left: 6px; }

/* avatars & badges */
.avatar {
  width: 46px; height: 46px; border-radius: 50%; flex: none;
  display: flex; align-items: center; justify-content: center; font-size: 1.4rem;
  border: 2px solid var(--ink); box-shadow: 2px 3px 0 var(--pink-soft);
}
.avatar.sm { width: 32px; height: 32px; font-size: 1rem; }
.avatar.lg { width: 90px; height: 90px; font-size: 2.8rem; box-shadow: var(--hard-sm); }
.av-1 { background: linear-gradient(135deg, #ffd0e5, #ff9fce); }
.av-2 { background: linear-gradient(135deg, #ecdfff, #c5a3ff); }
.av-3 { background: linear-gradient(135deg, #d3f6e8, #8fe3c2); }
.av-4 { background: linear-gradient(135deg, #fff3c4, #ffd43b); }
.av-5 { background: linear-gradient(135deg, #d9ecff, #9cc9f5); }
.badge-tag {
  display: inline-flex; align-items: center; gap: 5px; font-size: .7rem; font-weight: 900;
  background: var(--lilac-soft); border: 1.5px solid var(--ink); color: var(--ink); border-radius: 999px; padding: 2px 9px; white-space: nowrap;
}

/* fake screenshots */
.shot-frame {
  background: #201029; border-radius: 16px; padding: 14px 16px; color: #f5e7ef;
  font-size: .82rem; font-weight: 800; border: 2.5px solid var(--ink); box-shadow: var(--hard-sm); position: relative; overflow: hidden;
}
.shot-frame .sf-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.shot-frame .sf-title { font-weight: 900; }
.shot-frame .sf-stats { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 8px; color: #c9b3c6; }
.shot-frame .sf-stats b { color: #fff; }
.anno { display: inline-flex; width: 20px; height: 20px; border-radius: 50%; background: var(--pink); border: 1.5px solid #fff; color: #fff; font-size: .7rem; font-weight: 900; align-items: center; justify-content: center; margin-left: 6px; }
.up { color: #4ade9d; } .down { color: #ff7d8a; }

/* tabs */
.tabs { display: flex; gap: 8px; flex-wrap: wrap; }
.tab {
  border: 2px solid var(--ink); background: #fff; border-radius: 999px;
  padding: 8px 16px; font-weight: 900; font-size: .85rem; cursor: pointer; font-family: var(--font-body); color: var(--ink); box-shadow: 2px 3px 0 var(--pink-soft);
}
.tab:hover { transform: rotate(-1.5deg); }
.tab.on { background: var(--ink); color: #fff; box-shadow: 2px 3px 0 var(--pink); }

/* ── composer ───────────────────────────── */
.composer { background: var(--card); border: 2.5px solid var(--ink); border-radius: var(--r-big); padding: 20px; box-shadow: var(--hard-pink), var(--hard); }
.composer-foot { display: flex; gap: 10px; align-items: center; margin-top: 12px; flex-wrap: wrap; }
.composer-foot .spacer { margin-left: auto; }
.img-preview { margin-top: 10px; max-height: 180px; border-radius: 14px; border: 2px solid var(--ink); object-fit: cover; }

/* ── forms ──────────────────────────────── */
label.f-label { display: block; font-weight: 900; font-size: .85rem; margin: 16px 0 6px; }
label.f-label .opt { color: var(--faint); font-weight: 700; }
input[type=text], input[type=email], input[type=password], textarea, select {
  width: 100%; font-family: var(--font-body); font-size: .95rem; font-weight: 700; color: var(--ink);
  background: #fff; border: 2.5px solid var(--ink); border-radius: 14px; padding: 12px 16px; outline: none;
}
input:focus, textarea:focus, select:focus { box-shadow: 3px 4px 0 var(--pink-soft); }
textarea { min-height: 96px; resize: vertical; }
.field-hint { font-size: .78rem; color: var(--faint); font-weight: 800; margin-top: 5px; }
.level-pick { display: grid; gap: 10px; }
.level-pick label {
  display: flex; gap: 10px; align-items: center; background: #fff; border: 2.5px solid var(--ink);
  border-radius: 16px; padding: 12px 16px; cursor: pointer; font-weight: 900; font-size: .9rem;
}
.level-pick input { accent-color: var(--pink); width: 18px; height: 18px; }
.level-pick label:has(input:checked) { background: var(--pink-soft); box-shadow: var(--hard-sm); transform: rotate(-.6deg); }
.emoji-pick { display: flex; gap: 8px; flex-wrap: wrap; }
.emoji-pick button { font-size: 1.4rem; background: #fff; border: 2.5px solid var(--ink); border-radius: 14px; width: 52px; height: 52px; cursor: pointer; }
.emoji-pick button.on { background: var(--sun); box-shadow: var(--hard-sm); transform: rotate(-4deg); }

/* auth buttons */
.auth-btns { display: flex; flex-direction: column; gap: 12px; margin-top: 18px; }
.auth-or { text-align: center; font-family: var(--font-hand); font-size: 1.2rem; color: var(--faint); }

/* ── learning path ──────────────────────── */
.path { position: relative; display: flex; flex-direction: column; gap: 12px; }
.path-step { display: flex; gap: 18px; align-items: flex-start; background: var(--card); border: 2.5px solid var(--ink); border-radius: var(--r-big); padding: 20px 22px; box-shadow: var(--hard); }
.path-step:nth-child(4n+1) { transform: rotate(.5deg); }
.path-step:nth-child(4n+3) { transform: rotate(-.5deg); }
.path-num { font-family: var(--font-display); font-weight: 900; font-size: 1.5rem; color: #fff; background: var(--pink); border: 2.5px solid var(--ink); width: 56px; height: 56px; border-radius: 16px; display: flex; align-items: center; justify-content: center; flex: none; box-shadow: var(--hard-sm); transform: rotate(-3deg); }
.path-step.done { background: var(--mint-soft); }
.path-step.done .path-num { background: var(--mint); }
.path-arrow { text-align: center; color: var(--pink); font-size: 1.3rem; font-weight: 900; margin: -2px 0; }
.progress-wrap { background: var(--card); border: 2.5px solid var(--ink); border-radius: var(--r-big); padding: 20px 24px; box-shadow: var(--hard-pink), var(--hard); }
.progress-bar { height: 20px; background: #fff; border-radius: 999px; overflow: hidden; margin-top: 10px; border: 2px solid var(--ink); }
.progress-fill { height: 100%; background: repeating-linear-gradient(45deg, var(--pink), var(--pink) 12px, #ff77b8 12px, #ff77b8 24px); border-radius: 999px; transition: width .4s ease; }

/* ── dictionary ─────────────────────────── */
.term-card { background: var(--card); border: 2.5px solid var(--ink); border-radius: var(--r-big); padding: 24px; box-shadow: var(--hard); }
.term-card:nth-child(odd) { transform: rotate(.35deg); }
.term-card:nth-child(even) { transform: rotate(-.35deg); }
.term-head { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; }
.term-word { font-family: var(--font-display); font-size: 1.5rem; font-weight: 900; }
.official-def { margin-top: 10px; background: var(--sky-soft); border: 2px solid var(--ink); border-radius: 14px; padding: 12px 16px; font-size: .92rem; font-weight: 600; }
.official-def .tag, .comm-def .tag { font-size: .66rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; display: block; margin-bottom: 4px; }
.official-def .tag { color: var(--sky); }
.comm-defs { margin-top: 12px; display: flex; flex-direction: column; gap: 8px; }
.comm-def { background: var(--pink-ghost); border: 2px dashed var(--pink); border-radius: 14px; padding: 10px 16px; font-size: 1.15rem; display: flex; gap: 12px; align-items: center; font-family: var(--font-hand); }
.comm-def .tag { color: var(--pink-deep); font-family: var(--font-body); }
.upvote { margin-left: auto; flex: none; border: 2px solid var(--ink); background: #fff; border-radius: 999px; padding: 5px 12px; font-weight: 900; font-size: .8rem; cursor: pointer; font-family: var(--font-body); color: var(--ink); box-shadow: 2px 3px 0 var(--pink-soft); }
.upvote.on { background: var(--pink); color: #fff; }

/* ── explain box ────────────────────────── */
.explain-box { background: linear-gradient(135deg, var(--pink-soft), var(--lilac-soft)); border: 2.5px solid var(--ink); border-radius: var(--r-big); padding: 30px; box-shadow: var(--hard); position: relative; }
.explain-box::after { content: "✨"; position: absolute; top: -16px; right: 24px; font-size: 2rem; }
.explain-form { display: flex; gap: 10px; margin-top: 16px; flex-wrap: wrap; }
.explain-form input { flex: 1; min-width: 220px; }
.explain-suggest { margin-top: 12px; display: flex; gap: 8px; flex-wrap: wrap; }
.explain-suggest button { border: 2px dashed var(--ink); background: #fff; border-radius: 999px; padding: 5px 13px; font-size: .8rem; font-weight: 900; cursor: pointer; font-family: var(--font-body); color: var(--ink); }
.explain-suggest button:hover { background: var(--sun); transform: rotate(-2deg); }
.explain-result { margin-top: 20px; display: none; }
.explain-result.show { display: block; animation: pop .25s ease; }
@keyframes pop { from { opacity: 0; transform: translateY(10px) scale(.98); } }
.ex-section { background: var(--card); border: 2px solid var(--ink); border-radius: var(--r); padding: 13px 17px; margin-top: 10px; font-weight: 600; }
.ex-section .ex-tag { font-size: .7rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 3px; }
.ex-meaning .ex-tag { color: var(--sky); } .ex-girl .ex-tag { color: var(--pink-deep); }
.ex-girl { font-family: var(--font-hand); font-size: 1.3rem; font-weight: 700; }
.ex-example .ex-tag { color: var(--lilac); } .ex-care .ex-tag { color: var(--mint); }
.ex-risk { background: var(--red-soft); }
.ex-risk .ex-tag { color: var(--red); }

/* ── detective / picks ──────────────────── */
.coin-card { background: var(--card); border: 2.5px solid var(--ink); border-radius: var(--r-big); padding: 24px; box-shadow: var(--hard); }
.coin-head { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.coin-logo { width: 54px; height: 54px; border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 1.7rem; border: 2.5px solid var(--ink); box-shadow: var(--hard-sm); transform: rotate(-3deg); }
.coin-name { font-family: var(--font-display); font-weight: 900; font-size: 1.3rem; }
.fact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 10px; margin-top: 16px; }
.fact { background: var(--bg-soft); border: 2px solid var(--ink); border-radius: 14px; padding: 10px 14px; }
.fact .f-k { font-size: .66rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.fact .f-v { font-weight: 900; font-size: .9rem; margin-top: 2px; }
.f-good { color: var(--mint); } .f-mid { color: var(--amber); } .f-bad { color: var(--red); }
.criteria { display: flex; flex-direction: column; gap: 8px; margin-top: 14px; }
.crit { display: flex; gap: 10px; align-items: flex-start; font-size: .88rem; font-weight: 700; background: var(--bg-soft); border: 2px solid var(--ink); border-radius: 14px; padding: 9px 14px; }
.crit b { flex: none; }
.sponsored-flag { position: absolute; top: 18px; right: -10px; background: var(--amber); color: #fff; font-size: .7rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; padding: 5px 16px; border: 2px solid var(--ink); border-radius: 8px 0 0 8px; box-shadow: var(--hard-sm); transform: rotate(2deg); }

/* ── quiz ───────────────────────────────── */
.quiz-q { background: var(--card); border: 2.5px solid var(--ink); border-radius: var(--r-big); padding: 22px; box-shadow: var(--hard); margin-top: 14px; }
.quiz-q:nth-child(odd) { transform: rotate(.4deg); }
.quiz-q:nth-child(even) { transform: rotate(-.4deg); }
.quiz-q .q-text { font-weight: 900; font-size: 1rem; }
.quiz-opts { display: grid; gap: 8px; margin-top: 12px; }
.quiz-opts label { display: flex; gap: 10px; align-items: center; background: #fff; border: 2px solid var(--ink); border-radius: 14px; padding: 10px 14px; cursor: pointer; font-weight: 800; font-size: .9rem; }
.quiz-opts input { accent-color: var(--pink); }
.quiz-opts label:has(input:checked) { background: var(--pink-soft); }
.quiz-opts label.correct { background: var(--mint-soft); box-shadow: var(--hard-sm); }
.quiz-opts label.wrong { background: var(--red-soft); }

/* ── profile ────────────────────────────── */
.profile-hero { display: flex; gap: 22px; align-items: center; flex-wrap: wrap; }
.stat-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 14px; }
.stat-pill { background: #fff; border: 2.5px solid var(--ink); border-radius: 16px; padding: 10px 18px; text-align: center; box-shadow: var(--hard-sm); }
.stat-pill:nth-child(odd) { transform: rotate(-1.5deg); }
.stat-pill:nth-child(even) { transform: rotate(1.5deg); }
.stat-pill .n { font-family: var(--font-display); font-weight: 900; font-size: 1.3rem; color: var(--pink-deep); }
.stat-pill .l { font-size: .7rem; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); }

/* content labels */
.content-label { display: inline-flex; align-items: center; gap: 6px; font-size: .66rem; font-weight: 900; letter-spacing: .09em; text-transform: uppercase; border: 2px solid var(--ink); border-radius: 8px; padding: 2px 9px; }
.cl-community { background: var(--pink-soft); }
.cl-official { background: var(--sky-soft); }
.cl-sponsored { background: var(--amber-soft); }

/* ── toast & modal ──────────────────────── */
.toast {
  position: fixed; left: 50%; bottom: 28px; transform: translateX(-50%) translateY(20px) rotate(-1deg);
  background: var(--ink); color: #fff; font-weight: 900; font-size: .9rem;
  padding: 13px 22px; border-radius: 16px; border: 2px solid #fff; box-shadow: var(--hard-pink);
  opacity: 0; pointer-events: none; transition: all .25s ease; z-index: 100; max-width: min(92vw, 560px); text-align: center;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0) rotate(-1deg); }
.modal-back { position: fixed; inset: 0; background: rgba(43, 18, 38, .55); backdrop-filter: blur(4px); z-index: 90; display: none; align-items: center; justify-content: center; padding: 22px; }
.modal-back.show { display: flex; }
.modal { background: var(--card); border-radius: var(--r-big); padding: 30px; max-width: 480px; width: 100%; border: 3px solid var(--ink); box-shadow: 8px 10px 0 var(--red); }
.menu-pop { position: absolute; right: 0; top: 34px; background: var(--card); border: 2.5px solid var(--ink); border-radius: 16px; box-shadow: var(--hard); padding: 8px; display: none; flex-direction: column; z-index: 20; min-width: 210px; }
.menu-pop.show { display: flex; }
.menu-pop button { text-align: left; background: none; border: none; font-family: var(--font-body); font-weight: 900; font-size: .85rem; padding: 9px 12px; border-radius: 10px; cursor: pointer; color: var(--ink); }
.menu-pop button:hover { background: var(--sun); }
.menu-pop button.danger { color: var(--red); }

/* new-room mini form */
.new-room-box { border: 2.5px dashed var(--ink); border-radius: var(--r-big); padding: 18px 20px; background: var(--sun-soft); margin-top: 14px; }
.new-room-box .nr-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 10px; }
.new-room-box input { flex: 1; min-width: 160px; }
.new-room-box .nr-emoji { flex: 0 0 84px; text-align: center; font-size: 1.2rem; }

/* ── socials ────────────────────────────── */
.x-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; color: var(--ink); border: 2.5px solid var(--ink);
  border-radius: 14px; padding: 9px 16px; font-weight: 900; font-size: .9rem;
  box-shadow: var(--hard-sm); transition: transform .1s ease, box-shadow .1s ease;
}
.x-btn:hover { transform: translate(-2px, -2px); box-shadow: 5px 6px 0 var(--ink); text-decoration: none; }
.x-btn:active { transform: translate(2px, 3px); box-shadow: 0 0 0 var(--ink); }
.x-btn svg { flex: none; }
.x-btn-light { box-shadow: 3px 4px 0 var(--pink); }
.x-btn-light:hover { box-shadow: 5px 6px 0 var(--pink); }
.x-btn-big { font-size: 1.02rem; padding: 13px 22px; }
.social-row { display: flex; gap: 10px; margin-top: 16px; flex-wrap: wrap; }
.main-nav .nav-x {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; padding: 0; border-radius: 11px; margin-left: 6px;
  border: 2px solid var(--ink); background: #fff; color: var(--ink);
}
.main-nav .nav-x:hover { background: var(--sun); text-decoration: none; transform: rotate(-6deg); }
@media (max-width: 1080px) {
  .main-nav .nav-x { width: auto; height: auto; padding: 10px 14px; gap: 8px; justify-content: flex-start; }
  .main-nav .nav-x::after { content: "@coingirlies"; font-weight: 900; font-size: 1rem; }
}

/* ── footer ─────────────────────────────── */
.site-footer { background: var(--ink); color: #e9cfdd; margin-top: 90px; padding: 0 0 30px; }
.site-footer .checker { margin-bottom: 44px; }
.site-footer a { color: #ffd0e5; }
.foot-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 30px; }
@media (max-width: 760px) { .foot-grid { grid-template-columns: 1fr; } }
.foot-grid h4 { font-family: var(--font-display); color: #fff; margin-bottom: 10px; }
.foot-grid ul { list-style: none; display: flex; flex-direction: column; gap: 6px; font-size: .9rem; font-weight: 800; }
.foot-disclaimer { margin-top: 34px; padding-top: 20px; border-top: 2px dashed #5c3f56; font-size: .8rem; color: #c7a4b9; font-weight: 700; }

/* ── misc ───────────────────────────────── */
.pin-note { font-size: .82rem; font-weight: 900; color: var(--faint); display: flex; gap: 6px; align-items: center; margin-bottom: 8px; }
.divider-bow { text-align: center; font-size: 1.6rem; margin: 48px 0 0; letter-spacing: 14px; }
.big-quote { font-family: var(--font-hand); font-size: clamp(1.6rem, 3.6vw, 2.3rem); text-align: center; max-width: 30ch; margin: 0 auto; transform: rotate(-1deg); }
.beliefs { list-style: none; display: grid; gap: 12px; }
.beliefs li { background: var(--card); border: 2.5px solid var(--ink); border-radius: var(--r); padding: 13px 20px; font-weight: 900; box-shadow: var(--hard-sm); display: flex; gap: 12px; align-items: center; }
.beliefs li:nth-child(odd) { transform: rotate(-.6deg); }
.beliefs li:nth-child(even) { transform: rotate(.6deg); }
.hidden { display: none !important; }
::selection { background: var(--sun); }
