
:root{
  --ink:#16131f;
  --paper:#fff7d9;
  --cream:#fffbea;
  --cyan:#00e7d7;
  --hot:#ff3d9a;
  --yellow:#ffe54d;
  --blue:#244cff;
  --green:#77ff55;
  --black:#050507;
  --shadow:6px 6px 0 #050507;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  color:#fff;
  font-family:"Trebuchet MS",Verdana,Arial,sans-serif;
  background:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px),
    radial-gradient(circle at 20% 10%, rgba(255,61,154,.32), transparent 30%),
    radial-gradient(circle at 80% 25%, rgba(0,231,215,.25), transparent 34%),
    linear-gradient(135deg,#16131f,#0d1224 52%,#260d25);
  background-size:32px 32px,32px 32px,auto,auto,auto;
}
a{color:#123cff}
img{max-width:100%;display:block}
.topbar{
  position:sticky;top:0;z-index:99;
  background:linear-gradient(90deg,var(--yellow),#ff8bd0,var(--cyan));
  color:#000;font-weight:900;text-align:center;
  padding:10px 16px;border-bottom:4px solid #000;
}
.topbar a{color:#000}
.shell{max-width:1180px;margin:0 auto;padding:18px}
.site-header{
  display:grid;
  grid-template-columns:auto 1fr;
  gap:16px;
  align-items:center;
  margin:14px 0 20px;
}
.logo{
  text-decoration:none;
  color:#fff;
  font-weight:1000;
  font-size:clamp(28px,5vw,56px);
  letter-spacing:-2px;
  text-shadow:4px 4px 0 #000;
  display:flex;align-items:center;gap:12px;
}
.logo-mark{
  display:inline-flex;align-items:center;justify-content:center;
  width:72px;height:72px;
  background:var(--yellow);
  color:#000;
  border:4px solid #000;
  border-radius:18px;
  box-shadow:var(--shadow);
  transform:rotate(-5deg);
  font-size:30px;
}
.nav{
  justify-self:end;
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  justify-content:flex-end;
}
.nav a,.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:40px;
  padding:9px 12px;
  border:3px solid #000;
  border-radius:10px;
  background:#fff;
  color:#000;
  text-decoration:none;
  font-weight:900;
  box-shadow:4px 4px 0 #000;
}
.nav a:hover,.btn:hover{transform:translate(2px,2px);box-shadow:2px 2px 0 #000}
.hero{
  display:grid;
  grid-template-columns:minmax(0,1.05fr) minmax(330px,.95fr);
  gap:22px;
  align-items:stretch;
}
.window{
  border:4px solid #000;
  border-radius:18px;
  overflow:hidden;
  box-shadow:var(--shadow);
  background:var(--paper);
  color:#000;
}
.window-title{
  background:linear-gradient(90deg,#1037c8,#03a9ff);
  color:#fff;
  padding:9px 12px;
  font-weight:900;
  display:flex;
  justify-content:space-between;
  border-bottom:4px solid #000;
}
.window-body{padding:20px}
.hero h1{
  margin:0;
  font-size:clamp(44px,7vw,88px);
  line-height:.88;
  letter-spacing:-3px;
}
.hero .lede{
  font-size:20px;
  line-height:1.45;
  max-width:760px;
}
.gifs{display:flex;gap:8px;flex-wrap:wrap;margin-bottom:14px}
.gif-badge{
  color:#000;
  font-weight:1000;
  border:3px solid #000;
  padding:8px 10px;
  box-shadow:4px 4px 0 #000;
  background:repeating-linear-gradient(45deg,#fff200 0 9px,#ff3d9a 9px 18px);
  animation:wiggle .9s infinite alternate;
}
@keyframes wiggle{from{transform:rotate(-1.5deg)}to{transform:rotate(1.5deg)}}
.spin{display:inline-block;animation:spin 1.4s linear infinite}
@keyframes spin{to{transform:rotate(360deg)}}
.counter{
  display:inline-block;
  margin:10px 0;
  padding:10px 14px;
  border:4px inset #999;
  background:#000;
  color:#64ff54;
  font:700 26px "Courier New",monospace;
  letter-spacing:5px;
}
.ticker{
  background:#000;color:#64ff54;
  font:700 15px "Courier New",monospace;
  padding:10px;border:3px inset #bbb;
  overflow:hidden;white-space:nowrap;
}
.badges{display:flex;flex-wrap:wrap;gap:8px;margin:16px 0}
.badge{background:var(--yellow);border:2px solid #000;color:#000;border-radius:999px;padding:6px 10px;font-weight:900}
.section{margin:24px 0}
.section-head{
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:16px;
  margin:0 0 12px;
}
.section h2{font-size:clamp(28px,4vw,44px);margin:0;text-shadow:3px 3px 0 #000}
.cards-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:18px;
}
.card{
  background:#12121b;
  border:4px solid #000;
  border-radius:18px;
  box-shadow:var(--shadow);
  overflow:hidden;
  min-width:0;
  transition:transform .15s ease, box-shadow .15s ease;
}
.card:hover{transform:translateY(-4px);box-shadow:8px 10px 0 #000}
.card-img{
  aspect-ratio:5/7;
  background:#ffe54d;
  overflow:hidden;
  border-bottom:4px solid #000;
}
.card-img img{width:100%;height:100%;object-fit:cover}
.card-body{padding:12px}
.card h3{font-size:19px;line-height:1.05;margin:8px 0;color:#ffe54d}
.card p{font-size:14px;line-height:1.35;margin:0 0 10px;color:#f7f3ff}
.rarity{
  display:inline-block;
  font-size:11px;
  color:#000;
  background:var(--cyan);
  border:2px solid #000;
  border-radius:999px;
  padding:4px 8px;
  font-weight:1000;
}
.featured .card:nth-child(n+7){display:none}
.panel{
  background:var(--cream);
  color:#000;
  border:4px solid #000;
  border-radius:18px;
  box-shadow:var(--shadow);
  padding:22px;
}
.panel.dark{
  background:#101019;
  color:#fff;
  border-color:#000;
}
.split{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:22px;
}
.aol{
  background:#d8d8d8;
  color:#000;
  border:4px solid #000;
  border-radius:14px;
  overflow:hidden;
  box-shadow:var(--shadow);
}
.aol-title{
  background:#1037c8;
  color:#fff;
  display:flex;
  justify-content:space-between;
  padding:8px 12px;
  font-weight:900;
}
.aol-body{padding:14px}
.aol label{display:block;margin:10px 0 5px;font-weight:900}
.aol input,.aol textarea{
  width:100%;
  border:3px inset #888;
  background:#fff;
  padding:10px;
  font:inherit;
}
.aol textarea{min-height:110px}
.aol button{
  margin-top:12px;
  border:3px solid #000;
  background:var(--yellow);
  font-weight:900;
  padding:10px 14px;
  box-shadow:3px 3px 0 #000;
}
.poem{
  white-space:pre-line;
  background:#000;
  color:#fff;
  border:3px dashed var(--hot);
  border-radius:14px;
  padding:14px;
  line-height:1.5;
  font:18px Georgia,serif;
}
.guest-entry,.news-card{
  background:#fff;
  color:#000;
  border:3px solid #000;
  border-radius:14px;
  box-shadow:4px 4px 0 #000;
  padding:14px;
  margin:12px 0;
}
.guest-meta{font-weight:900;color:#a0005c}
.share{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin:16px 0;
}
.share a,.share button{
  border:3px solid #000;
  border-radius:10px;
  background:var(--cyan);
  color:#000;
  font-weight:900;
  text-decoration:none;
  padding:9px 11px;
  box-shadow:3px 3px 0 #000;
  cursor:pointer;
}
.footer{
  margin-top:32px;
  color:#fff;
  border-top:4px double #fff;
  padding:24px 0;
}
@media(max-width:980px){
  .site-header{grid-template-columns:1fr}
  .nav{justify-self:start;justify-content:flex-start}
  .hero{grid-template-columns:1fr}
  .cards-grid{grid-template-columns:repeat(3,minmax(0,1fr))}
}
@media(max-width:680px){
  .shell{padding:12px}
  .cards-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:12px}
  .split{grid-template-columns:1fr}
  .card h3{font-size:16px}
  .card p{display:none}
  .logo-mark{width:56px;height:56px;font-size:24px}
}
@media(max-width:390px){
  .cards-grid{grid-template-columns:1fr}
}
