:root {
  --cyan: #00f5ff;
  --cyan-soft: #dffcff;
  --ink: #111111;
  --paper: #fffdf7;
  --muted: #5d5d5d;
  --gold: #ffd34e;
  --pink: #ff77b7;
  --shadow: 7px 7px 0 var(--ink);
  --radius: 18px;
  --content: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at 12px 12px, rgba(0,0,0,.04) 1.5px, transparent 1.6px) 0 0 / 24px 24px,
    var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button, input, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.skip-link {
  position: absolute; left: -9999px; top: 0;
}
.skip-link:focus {
  left: 1rem; top: 1rem; z-index: 1000; background: white; border: 2px solid var(--ink); padding: .5rem 1rem;
}

.site-header {
  background: var(--cyan);
  border-bottom: 3px solid var(--ink);
  position: sticky;
  top: 0;
  z-index: 50;
}
.nav-wrap {
  max-width: var(--content);
  margin: 0 auto;
  min-height: 74px;
  padding: .7rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.logo {
  font-family: 'Courgette', 'Trebuchet MS', cursive;
  font-size: clamp(1.45rem, 3vw, 2rem);
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}
.logo span { font-family: Arial, sans-serif; font-size: .48em; letter-spacing: .08em; text-transform: uppercase; display: block; margin-top: -.2rem; }
.site-nav { margin-left: auto; }
.site-nav ul {
  display: flex;
  align-items: center;
  gap: .25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-nav a {
  display: block;
  padding: .58rem .72rem;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
}
.site-nav a:hover, .site-nav a:focus-visible, .site-nav a[aria-current='page'] { background: var(--ink); color: white; outline: none; }
.nav-vote { background: var(--gold); border: 2px solid var(--ink); }
.site-nav .nav-vote:hover, .site-nav .nav-vote:focus-visible { background: white; color: var(--ink); }
.menu-button { display: none; margin-left: auto; border: 2px solid var(--ink); border-radius: 10px; background: white; padding: .5rem .65rem; font-weight: 800; box-shadow: 3px 3px 0 var(--ink); }

main { min-height: 68vh; }
.container { width: min(calc(100% - 2rem), var(--content)); margin-inline: auto; }
.section { padding: clamp(3rem, 7vw, 6rem) 0; }
.section-tight { padding: 2rem 0; }
.section-title { font-family: 'Courgette', 'Trebuchet MS', cursive; font-size: clamp(2rem, 5vw, 3.5rem); line-height: 1.1; margin: 0 0 .75rem; }
.section-lead { max-width: 720px; color: var(--muted); font-size: 1.08rem; margin: 0 0 2rem; }
.eyebrow { margin: 0 0 .6rem; font-weight: 900; text-transform: uppercase; letter-spacing: .12em; font-size: .78rem; }

.hero { overflow: hidden; padding: clamp(2.5rem, 6vw, 5.5rem) 0 2rem; }
.hero-grid { display: grid; grid-template-columns: 1.07fr .93fr; gap: clamp(2rem, 6vw, 5rem); align-items: center; }
.hero h1 { font-family: 'Courgette', 'Trebuchet MS', cursive; font-size: clamp(3.1rem, 8vw, 6.8rem); line-height: .92; margin: 0; letter-spacing: -.035em; }
.hero h1 .mark { display: inline-block; background: var(--cyan); border: 3px solid var(--ink); padding: .05em .13em .12em; transform: rotate(-1.5deg); box-shadow: var(--shadow); }
.hero-copy { font-size: clamp(1.05rem, 2vw, 1.3rem); max-width: 650px; margin: 1.5rem 0 0; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.7rem; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: .45rem; min-height: 48px; padding: .7rem 1rem; border: 2px solid var(--ink); border-radius: 12px; background: white; box-shadow: 4px 4px 0 var(--ink); font-weight: 900; text-decoration: none; cursor: pointer; transition: transform .15s ease, box-shadow .15s ease; }
.button:hover, .button:focus-visible { transform: translate(2px,2px); box-shadow: 2px 2px 0 var(--ink); outline: none; }
.button-primary { background: var(--cyan); }
.button-gold { background: var(--gold); }
.button-dark { background: var(--ink); color: white; box-shadow: 4px 4px 0 var(--cyan); }
.hero-art { position: relative; }
.hero-art::before { content: ''; position: absolute; inset: 5% -5% -6% 7%; background: var(--gold); border: 3px solid var(--ink); transform: rotate(3deg); z-index: -1; }
.hero-art img { width: 100%; border: 3px solid var(--ink); box-shadow: var(--shadow); background: white; }
.hero-stamp { position: absolute; right: -1rem; bottom: -1rem; width: 112px; aspect-ratio: 1; border-radius: 50%; background: var(--pink); border: 3px solid var(--ink); display: grid; place-items: center; text-align: center; font-weight: 900; line-height: 1.05; transform: rotate(8deg); }

.status { border-block: 3px solid var(--ink); background: var(--ink); color: white; }
.status-inner { min-height: 80px; display: flex; gap: 1rem 2rem; flex-wrap: wrap; align-items: center; justify-content: space-between; padding-block: 1rem; }
.status-pill { background: var(--cyan); color: var(--ink); border-radius: 999px; padding: .35rem .7rem; font-size: .8rem; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
.status-copy { flex: 1; min-width: 260px; }
.status-copy strong { display: block; font-size: 1.05rem; }
.status-copy span { color: #d8d8d8; font-size: .94rem; }

.face-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.face-card { background: white; border: 3px solid var(--ink); border-radius: var(--radius); overflow: hidden; box-shadow: 5px 5px 0 var(--ink); }
.face-card:nth-child(even) { transform: rotate(.6deg); }
.face-card:nth-child(3n) { transform: rotate(-.5deg); }
.face-card img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; border-bottom: 3px solid var(--ink); }
.face-card-body { padding: 1rem; }
.face-card h3 { font-size: 1.2rem; margin: 0; }
.face-card p { color: var(--muted); margin: .25rem 0 0; font-size: .92rem; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 6vw, 5rem); align-items: start; }
.panel { background: white; border: 3px solid var(--ink); border-radius: var(--radius); padding: clamp(1.2rem, 3vw, 2rem); box-shadow: var(--shadow); }
.panel-cyan { background: var(--cyan-soft); }
.panel-gold { background: #fff8d7; }
.panel h3 { margin-top: 0; font-size: 1.45rem; }
.fun-quote { font-family: 'Courgette', 'Trebuchet MS', cursive; font-size: clamp(1.8rem, 4vw, 3rem); line-height: 1.15; margin: 0; }

.steps { counter-reset: step; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.step { position: relative; background: white; border: 3px solid var(--ink); border-radius: 15px; padding: 1.3rem; }
.step::before { counter-increment: step; content: counter(step); width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; background: var(--cyan); border: 2px solid var(--ink); font-weight: 900; margin-bottom: .8rem; }
.step h3 { margin: 0 0 .4rem; }
.step p { margin: 0; color: var(--muted); }

.challenge-box { display: grid; grid-template-columns: 1fr auto; gap: 1rem; align-items: center; background: var(--cyan); border: 3px solid var(--ink); border-radius: var(--radius); padding: clamp(1.3rem, 4vw, 2.5rem); box-shadow: var(--shadow); }
.challenge-text { font-family: 'Courgette', 'Trebuchet MS', cursive; font-size: clamp(1.35rem, 3vw, 2rem); margin: .4rem 0 0; }

.ticker { overflow: hidden; border-block: 3px solid var(--ink); background: var(--cyan); }
.ticker-track { display: flex; width: max-content; animation: ticker 26s linear infinite; padding: .65rem 0; font-weight: 900; }
.ticker-track span { padding-right: 4rem; }
@keyframes ticker { to { transform: translateX(-50%); } }

.page-hero { padding: 3.6rem 0 2.5rem; border-bottom: 3px solid var(--ink); background: var(--cyan-soft); }
.page-hero h1 { font-family: 'Courgette', 'Trebuchet MS', cursive; font-size: clamp(2.8rem, 7vw, 5.5rem); line-height: 1; margin: 0; }
.page-hero p { max-width: 720px; font-size: 1.1rem; margin-bottom: 0; }

.rule-grid, .rubric-grid, .arcade-grid, .prize-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
.rule-card, .rubric-card, .arcade-card, .prize-card { background: white; border: 3px solid var(--ink); border-radius: var(--radius); padding: 1.25rem; box-shadow: 4px 4px 0 var(--ink); }
.rule-number { font-size: .8rem; text-transform: uppercase; font-weight: 900; letter-spacing: .1em; color: var(--muted); }
.rule-card h3, .rubric-card h3, .arcade-card h3, .prize-card h3 { margin: .25rem 0 .5rem; }
.rubric-card:nth-child(1) { background: #eafff4; }
.rubric-card:nth-child(2) { background: #fff4fb; }
.rubric-card:nth-child(3) { background: #fff8d7; }
.rubric-card:nth-child(4) { background: var(--cyan-soft); }

.gallery-wide { width: 100%; border-block: 3px solid var(--ink); object-fit: cover; min-height: 115px; }

.prize-card img { width: 100%; max-height: 430px; object-fit: contain; background: #f5f5f5; border: 2px solid var(--ink); border-radius: 10px; margin-bottom: 1rem; }
.prize-card-wide { grid-column: 1 / -1; }

.arcade-card { display: flex; flex-direction: column; }
.arcade-card .tag { align-self: flex-start; background: var(--gold); border: 2px solid var(--ink); border-radius: 999px; padding: .2rem .55rem; font-size: .75rem; font-weight: 900; text-transform: uppercase; }
.arcade-card p { color: var(--muted); flex: 1; }

.notice { border-left: 7px solid var(--cyan); background: white; padding: 1rem 1.2rem; }

.ballot { max-width: 760px; margin-inline: auto; }
.ballot-top { display: flex; gap: 1rem; justify-content: space-between; align-items: center; flex-wrap: wrap; margin-bottom: 1rem; }
.votes-left { font-weight: 900; background: var(--gold); border: 2px solid var(--ink); border-radius: 999px; padding: .35rem .75rem; }
.vote-grid { display: grid; gap: .8rem; }
.vote-row { display: grid; grid-template-columns: 90px 1fr auto; gap: 1rem; align-items: center; background: white; border: 2px solid var(--ink); border-radius: 14px; padding: .7rem; }
.vote-row img { width: 90px; height: 65px; object-fit: cover; border-radius: 8px; border: 2px solid var(--ink); }
.vote-controls { display: flex; align-items: center; gap: .55rem; }
.vote-controls button { width: 38px; height: 38px; border-radius: 9px; border: 2px solid var(--ink); background: var(--cyan); font-weight: 900; cursor: pointer; }
.vote-count { min-width: 1.2rem; text-align: center; font-weight: 900; }

.form-field { display: grid; gap: .35rem; margin-bottom: 1rem; }
.form-field label { font-weight: 800; }
.form-field input, .form-field textarea { width: 100%; border: 2px solid var(--ink); border-radius: 10px; padding: .7rem; background: white; }
.form-field textarea { min-height: 120px; resize: vertical; }

.site-footer { padding: 2.2rem 0; background: var(--ink); color: white; }
.footer-grid { display: flex; gap: 1.5rem; justify-content: space-between; align-items: center; flex-wrap: wrap; }
.site-footer a { color: var(--cyan); }
.secret-link { text-decoration: none; opacity: .35; transition: opacity .2s; }
.secret-link:hover, .secret-link:focus-visible { opacity: 1; }

@media (max-width: 900px) {
  .menu-button { display: inline-block; }
  .site-nav { display: none; position: absolute; left: 0; right: 0; top: 100%; background: var(--cyan); border-bottom: 3px solid var(--ink); padding: .7rem 1rem 1rem; }
  .site-nav.is-open { display: block; }
  .site-nav ul { flex-direction: column; align-items: stretch; max-width: var(--content); margin: 0 auto; }
  .site-nav a { text-align: center; border-radius: 8px; }
  .hero-grid, .split { grid-template-columns: 1fr; }
  .hero-art { max-width: 700px; }
  .face-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
}

@media (max-width: 650px) {
  .nav-wrap { min-height: 66px; }
  .logo span { display: none; }
  .hero { padding-top: 2rem; }
  .hero h1 { font-size: clamp(3.1rem, 17vw, 5rem); }
  .hero-stamp { width: 86px; font-size: .78rem; right: -.25rem; }
  .face-grid, .rule-grid, .rubric-grid, .arcade-grid, .prize-grid { grid-template-columns: 1fr; }
  .face-card:nth-child(n) { transform: none; }
  .challenge-box { grid-template-columns: 1fr; }
  .vote-row { grid-template-columns: 70px 1fr; }
  .vote-row img { width: 70px; height: 58px; }
  .vote-controls { grid-column: 1 / -1; justify-content: flex-end; }
  .prize-card-wide { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .ticker-track { animation: none; }
  .button { transition: none; }
}
