* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Comic Sans MS", "Trebuchet MS", Arial, sans-serif;
  background: #f6f5ee;
  color: #101010;
  line-height: 1.4;
  background-image:
    linear-gradient(transparent 24px, rgba(0, 0, 0, 0.05) 25px),
    linear-gradient(90deg, transparent 24px, rgba(0, 0, 0, 0.05) 25px);
  background-size: 25px 25px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 16px;
  background: #fff9c4;
  border-bottom: 4px dashed #111;
}

.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.2rem;
  font-weight: 900;
  transform: rotate(-1deg);
}

.logo {
  width: 40px;
  height: 40px;
  border: 3px solid #111;
  border-radius: 50%;
  object-fit: cover;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

nav a {
  color: #111;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 3px solid #111;
  transform: rotate(1deg);
}

main {
  max-width: 980px;
  margin: 0 auto;
  padding: 16px;
}

.panel {
  background: #fff;
  border: 4px solid #111;
  box-shadow: 7px 7px 0 #111;
  padding: 18px;
  margin-bottom: 20px;
  transform: rotate(-0.4deg);
}

.hero {
  background: #ffedf1;
}

.banner {
  width: 100%;
  border: 4px solid #111;
  margin-bottom: 12px;
}

h1, h2, h3 {
  margin-top: 0;
}

h1 {
  font-size: clamp(2rem, 8vw, 4rem);
  margin-bottom: 0;
  text-transform: uppercase;
  text-decoration: underline;
  text-decoration-thickness: 4px;
}

h2 {
  margin: 8px 0 12px;
  font-size: clamp(1rem, 2.7vw, 1.5rem);
}

h3 {
  font-size: 1.6rem;
  text-transform: lowercase;
  display: inline-block;
  border-bottom: 4px dotted #111;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.btn {
  display: inline-block;
  border: 3px solid #111;
  background: #b4ff3d;
  color: #111;
  font-weight: 900;
  text-decoration: none;
  padding: 8px 14px;
  box-shadow: 4px 4px 0 #111;
  transform: rotate(-1deg);
}

.btn:hover {
  transform: rotate(1deg) translateY(-1px);
}

.btn.ghost {
  background: #b0e7ff;
}

.btn.tiny {
  padding: 6px 10px;
  font-size: 0.85rem;
}

.ca {
  margin-top: 14px;
  font-size: 0.75rem;
  font-weight: 700;
  word-break: break-all;
  border: 2px dashed #111;
  padding: 8px;
  background: #fff;
}

.bigline {
  font-size: 1.2rem;
  font-weight: 800;
  background: #fffa65;
  padding: 8px;
  border: 3px dashed #111;
}

.embed-wrap {
  width: 100%;
  min-height: 420px;
  border: 4px solid #111;
  overflow: hidden;
  background: #0f1320;
}

.embed-wrap iframe {
  width: 100%;
  min-height: 420px;
}

ol {
  padding-left: 22px;
}

ol li {
  margin-bottom: 8px;
  font-weight: 700;
}

.tiny-note {
  font-size: 0.85rem;
  opacity: 0.8;
}

.footerish {
  max-width: 980px;
  margin: 0 auto 30px;
  text-align: center;
  font-weight: 900;
  transform: rotate(0.3deg);
  background: #d5ffd4;
}

@media (max-width: 680px) {
  .topbar {
    position: static;
  }

  .panel {
    box-shadow: 4px 4px 0 #111;
  }
}
