:root {
  --bg: #f7f5ef;
  --paper: #fbfaf6;
  --ink: #111111;
  --muted: #65625b;
  --line: #d7d2c7;
  --soft-line: #ebe6dc;
  --red: #e21f26;
  --red-dark: #b81419;
  --black: #070707;
  --white: #ffffff;
  --mono: "Courier New", Courier, monospace;
  --sans: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 15px;
  line-height: 1.45;
}

a {
  color: inherit;
  text-decoration: none;
}

.wrap {
  width: min(1480px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 245, 239, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.header-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: clamp(22px, 2.4vw, 34px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.04em;
}

.brand-slash {
  color: var(--red);
  font-family: var(--mono);
  font-weight: 900;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.5vw, 44px);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.main-nav a {
  padding: 8px 0;
}

.main-nav a:not(.nav-claim)::before {
  content: "[";
  color: var(--muted);
  margin-right: 3px;
}

.main-nav a:not(.nav-claim)::after {
  content: "]";
  color: var(--muted);
  margin-left: 3px;
}

.nav-claim {
  background: var(--black);
  color: var(--white);
  padding: 12px 28px !important;
  border-radius: 3px;
  box-shadow: inset 0 -3px 0 var(--red);
}

.menu-button {
  display: none;
  width: 42px;
  height: 38px;
  border: 0;
  background: transparent;
  padding: 0;
}

.menu-button span {
  display: block;
  height: 2px;
  margin: 7px 0;
  background: var(--ink);
}

.hero {
  background:
    linear-gradient(to bottom, rgba(255,255,255,0.35), rgba(247,245,239,0.9) 72%),
    radial-gradient(circle at 20% 20%, rgba(188, 218, 239, 0.8), transparent 28%),
    radial-gradient(circle at 82% 18%, rgba(191, 222, 242, 0.65), transparent 30%),
    linear-gradient(180deg, #dcecf6 0%, #f7f5ef 66%);
  border-bottom: 1px solid var(--line);
}

.hero-meta {
  padding: 20px 0 10px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
}

.hero-meta p {
  margin: 0;
}

.status {
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.status span {
  width: 12px;
  height: 12px;
  background: var(--red);
  border-radius: 999px;
  display: inline-block;
}

.billboard-wrap {
  position: relative;
  padding: 34px 0 12px;
}

.billboard-lights {
  position: absolute;
  top: 8px;
  left: 12%;
  right: 12%;
  display: flex;
  justify-content: space-around;
  pointer-events: none;
}

.billboard-lights span {
  position: relative;
  width: 28px;
  height: 12px;
  background: #181818;
  border: 2px solid #2b2b2b;
  border-radius: 2px;
  box-shadow: 0 2px 0 rgba(0,0,0,0.22);
}

.billboard-lights span::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 12px;
  width: 4px;
  height: 28px;
  background: #222;
}

.billboard {
  position: relative;
  width: 100%;
  min-height: clamp(390px, 45vw, 670px);
  display: grid;
  place-items: center;
}

.billboard-face {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: clamp(340px, 39vw, 580px);
  padding: clamp(36px, 5vw, 80px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(90deg, rgba(255,255,255,0), rgba(0,0,0,0.025), rgba(255,255,255,0)),
    repeating-linear-gradient(0deg, rgba(0,0,0,0.018) 0, rgba(0,0,0,0.018) 1px, transparent 1px, transparent 18px),
    repeating-linear-gradient(90deg, rgba(0,0,0,0.014) 0, rgba(0,0,0,0.014) 1px, transparent 1px, transparent 18px),
    #fffef8;
  border: clamp(8px, 1.1vw, 16px) solid #101010;
  box-shadow:
    0 20px 30px rgba(0,0,0,0.25),
    inset 0 0 0 1px rgba(0,0,0,0.08);
  text-align: center;
}

.billboard-title {
  margin: 0;
  max-width: 1100px;
  font-family: var(--sans);
  font-size: clamp(64px, 10.2vw, 182px);
  line-height: 0.9;
  font-weight: 950;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

.billboard-subtitle {
  margin: clamp(28px, 3vw, 44px) 0 0;
  font-size: clamp(18px, 2vw, 36px);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.billboard-subtitle::before {
  content: "/";
  display: block;
  color: var(--red);
  font-weight: 900;
  font-size: 1.3em;
  line-height: 1;
  margin-bottom: 14px;
}

.billboard-url {
  margin: clamp(18px, 1.8vw, 30px) 0 0;
  font-size: clamp(17px, 1.5vw, 28px);
  font-weight: 900;
  text-transform: uppercase;
}

.billboard-tag {
  position: absolute;
  z-index: 4;
  right: 28px;
  bottom: 65px;
  background: #111;
  color: #fff;
  border: 1px solid #555;
  border-radius: 3px;
  padding: 8px 14px;
  font-size: clamp(13px, 1.2vw, 18px);
}

.billboard-rail {
  position: absolute;
  z-index: 1;
  left: 3%;
  right: 3%;
  bottom: 42px;
  height: 24px;
  border-top: 9px solid #101010;
  border-bottom: 7px solid #101010;
  background:
    repeating-linear-gradient(90deg, #111 0, #111 7px, transparent 7px, transparent 82px);
}

.billboard-post {
  position: absolute;
  z-index: 0;
  bottom: 0;
  width: 76px;
  height: 92px;
  background: linear-gradient(90deg, #0c0c0c, #252525, #080808);
}

.claim-strip {
  margin: 22px 0 28px;
  background: rgba(255,255,255,0.82);
  border: 1px solid var(--line);
  box-shadow: 0 12px 36px rgba(0,0,0,0.08);
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.1fr 1.7fr;
  align-items: stretch;
}

.claim-heading,
.claim-stat,
.claim-action {
  padding: clamp(18px, 2vw, 28px);
  border-right: 1px solid var(--line);
}

.claim-action {
  border-right: 0;
}

.claim-heading h1 {
  margin: 0 0 8px;
  font-size: clamp(18px, 1.4vw, 24px);
  text-transform: uppercase;
}

.claim-heading p,
.claim-action p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 700;
}

.claim-stat span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 700;
}

.claim-stat strong {
  display: block;
  margin-top: 10px;
  font-size: clamp(28px, 3.2vw, 56px);
  line-height: 1;
}

.next-price strong {
  color: var(--red);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  width: 100%;
  padding: 16px 22px;
  background: var(--red);
  color: var(--white);
  border: 0;
  border-radius: 5px;
  box-shadow: inset 0 -3px 0 var(--red-dark);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.claim-action .button {
  margin-bottom: 12px;
}

.content {
  padding: 28px 0 40px;
}

.info-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.25fr 0.95fr;
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.panel {
  padding: clamp(24px, 3vw, 40px);
  border-right: 1px solid var(--line);
}

.panel:last-child {
  border-right: 0;
}

.panel h2 {
  margin: 0 0 22px;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.panel h2::after {
  content: "";
  display: block;
  width: 26px;
  height: 2px;
  background: var(--red);
  margin-top: 10px;
}

.panel h2 span {
  color: var(--muted);
  font-size: 14px;
}

.panel p {
  margin: 0 0 18px;
}

.panel-icon {
  width: 44px;
  height: 44px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  color: var(--red);
}

.steps {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
}

.steps li {
  margin: 0 0 12px;
}

.steps span {
  color: var(--red);
  font-weight: 900;
  margin-right: 7px;
}

.text-link {
  color: var(--red);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 13px;
}

.panel-heading {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-start;
}

.archive-table {
  border: 1px solid var(--ink);
  background: var(--paper);
  margin: 8px 0 16px;
}

.archive-row,
.archive-empty {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr 1fr;
  gap: 12px;
  padding: 14px 18px;
}

.archive-head {
  border-bottom: 1px solid var(--ink);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 13px;
}

.archive-empty {
  align-items: center;
  min-height: 114px;
}

.archive-empty strong,
.archive-empty em {
  display: block;
  font-style: normal;
  font-size: 20px;
  text-transform: uppercase;
}

.archive-empty em {
  color: var(--red);
}

.folder {
  width: 72px;
  height: 48px;
  border: 2px solid var(--ink);
  border-radius: 3px;
  position: relative;
}

.folder::before {
  content: "";
  position: absolute;
  top: -13px;
  left: -2px;
  width: 34px;
  height: 13px;
  border: 2px solid var(--ink);
  border-bottom: 0;
  border-radius: 3px 3px 0 0;
  background: var(--paper);
}

.small-copy {
  color: var(--muted);
  font-size: 13px;
}

.lower-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--line);
}

.lower-grid .panel {
  border-top: 0;
}

.ladder {
  color: var(--red);
  font-weight: 900;
}

details {
  border-top: 1px solid var(--line);
  padding: 14px 0;
}

details:last-child {
  border-bottom: 1px solid var(--line);
}

summary {
  cursor: pointer;
  font-weight: 900;
  text-transform: uppercase;
}

details p {
  margin-top: 12px !important;
  color: var(--muted);
}

.full-rules {
  border: 0;
  border-bottom: 1px solid var(--line);
  border-right: 0;
}

.site-footer {
  padding: 22px 0 36px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr auto 1fr auto;
  align-items: end;
  gap: 34px;
  color: var(--muted);
  font-size: 13px;
}

.footer-inner p {
  margin: 0 0 4px;
}

.footer-inner a {
  color: var(--ink);
}

.visitor-counter {
  display: flex;
  align-items: center;
  gap: 12px;
  text-transform: uppercase;
}

.visitor-counter strong {
  display: inline-block;
  padding: 7px 12px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  font-size: 20px;
  letter-spacing: 0.25em;
  font-weight: 400;
}

.socials {
  display: flex;
  gap: 16px;
  align-items: center;
  text-transform: uppercase;
  font-weight: 900;
}

/* Mobile */
@media (max-width: 900px) {
  .wrap {
    width: min(100% - 22px, 640px);
  }

  .header-inner {
    min-height: 62px;
  }

  .brand {
    font-size: 20px;
  }

  .main-nav {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .hero-meta {
    display: block;
    padding-top: 16px;
  }

  .hero-meta p + p {
    margin-top: 8px;
  }

  .billboard-wrap {
    padding-top: 32px;
  }

  .billboard-lights {
    left: 18%;
    right: 18%;
  }

  .billboard-lights span {
    width: 18px;
    height: 9px;
  }

  .billboard-lights span:nth-child(4) {
    display: none;
  }

  .billboard {
    min-height: 300px;
  }

  .billboard-face {
    min-height: 260px;
    padding: 28px 18px;
    border-width: 8px;
  }

  .billboard-title {
    font-size: clamp(42px, 12vw, 72px);
    line-height: 0.92;
  }

  .billboard-subtitle {
    font-size: 15px;
    letter-spacing: 0.05em;
  }

  .billboard-url {
    font-size: 14px;
  }

  .billboard-tag {
    right: 14px;
    bottom: 46px;
    font-size: 11px;
    padding: 5px 8px;
  }

  .billboard-rail {
    left: 5%;
    right: 5%;
    bottom: 32px;
    height: 17px;
  }

  .billboard-post {
    width: 46px;
    height: 58px;
  }

  .claim-strip {
    margin-top: 12px;
    grid-template-columns: 1fr;
  }

  .claim-heading,
  .claim-stat,
  .claim-action {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 18px;
  }

  .claim-action {
    border-bottom: 0;
  }

  .claim-stat {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
  }

  .claim-stat strong {
    margin: 0;
    font-size: 32px;
  }

  .info-grid,
  .lower-grid {
    grid-template-columns: 1fr;
    border-top: 0;
  }

  .panel {
    border-right: 0;
    border-top: 1px solid var(--line);
    padding: 24px 18px;
  }

  .panel-heading {
    display: block;
  }

  .archive-row {
    display: none;
  }

  .archive-empty {
    grid-template-columns: 72px 1fr;
  }

  .archive-empty > span {
    display: none;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .visitor-counter {
    display: block;
  }

  .visitor-counter span {
    display: block;
    margin-bottom: 8px;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 14px;
  }

  .brand {
    font-size: 17px;
  }

  .billboard-title {
    font-size: 44px;
  }

  .billboard-face {
    min-height: 235px;
  }

  .button {
    min-height: 54px;
  }
}