/* Shared styles for the ShellBound content/landing pages. Standalone (no game
   bundle) so crawlers and users get fast, real HTML pages. */
:root {
  --gold: #ffb43d;
  --gold-2: #ffd27a;
  --ink: #0a1430;
  --ink-2: #0e1a38;
  --panel: rgba(13, 25, 52, 0.72);
  --line: rgba(255, 255, 255, 0.14);
  --text: #e8eefc;
  --muted: #9fb0d0;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Baloo 2', system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(ellipse at 50% -10%, #1d3566 0%, transparent 55%),
    linear-gradient(180deg, #0c1730 0%, #070d1e 100%);
  background-attachment: fixed;
  line-height: 1.6;
}
a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-2); }
img { max-width: 100%; display: block; }
h1, h2, h3 { font-family: 'Luckiest Guy', 'Baloo 2', cursive; font-weight: 400; letter-spacing: 0.5px; line-height: 1.1; }
.wrap { width: min(1180px, 90vw); margin: 0 auto; }

/* ---- top nav ---- */
header.nav {
  position: sticky; top: 0; z-index: 10;
  background: rgba(7, 13, 30, 0.82);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav .wrap { display: flex; align-items: center; gap: 18px; padding: 12px 0; }
.nav .brand { display: flex; align-items: center; gap: 10px; margin-right: auto; }
.nav .brand img { height: 50px; width: auto; filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.4)); }
.nav .brand b { font-family: 'Luckiest Guy', cursive; font-size: 20px; color: #fff; letter-spacing: 1px; }
.nav a.link { color: var(--muted); font-weight: 700; font-size: 14px; letter-spacing: 0.4px; }
.nav a.link:hover { color: #fff; }
.nav a.play {
  color: var(--ink); font-weight: 800; padding: 8px 18px; border-radius: 22px;
  background: linear-gradient(180deg, var(--gold-2), var(--gold));
  box-shadow: 0 5px 14px rgba(255, 140, 40, 0.32);
}
.nav a.play:hover { color: var(--ink); filter: brightness(1.05); }
@media (max-width: 640px) { .nav a.link { display: none; } }

/* ---- hero ---- */
.hero { position: relative; text-align: center; padding: clamp(72px, 13vh, 140px) 0 clamp(52px, 9vh, 96px); }
.hero::before {
  content: ''; position: absolute; top: 0; bottom: 0; left: 50%; width: 100vw; transform: translateX(-50%); z-index: -1;
  background:
    linear-gradient(180deg, rgba(7, 13, 30, 0.5) 0%, rgba(7, 13, 30, 0.22) 32%, rgba(12, 23, 48, 0.86) 80%, #0c1730 100%),
    url('/art/hero_bg.jpg') center / cover no-repeat;
}
.hero h1 { font-size: clamp(38px, 7vw, 68px); color: #fff; margin: 0 0 14px; text-shadow: 0 4px 0 rgba(0,0,0,0.35), 0 12px 40px rgba(0,0,0,0.5); }
.hero h1 .accent { color: var(--gold); }
.hero p.lede { font-size: clamp(16px, 2.2vw, 20px); color: var(--muted); max-width: 720px; margin: 0 auto 26px; }
.cta {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Luckiest Guy', cursive; font-size: 20px; letter-spacing: 1px;
  color: var(--ink); padding: 14px 34px; border-radius: 30px;
  background: linear-gradient(180deg, var(--gold-2), var(--gold));
  box-shadow: 0 8px 22px rgba(255, 140, 40, 0.4), inset 0 1px 0 rgba(255,255,255,0.6);
  transition: transform 0.15s, filter 0.15s;
}
.cta:hover { color: var(--ink); transform: translateY(-2px); filter: brightness(1.05); }

/* ---- sections ---- */
section { padding: clamp(46px, 7.5vh, 84px) 0; }
section h2 { font-size: clamp(28px, 4.4vw, 42px); color: #fff; margin: 0 0 10px; }
section h2 .accent { color: var(--gold); }
.section-sub { color: var(--muted); margin: 0 0 26px; font-size: 17px; max-width: 760px; }

/* full-width tinted band behind a centred section, to break up the column */
.band { position: relative; }
.band::before {
  content: ''; position: absolute; top: 0; bottom: 0; left: 50%; width: 100vw; transform: translateX(-50%); z-index: -1;
  background: var(--band, rgba(255, 255, 255, 0.028));
  border-top: 1px solid rgba(255, 255, 255, 0.05); border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.band.accent::before { background: var(--band, linear-gradient(180deg, rgba(46, 111, 194, 0.12), rgba(46, 111, 194, 0.04))); }

.panel {
  background: var(--panel); border: 1px solid var(--line); border-radius: 18px;
  padding: 22px 24px; box-shadow: 0 10px 26px rgba(0,0,0,0.3);
}
.grid { display: grid; gap: 18px; }
.grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 860px) { .grid.cols-3, .grid.cols-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .grid.cols-2, .grid.cols-3, .grid.cols-4 { grid-template-columns: 1fr; } }

.step { display: flex; gap: 16px; align-items: flex-start; }
.step .num {
  flex: 0 0 auto; width: 42px; height: 42px; border-radius: 50%;
  display: grid; place-items: center; font-family: 'Luckiest Guy', cursive; font-size: 20px;
  color: var(--ink); background: linear-gradient(180deg, var(--gold-2), var(--gold));
}
.step h3 { margin: 4px 0 4px; color: #fff; font-size: 19px; }
.step p { margin: 0; color: var(--muted); }

/* mobile cards */
.mob {
  text-align: center; background: var(--panel); border: 1px solid var(--line);
  border-radius: 16px; padding: 16px 14px; transition: transform 0.15s, border-color 0.15s;
}
.mob:hover { transform: translateY(-4px); border-color: rgba(255,180,61,0.55); }
.mob .art { height: 120px; display: grid; place-items: center; margin-bottom: 8px; }
.mob .art img { max-height: 120px; width: auto; filter: drop-shadow(0 8px 12px rgba(0,0,0,0.45)); }
.mob h3 { margin: 4px 0 2px; color: #fff; font-size: 20px; }
.mob .desc { color: var(--muted); font-size: 13px; min-height: 34px; margin-bottom: 8px; }
.mob .bars { text-align: left; font-size: 11px; color: var(--muted); font-weight: 700; letter-spacing: 1px; }
.mob .bar { height: 7px; border-radius: 4px; background: rgba(255,255,255,0.1); margin: 2px 0 6px; overflow: hidden; }
.mob .bar > i { display: block; height: 100%; border-radius: 4px; background: linear-gradient(90deg, var(--gold-2), var(--gold)); }

/* tier ladder */
.tier { display: flex; align-items: center; gap: 14px; padding: 10px 14px; border-radius: 12px; background: rgba(255,255,255,0.04); border: 1px solid var(--line); }
.tier .badge { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; font-family: 'Luckiest Guy', cursive; color: #1a1a1a; font-size: 18px; flex: 0 0 auto; }
.tier .tierImg { width: 60px; height: 60px; object-fit: contain; flex: 0 0 auto; filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.5)); }
.tier b { color: #fff; font-size: 17px; }
.tier span { color: var(--muted); font-size: 13px; }

/* faq */
.faq details { border-bottom: 1px solid var(--line); padding: 14px 2px; }
.faq summary { cursor: pointer; font-weight: 800; color: #fff; font-size: 17px; list-style: none; display: flex; justify-content: space-between; gap: 10px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; color: var(--gold); font-family: 'Luckiest Guy', cursive; }
.faq details[open] summary::after { content: '–'; }
.faq p { color: var(--muted); margin: 10px 0 2px; }

/* footer */
footer { border-top: 1px solid var(--line); margin-top: 40px; padding: 30px 0 50px; color: var(--muted); font-size: 14px; }
footer .wrap { display: flex; flex-wrap: wrap; gap: 18px; align-items: center; }
footer .links { display: flex; flex-wrap: wrap; gap: 16px; margin-right: auto; }
footer a.donate {
  display: inline-flex; align-items: center; gap: 7px; color: var(--ink); font-weight: 800;
  padding: 8px 16px; border-radius: 20px; background: linear-gradient(180deg, var(--gold-2), var(--gold));
}
footer a.donate:hover { color: var(--ink); filter: brightness(1.05); }
footer a.donate svg { color: #5a3414; }
