@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=Barlow+Condensed:wght@400;500;600;700;800&family=Special+Elite&display=swap');

:root {
  --red: rgb(219, 6, 29);
  --red-soft: rgba(219, 6, 29, 0.18);
  --red-border: rgba(219, 6, 29, 0.58);
  --black: #030303;
  --panel: #09090a;
  --white: #f7f4f5;
  --muted: #bbb5b8;
  --muted-2: #8f888c;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--white);
  background:
    radial-gradient(circle at 12% 4%, rgba(219, 6, 29, 0.13), transparent 24rem),
    radial-gradient(circle at 88% 36%, rgba(219, 6, 29, 0.08), transparent 28rem),
    linear-gradient(135deg, #000, #080809 48%, #000);
  font-family: "Barlow Condensed", Arial, sans-serif;
  text-transform: uppercase;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: 0.12;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle, black 0%, transparent 76%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.085;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}

main,
footer {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

main {
  padding: 34px 0;
}

.section-frame,
.quick-facts > div,
.game-card {
  border: 1px solid var(--red-border);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.046), rgba(255,255,255,0.01)),
    repeating-linear-gradient(-8deg, transparent 0 22px, rgba(219,6,29,0.016) 23px 24px);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.045) inset,
    0 20px 60px rgba(0,0,0,0.5);
}

.section-frame {
  border-radius: 24px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(380px, 1.05fr);
  gap: clamp(24px, 5vw, 62px);
  align-items: center;
  min-height: 620px;
  padding: clamp(26px, 5vw, 64px);
  overflow: hidden;
}

.pill {
  width: fit-content;
  margin: 0 0 18px;
  padding: 9px 16px;
  border: 1px solid var(--red);
  border-radius: 999px;
  color: var(--red);
  background: rgba(0,0,0,0.58);
  font-weight: 800;
  letter-spacing: 0.15em;
  font-size: 1.08rem;
}

.hero-logo {
  display: block;
  width: min(100%, 650px);
  height: auto;
  margin-left: -8px;
  filter: drop-shadow(6px 8px 0 rgba(0,0,0,0.82));
}

.hero-subtitle {
  width: fit-content;
  max-width: 620px;
  margin: 24px 0 0;
  padding: 14px 20px;
  border: 1px solid var(--red);
  border-radius: 10px;
  color: var(--white);
  background: rgba(0,0,0,0.68);
  font-family: "Special Elite", monospace;
  font-size: clamp(1.25rem, 2.1vw, 1.72rem);
  line-height: 1.08;
  text-transform: none;
  transform: rotate(-1.4deg);
}

.hero-text,
.split-section p,
.hostile-section p,
.signup p,
.score-grid p,
footer p {
  color: var(--muted);
  font-size: clamp(1.15rem, 1.7vw, 1.34rem);
  line-height: 1.16;
  text-transform: none;
}

.hero-text {
  max-width: 560px;
  margin: 26px 0 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid var(--red);
  border-radius: 8px;
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-decoration: none;
}

.button.primary {
  color: var(--white);
  background: #050505;
  box-shadow: 0 0 18px rgba(219,6,29,0.26);
}

.button.secondary {
  color: var(--red);
  background: rgba(0,0,0,0.5);
}

.hero-art img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 35px rgba(0,0,0,0.65));
}

.quick-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.quick-facts > div {
  padding: 18px;
  border-radius: 16px;
  text-align: center;
}

.quick-facts strong {
  display: block;
  color: var(--red);
  font-size: clamp(1.65rem, 4vw, 2.7rem);
  line-height: 1;
  font-family: "Archivo Black", Impact, sans-serif;
}

.quick-facts span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 1.04rem;
}

.box-section {
  margin-top: 18px;
  padding: clamp(10px, 2vw, 18px);
}

.box-section img,
.gallery img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(300px, 1.12fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: center;
  margin-top: 18px;
  padding: clamp(26px, 5vw, 54px);
}

.section-kicker {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

h1 {
  margin: 0;
  color: var(--white);
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: clamp(2.25rem, 4.7vw, 4.55rem);
  line-height: 0.92;
  letter-spacing: -0.045em;
}

.split-section p,
.hostile-section p,
.signup p {
  margin: 22px 0 0;
}

.steps {
  display: grid;
  gap: 14px;
}

.steps article,
.score-grid article {
  position: relative;
  padding: 20px 20px 18px 74px;
  border: 1px solid var(--red-border);
  border-radius: 16px;
  background: rgba(0,0,0,0.48);
}

.steps span {
  position: absolute;
  left: 18px;
  top: 20px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  color: var(--white);
  background: #050505;
  font-size: 1.25rem;
  font-weight: 900;
}

h2 {
  margin: 0 0 6px;
  color: var(--red);
  font-size: 1.55rem;
  line-height: 1;
  font-style: italic;
}

.steps p,
.game-card p {
  margin: 0;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.14;
  text-transform: none;
}

.card-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 18px;
}

.game-card {
  min-height: 245px;
  padding: 24px;
  border-radius: 18px;
}

.game-card h2 {
  color: var(--white);
  font-size: clamp(1.7rem, 4vw, 2.5rem);
}

.incident-card,
.sabotage-card {
  background:
    linear-gradient(135deg, rgba(0,0,0,0.9), rgba(255,255,255,0.035)),
    repeating-linear-gradient(-8deg, transparent 0 22px, rgba(219,6,29,0.014) 23px 24px);
}

.alibi-card {
  color: #050505;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.92), rgba(198,198,198,0.9)),
    repeating-linear-gradient(40deg, transparent 0 12px, rgba(0,0,0,0.05) 13px 15px);
}

.alibi-card h2,
.alibi-card p {
  color: #050505;
}

.sabotage-card {
  background:
    linear-gradient(135deg, var(--red), #790026),
    repeating-linear-gradient(-8deg, transparent 0 22px, rgba(0,0,0,0.04) 23px 24px);
}

.sabotage-card h2,
.sabotage-card p {
  color: var(--white);
}

.hostile-section {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: center;
  margin-top: 18px;
  padding: clamp(22px, 5vw, 54px);
}

.hostile-image img {
  display: block;
  width: min(100%, 380px);
  margin: 0 auto;
  height: auto;
  filter: drop-shadow(0 20px 30px rgba(0,0,0,0.7));
}

.scoring {
  margin-top: 18px;
  padding: clamp(26px, 5vw, 54px);
}

.score-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 24px;
}

.score-grid article {
  min-height: 190px;
  padding: 20px;
}

.score-grid strong {
  display: block;
  color: var(--white);
  font-size: 1.4rem;
  line-height: 1;
}

.score-grid span {
  display: block;
  width: fit-content;
  margin: 10px 0 14px;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--white);
  background: #050505;
  font-size: 1rem;
  font-weight: 900;
}

.gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 18px;
}

.gallery img {
  border: 1px solid var(--red-border);
  background: #000;
}

.signup {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  gap: clamp(20px, 4vw, 42px);
  align-items: end;
  margin-top: 18px;
  padding: clamp(26px, 5vw, 54px);
}

form {
  margin: 0;
}

label {
  display: block;
  margin-bottom: 8px;
  color: var(--red);
  font-size: 1.12rem;
  font-weight: 900;
}

.form-row {
  display: flex;
  gap: 10px;
}

input,
button {
  min-height: 52px;
  border-radius: 8px;
  font: inherit;
}

input {
  flex: 1;
  min-width: 0;
  padding: 0 14px;
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--white);
  background: #050505;
  font-size: 1.1rem;
  text-transform: none;
}

button {
  padding: 0 20px;
  border: 1px solid var(--red);
  color: var(--white);
  background: #050505;
  font-size: 1.1rem;
  font-weight: 900;
  cursor: pointer;
}

.form-note {
  margin-top: 10px !important;
  color: var(--muted-2) !important;
  font-size: 0.95rem !important;
}

footer {
  padding: 0 0 34px;
  text-align: center;
}

@media (max-width: 980px) {
  .hero,
  .split-section,
  .hostile-section,
  .signup {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-art {
    max-width: 780px;
    margin: 0 auto;
  }

  .score-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  main,
  footer {
    width: min(100% - 22px, 1180px);
  }

  main {
    padding-top: 22px;
  }

  .hero {
    padding: 24px 18px 18px;
  }

  .hero-logo {
    width: min(100%, 460px);
    margin-left: -4px;
  }

  .hero-subtitle {
    padding: 11px 13px;
    font-size: 1.05rem;
  }

  .hero-text {
    font-size: 1.08rem;
  }

  .hero-art {
    display: none;
  }

  .quick-facts {
    grid-template-columns: repeat(2, 1fr);
  }

  .box-section {
    padding: 7px;
  }

  .card-section {
    grid-template-columns: 1fr;
  }

  .game-card {
    min-height: auto;
  }

  .gallery {
    grid-template-columns: 1fr;
  }

  .score-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    flex-direction: column;
  }

  .button,
  button {
    width: 100%;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 430px) {
  main,
  footer {
    width: min(100% - 16px, 1180px);
  }

  .section-frame,
  .game-card,
  .quick-facts > div {
    border-radius: 16px;
  }

  .hero-actions {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: clamp(2rem, 12vw, 3rem);
  }

  .quick-facts {
    gap: 10px;
  }

  .quick-facts > div {
    padding: 14px 10px;
  }

  .steps article {
    padding: 18px 16px 16px 64px;
  }

  .steps span {
    left: 16px;
    width: 34px;
    height: 34px;
  }
}


/* Rebuild edits */
.hostile-section {
  grid-template-columns: minmax(360px, 0.95fr) minmax(0, 1.05fr);
}

.hostile-image img {
  width: min(100%, 560px);
  max-width: none;
}

/* Removed gallery from HTML; this is left harmless if old cache appears */
.gallery {
  display: none;
}

/* Example cards now use real box-front examples, so give them stronger card-like structure */
.game-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.game-card h2 {
  margin-bottom: 18px;
}

.game-card p {
  font-size: clamp(1.25rem, 2.2vw, 1.7rem);
  line-height: 1.16;
  font-weight: 600;
}

@media (max-width: 980px) {
  .hostile-section {
    grid-template-columns: 1fr;
  }

  .hostile-image img {
    width: min(100%, 620px);
  }
}

@media (max-width: 760px) {
  .hostile-image img {
    width: min(100%, 560px);
  }

  .game-card p {
    font-size: 1.32rem;
  }
}


/* Round 2 rebuild edits */

/* How it works: fuller 6-step rule flow */
.six-steps {
  grid-template-columns: 1fr;
  gap: 10px;
}

.six-steps article {
  min-height: auto;
  padding: 15px 16px 14px 62px;
}

.six-steps span {
  left: 16px;
  top: 15px;
  width: 32px;
  height: 32px;
  font-size: 1.05rem;
}

.six-steps h2 {
  font-size: 1.22rem;
  margin-bottom: 4px;
}

.six-steps p {
  font-size: 1.02rem;
  line-height: 1.12;
}

/* Product image: smaller, premium, centred */
.box-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: clamp(24px, 4vw, 44px);
}

.box-section img {
  width: min(100%, 980px);
  margin: 0 auto;
  border-radius: 16px;
}

/* Hostile section: prevent headline overflow while keeping mascot large */
.hostile-section {
  grid-template-columns: minmax(340px, 0.88fr) minmax(0, 1.12fr);
  overflow: hidden;
}

.hostile-section h1 {
  font-size: clamp(2.15rem, 4.1vw, 4.1rem);
  line-height: 0.93;
  letter-spacing: -0.045em;
  max-width: 100%;
  overflow-wrap: normal;
}

.hostile-section p {
  max-width: 680px;
}

.hostile-image img {
  width: min(100%, 600px);
}

@media (max-width: 980px) {
  .split-section {
    grid-template-columns: 1fr;
  }

  .six-steps {
    grid-template-columns: 1fr 1fr;
  }

  .hostile-section {
    grid-template-columns: 1fr;
  }

  .hostile-section h1 {
    font-size: clamp(2.15rem, 8vw, 4.2rem);
  }

  .hostile-image img {
    width: min(100%, 620px);
  }
}

@media (max-width: 760px) {
  .six-steps {
    grid-template-columns: 1fr;
  }

  .box-section {
    padding: 18px;
  }

  .box-section img {
    width: 100%;
  }

  .hostile-section h1 {
    font-size: clamp(2rem, 11vw, 3.25rem);
  }
}

@media (max-width: 430px) {
  .six-steps article {
    padding: 14px 14px 13px 56px;
  }

  .six-steps span {
    left: 14px;
    top: 14px;
    width: 30px;
    height: 30px;
  }
}


/* Hostile section spacing and image size fix */
.hostile-section {
  grid-template-columns: minmax(440px, 1fr) minmax(0, 1fr);
  gap: clamp(34px, 5vw, 72px);
  padding: clamp(32px, 5vw, 64px);
  overflow: hidden;
}

.hostile-image img {
  width: min(100%, 760px);
  transform: scale(1.08);
}

.hostile-section h1 {
  font-size: clamp(2.05rem, 3.75vw, 3.65rem);
  line-height: 0.94;
  max-width: 620px;
  padding-right: clamp(18px, 3vw, 46px);
}

.hostile-section p {
  max-width: 560px;
  padding-right: clamp(18px, 3vw, 46px);
}

@media (max-width: 980px) {
  .hostile-section {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .hostile-image img {
    width: min(100%, 680px);
    transform: none;
  }

  .hostile-section h1,
  .hostile-section p {
    max-width: 100%;
    padding-right: 0;
  }
}

@media (max-width: 760px) {
  .hostile-section {
    padding: 26px 18px;
  }

  .hostile-image img {
    width: min(100%, 620px);
  }

  .hostile-section h1 {
    font-size: clamp(2rem, 10vw, 3.1rem);
  }
}


/* Final rebuild fixes */

/* Buttons: never black-on-red */
.button,
button {
  color: var(--white) !important;
  background: #050505 !important;
  border: 1px solid var(--red) !important;
  box-shadow: 0 0 16px rgba(219, 6, 29, 0.22) !important;
}

.button.primary,
.button.secondary {
  color: var(--white) !important;
  background: #050505 !important;
}

.button:hover,
button:hover {
  background: rgba(219, 6, 29, 0.16) !important;
}

/* How it works: maximise readability without making the section ridiculous */
.six-steps article {
  padding: 18px 18px 17px 72px !important;
}

.six-steps span {
  left: 18px !important;
  top: 18px !important;
  width: 38px !important;
  height: 38px !important;
  font-size: 1.22rem !important;
}

.six-steps h2 {
  font-size: clamp(1.35rem, 1.65vw, 1.65rem) !important;
  margin-bottom: 6px !important;
}

.six-steps p {
  font-size: clamp(1.12rem, 1.35vw, 1.28rem) !important;
  line-height: 1.15 !important;
}

/* The Hostile: fix overlap by giving text a real safe column and allowing image to breathe */
.hostile-section {
  position: relative;
  grid-template-columns: minmax(360px, 0.86fr) minmax(0, 1.14fr) !important;
  gap: clamp(40px, 6vw, 86px) !important;
  padding: clamp(34px, 5vw, 66px) clamp(44px, 6vw, 86px) !important;
  overflow: visible !important;
}

.hostile-image {
  position: relative;
  z-index: 1;
  align-self: center;
  margin-left: clamp(-34px, -3vw, -12px);
}

.hostile-image img {
  display: block;
  width: min(115%, 720px) !important;
  max-width: none !important;
  transform: none !important;
  mix-blend-mode: screen;
  filter: drop-shadow(0 22px 34px rgba(0,0,0,0.72));
}

.hostile-section > div:last-child {
  position: relative;
  z-index: 2;
  min-width: 0;
  max-width: 610px;
  justify-self: start;
}

.hostile-section h1 {
  max-width: 590px !important;
  padding-right: 0 !important;
  font-size: clamp(2rem, 3.25vw, 3.45rem) !important;
  line-height: 0.95 !important;
  letter-spacing: -0.04em !important;
}

.hostile-section p {
  max-width: 560px !important;
  padding-right: 0 !important;
}

@media (max-width: 980px) {
  .hostile-section {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
    padding: 30px 22px !important;
    overflow: hidden !important;
  }

  .hostile-image {
    margin-left: 0;
  }

  .hostile-image img {
    width: min(100%, 650px) !important;
    mix-blend-mode: normal;
  }

  .hostile-section > div:last-child {
    max-width: 100%;
  }

  .hostile-section h1 {
    max-width: 100% !important;
    font-size: clamp(2rem, 8vw, 4.05rem) !important;
  }

  .six-steps article {
    padding: 17px 16px 16px 68px !important;
  }
}

@media (max-width: 760px) {
  .six-steps article {
    padding: 16px 15px 15px 64px !important;
  }

  .six-steps span {
    left: 15px !important;
    top: 16px !important;
    width: 34px !important;
    height: 34px !important;
    font-size: 1.08rem !important;
  }

  .six-steps h2 {
    font-size: 1.28rem !important;
  }

  .six-steps p {
    font-size: 1.08rem !important;
  }

  .hostile-section h1 {
    font-size: clamp(2rem, 10vw, 3.25rem) !important;
  }
}


/* Recorded rebuild edits */

/* Edit 12: Bigger centred numbers in How it works */
.six-steps article {
  padding-left: 92px !important;
  min-height: 92px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.six-steps span {
  left: 22px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  width: 52px !important;
  height: 52px !important;
  display: grid !important;
  place-items: center !important;
  line-height: 1 !important;
  text-align: center !important;
  font-size: 1.55rem !important;
  font-weight: 900 !important;
}

.six-steps h2 {
  font-size: clamp(1.45rem, 1.85vw, 1.8rem) !important;
}

.six-steps p {
  font-size: clamp(1.16rem, 1.45vw, 1.34rem) !important;
}

/* Edit 13: Box art moved near bottom and made premium-sized */
.box-section {
  margin-top: 18px;
  padding: clamp(28px, 4.4vw, 52px) !important;
}

.box-section img {
  width: min(100%, 920px) !important;
}

/* Edit 14: Launch updates info box under hero image */
.hero-art {
  display: grid;
  gap: 18px;
  align-content: center;
}

.hero-update-box {
  border: 1px solid rgba(219, 6, 29, 0.58);
  border-radius: 16px;
  padding: 20px;
  background:
    linear-gradient(135deg, rgba(0,0,0,0.78), rgba(255,255,255,0.035)),
    repeating-linear-gradient(-8deg, transparent 0 22px, rgba(219,6,29,0.016) 23px 24px);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.04) inset,
    0 18px 42px rgba(0,0,0,0.42);
}

.hero-update-box h2 {
  margin: 0 0 8px;
  color: var(--red);
  font-size: clamp(1.55rem, 2.4vw, 2.15rem);
  line-height: 1;
}

.hero-update-box p {
  margin: 0;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.13;
  text-transform: none;
}

.hero-update-box a {
  display: inline-flex;
  margin-top: 14px;
  padding: 10px 14px;
  border: 1px solid var(--red);
  border-radius: 8px;
  color: var(--white);
  background: #050505;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-decoration: none;
}

@media (max-width: 980px) {
  .six-steps article {
    padding-left: 84px !important;
  }

  .six-steps span {
    left: 18px !important;
    width: 48px !important;
    height: 48px !important;
    font-size: 1.42rem !important;
  }

  .hero-update-box {
    max-width: 780px;
    margin: 0 auto;
  }
}

@media (max-width: 760px) {
  .hero-art {
    display: none;
  }

  .six-steps article {
    padding-left: 78px !important;
    min-height: 86px;
  }

  .six-steps span {
    left: 16px !important;
    width: 46px !important;
    height: 46px !important;
    font-size: 1.35rem !important;
  }

  .box-section {
    padding: 18px !important;
  }

  .box-section img {
    width: 100% !important;
  }
}

@media (max-width: 430px) {
  .six-steps article {
    padding-left: 72px !important;
  }

  .six-steps span {
    width: 42px !important;
    height: 42px !important;
    font-size: 1.22rem !important;
  }
}


/* Subheading prominence fix */
.section-kicker,
.pill {
  font-size: clamp(1.25rem, 1.45vw, 1.55rem) !important;
  font-weight: 900 !important;
  letter-spacing: 0.12em !important;
  color: var(--red) !important;
}

.hostile-section .section-kicker,
.split-section .section-kicker,
.scoring .section-kicker,
.signup .section-kicker {
  margin-bottom: 16px !important;
}

.hero .pill {
  padding: 10px 18px !important;
}

@media (max-width: 760px) {
  .section-kicker,
  .pill {
    font-size: 1.2rem !important;
  }
}


/* Recorded edits: hero email + consistent uppercase section labels */

.section-kicker,
.pill {
  text-transform: uppercase !important;
  font-size: clamp(1.42rem, 1.75vw, 1.8rem) !important;
  font-weight: 900 !important;
  letter-spacing: 0.16em !important;
  color: var(--red) !important;
  line-height: 1 !important;
}

.pill {
  padding: 11px 18px !important;
}

.hero-update-box h2 {
  text-transform: uppercase !important;
  font-size: clamp(1.6rem, 2.4vw, 2.25rem) !important;
  letter-spacing: 0.04em !important;
}

.hero-mini-form {
  margin-top: 14px;
}

.hero-mini-form label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.hero-mini-form-row {
  display: flex;
  gap: 10px;
}

.hero-mini-form input {
  min-height: 44px;
  flex: 1;
  min-width: 0;
  padding: 0 12px;
  border: 1px solid rgba(219, 6, 29, 0.7);
  border-radius: 8px;
  color: var(--white);
  background: #050505;
  font-size: 1rem;
  text-transform: none;
}

.hero-mini-form button {
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid var(--red);
  border-radius: 8px;
  color: var(--white);
  background: #050505;
  font-size: 1rem;
  font-weight: 900;
  cursor: pointer;
}

@media (max-width: 760px) {
  .section-kicker,
  .pill {
    font-size: 1.28rem !important;
  }

  .hero-mini-form-row {
    flex-direction: column;
  }
}


/* Mobile optimisation pass */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 760px) {
  main,
  footer {
    width: min(100% - 18px, 1180px) !important;
  }

  main {
    padding-top: 18px !important;
  }

  .section-frame {
    overflow: hidden !important;
  }

  .hero,
  .split-section,
  .hostile-section,
  .scoring,
  .signup {
    padding: 22px 18px !important;
  }

  .hero-logo {
    width: min(100%, 390px) !important;
    margin-left: 0 !important;
  }

  .hero-subtitle {
    max-width: 100% !important;
    font-size: 1rem !important;
    line-height: 1.12 !important;
  }

  .hero-text,
  .split-section p,
  .hostile-section p,
  .signup p,
  .score-grid p,
  footer p {
    font-size: 1.02rem !important;
    line-height: 1.18 !important;
  }

  .section-kicker,
  .pill {
    font-size: 1.05rem !important;
    letter-spacing: 0.14em !important;
  }

  h1 {
    font-size: clamp(2rem, 10vw, 3rem) !important;
    line-height: 0.95 !important;
    letter-spacing: -0.035em !important;
  }

  .hostile-section {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
    padding: 20px 18px 24px !important;
  }

  .hostile-image {
    margin: 0 auto !important;
    width: 100% !important;
  }

  .hostile-image img {
    width: min(100%, 520px) !important;
    max-width: 100% !important;
    transform: none !important;
    mix-blend-mode: normal !important;
    object-fit: contain !important;
  }

  .hostile-section > div:last-child {
    max-width: 100% !important;
    width: 100% !important;
  }

  .hostile-section h1 {
    font-size: clamp(2rem, 8.7vw, 2.8rem) !important;
    line-height: 0.98 !important;
    letter-spacing: -0.032em !important;
    max-width: 100% !important;
    padding-right: 0 !important;
    overflow-wrap: normal !important;
    word-break: normal !important;
  }

  .hostile-section p {
    max-width: 100% !important;
    padding-right: 0 !important;
    font-size: 1.08rem !important;
    line-height: 1.22 !important;
  }

  .six-steps article {
    min-height: auto !important;
    padding: 15px 14px 15px 68px !important;
  }

  .six-steps span {
    left: 14px !important;
    width: 42px !important;
    height: 42px !important;
    font-size: 1.2rem !important;
  }

  .six-steps h2 {
    font-size: 1.2rem !important;
  }

  .six-steps p {
    font-size: 1rem !important;
  }

  .card-section,
  .score-grid,
  .quick-facts {
    gap: 12px !important;
  }

  .game-card {
    min-height: auto !important;
    padding: 20px !important;
  }

  .game-card p {
    font-size: 1.18rem !important;
    line-height: 1.16 !important;
  }

  .box-section {
    padding: 14px !important;
  }

  .box-section img {
    width: 100% !important;
  }

  .form-row,
  .hero-mini-form-row {
    flex-direction: column !important;
  }

  input,
  button,
  .button {
    width: 100% !important;
  }
}

@media (max-width: 430px) {
  main,
  footer {
    width: min(100% - 12px, 1180px) !important;
  }

  .hero,
  .split-section,
  .hostile-section,
  .scoring,
  .signup {
    padding: 18px 14px !important;
  }

  .hero-logo {
    width: min(100%, 350px) !important;
  }

  .hostile-section h1 {
    font-size: clamp(1.8rem, 8.3vw, 2.45rem) !important;
    line-height: 1 !important;
  }

  .hostile-section p {
    font-size: 1rem !important;
  }

  .hostile-image img {
    width: 100% !important;
  }
}
