:root {
  --bg: #0a0907;
  --fg: #e8e0c8;
  --red: #E10000;
  --red-deep: #6B0000;
  --concrete: #1a1815;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: 'Inter', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body {
  background:
    radial-gradient(ellipse at 30% 0%, rgba(225, 0, 0, 0.06), transparent 50%),
    repeating-linear-gradient(
      0deg,
      var(--bg) 0 60px,
      var(--concrete) 60px 61px
    ),
    repeating-linear-gradient(
      90deg,
      var(--bg) 0 90px,
      var(--concrete) 90px 91px
    );
}

main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 32px 80px;
  min-height: 100vh;
  position: relative;
}

main::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(circle at 12% 18%, rgba(255,255,255,0.03) 0 1px, transparent 1px),
    radial-gradient(circle at 80% 60%, rgba(255,255,255,0.04) 0 1px, transparent 1px),
    radial-gradient(circle at 40% 90%, rgba(255,255,255,0.03) 0 1px, transparent 1px);
  background-size: 200px 200px, 250px 250px, 180px 180px;
  pointer-events: none;
  opacity: 0.5;
}

.wall { position: relative; z-index: 1; }

.tag {
  font-family: 'Permanent Marker', 'Brush Script MT', cursive;
  font-weight: 400;
  font-size: clamp(72px, 16vw, 220px);
  line-height: 0.85;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
  text-transform: uppercase;
  color: var(--red);
  text-shadow:
    3px 3px 0 #000,
    6px 6px 0 rgba(0,0,0,0.5),
    0 0 24px rgba(225, 0, 0, 0.5);
}

.tag span { display: block; }

.tag .line-1 { transform: rotate(-2deg); margin-left: -10px; }
.tag .line-2 { transform: rotate(1deg); color: var(--fg); text-shadow: 3px 3px 0 var(--red-deep), 6px 6px 0 #000; }
.tag .line-3 { transform: rotate(-1.5deg); margin-left: 30px; position: relative; }

.tag .line-3::after {
  content: "";
  position: absolute;
  bottom: -12px; left: 0;
  width: 60%;
  height: 18px;
  background: linear-gradient(180deg, var(--red), transparent);
  filter: blur(3px);
  opacity: 0.7;
}

.drip {
  font-family: 'Permanent Marker', cursive;
  font-size: clamp(20px, 3vw, 32px);
  margin: 36px 0 48px;
  color: var(--fg);
  transform: rotate(-1deg);
  display: inline-block;
  border-bottom: 4px solid var(--red);
  padding-bottom: 6px;
}

.poster {
  display: flex;
  align-items: center;
  gap: 24px;
  background: var(--fg);
  color: #1a1815;
  padding: 22px;
  margin: 0 0 40px;
  max-width: 720px;
  transform: rotate(-1.4deg);
  box-shadow:
    8px 8px 0 var(--red),
    8px 8px 0 4px #000;
  border: 2px solid #000;
}

.poster img {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  border: 2px solid #000;
  flex-shrink: 0;
}

.poster-eyebrow {
  margin: 0 0 4px;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 700;
}

.poster-name {
  margin: 0 0 8px;
  font-family: 'Permanent Marker', cursive;
  font-size: 22px;
  font-weight: 400;
}

.poster-text {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
}

.numbers {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin: 0 0 40px;
}

.numbers p {
  margin: 0;
  display: flex;
  align-items: baseline;
  gap: 14px;
  transform: rotate(-1deg);
}

.numbers p:nth-child(2) { transform: rotate(1.5deg); }

.numbers span {
  font-family: 'Permanent Marker', cursive;
  font-size: clamp(48px, 8vw, 96px);
  color: var(--red);
  line-height: 1;
  text-shadow: 3px 3px 0 #000;
}

.numbers em {
  font-family: 'Permanent Marker', cursive;
  font-style: normal;
  font-size: clamp(20px, 2.4vw, 28px);
  color: var(--fg);
  border-bottom: 3px solid var(--red);
}

.cta-block { margin: 0 0 40px; }

.spray {
  display: inline-block;
  background: var(--red);
  color: #000;
  padding: 22px 44px;
  font-family: 'Permanent Marker', cursive;
  font-size: clamp(28px, 4vw, 44px);
  text-decoration: none;
  letter-spacing: 0.04em;
  transform: rotate(-2deg);
  border: 4px solid #000;
  box-shadow: 6px 6px 0 #000, 6px 6px 0 8px rgba(225,0,0,0.4);
  position: relative;
}

.spray::before {
  content: "★";
  position: absolute;
  top: -18px;
  right: -10px;
  background: var(--fg);
  color: var(--red);
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 2px solid #000;
  transform: rotate(15deg);
}

.spray:hover { background: #ff1a1a; }

.scrawl {
  list-style: none;
  margin: 0 0 40px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 20px;
}

.scrawl a {
  font-family: 'Permanent Marker', cursive;
  font-size: clamp(18px, 2.4vw, 26px);
  color: var(--fg);
  text-decoration: none;
  border-bottom: 3px solid var(--red);
  padding-bottom: 2px;
  display: inline-block;
}

.scrawl a:hover { color: var(--red); }

.scrawl li:nth-child(odd) a { transform: rotate(-1deg); }
.scrawl li:nth-child(even) a { transform: rotate(1deg); }

.footer {
  font-family: ui-monospace, Menlo, monospace;
  font-size: 12px;
  color: var(--fg);
  opacity: 0.7;
  letter-spacing: 0.08em;
  border-top: 1px dashed var(--red);
  padding-top: 18px;
}

.footer code {
  background: var(--red);
  color: #000;
  padding: 1px 6px;
  font-weight: 700;
}
