:root {
  --bg-base: #0b0b14;
  --bg-accent-a: #1a0f2e;
  --bg-accent-b: #0f1729;
  --surface: rgba(20, 18, 35, 0.8);
  --surface-strong: rgba(20, 18, 35, 0.94);
  --border: rgba(147, 51, 234, 0.2);
  --purple: #9333ea;
  --gold: #d4af37;
  --teal: #14b8a6;
  --white: #ffffff;
  --muted: rgba(255, 255, 255, 0.6);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  --radius: 20px;
  --transition: 280ms ease;
  --page: 400ms ease-out;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 12% 8%, rgba(147, 51, 234, 0.22), transparent 35%),
    radial-gradient(circle at 80% 24%, rgba(20, 184, 166, 0.14), transparent 42%),
    radial-gradient(circle at 50% 90%, rgba(26, 15, 46, 0.45), transparent 52%),
    var(--bg-base);
  color: var(--white);
  font-family: Inter, system-ui, sans-serif;
  font-size: 18px;
  line-height: 1.6;
  opacity: 0;
  transition: opacity var(--page);
}

body.is-ready {
  opacity: 1;
}

img {
  max-width: 100%;
  display: block;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(1600px, calc(100% - 48px));
  margin-inline: auto;
}

.section {
  padding: 160px 80px;
}

.muted {
  color: var(--muted);
}

.eyebrow {
  margin: 0 0 16px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.72);
}

h1,
h2,
h3,
.display-font {
  font-family: "Archivo Black", Inter, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.2;
  margin: 0;
}

h1,
.h1 {
  font-size: clamp(52px, 6vw, 96px);
}

h2,
.h2 {
  font-size: clamp(34px, 4vw, 48px);
}

h3,
.h3 {
  font-size: clamp(24px, 2.8vw, 32px);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 70;
  backdrop-filter: blur(12px);
  background: rgba(11, 11, 20, 0.68);
  border-bottom: 1px solid var(--border);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Archivo Black", Inter, sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 16px;
}

.brand img {
  width: 38px;
  height: 38px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.desktop-nav {
  display: none;
  gap: 24px;
  align-items: center;
}

.nav-link {
  position: relative;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 13px;
  color: var(--muted);
  padding: 10px 2px;
  transition: color var(--transition);
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--purple), var(--gold));
  transition: width var(--transition);
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link.active {
  color: var(--white);
}

.nav-link:hover::after,
.nav-link:focus-visible::after,
.nav-link.active::after {
  width: 100%;
}

.menu-button {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(20, 18, 35, 0.7);
  color: var(--white);
  padding: 10px 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
}

.mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 65;
  background: rgba(8, 8, 15, 0.95);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
  display: grid;
  place-items: center;
}

.mobile-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav {
  width: min(520px, calc(100% - 48px));
  display: grid;
  gap: 16px;
}

.mobile-link {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 20px;
  font-family: "Archivo Black", Inter, sans-serif;
  background: var(--surface);
  color: var(--muted);
}

.mobile-link.active,
.mobile-link:hover,
.mobile-link:focus-visible {
  color: var(--white);
  box-shadow: var(--shadow);
}

main {
  padding-top: 88px;
}

.hero-home {
  min-height: calc(100vh - 88px);
  display: grid;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: clamp(140px, 18vh, 220px);
  padding-bottom: 120px;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 20px;
  justify-items: center;
  text-align: center;
  margin-inline: auto;
  max-width: 1000px;
}

.hero-home .badge {
  margin-inline: auto;
}

.hero-image {
  position: relative;
  overflow: hidden;
}

.hero-visual {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 7, 12, 0.28), rgba(7, 7, 12, 0.7) 55%, rgba(7, 7, 12, 0.9)),
    linear-gradient(90deg, rgba(11, 11, 20, 0.5), rgba(11, 11, 20, 0.18) 45%, rgba(11, 11, 20, 0.5));
  pointer-events: none;
}

.hero-visual-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 600ms ease;
  filter: saturate(0.82) brightness(0.58);
}

.hero-visual-image.is-active {
  opacity: 1;
}

.hero-overlay-content {
  position: relative;
  z-index: 2;
}

.hero-image-promotions {
  min-height: clamp(540px, 76vh, 780px);
  display: grid;
  align-items: end;
}

.hero-image-promotions .promotions-hero {
  padding-bottom: 72px;
}

.hero-image-promotions .promotions-subtitle {
  color: rgba(255, 255, 255, 0.82);
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 8px 16px;
  background: rgba(147, 51, 234, 0.3);
  border: 1px solid rgba(147, 51, 234, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 12px;
  font-weight: 700;
}

.hero-gradient-title {
  margin-top: 0;
  font-style: italic;
  background: linear-gradient(120deg, #a855f7 10%, #d4af37 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-subtitle {
  margin: 24px auto 0;
  font-size: clamp(18px, 2vw, 24px);
  color: var(--muted);
  max-width: 760px;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  font-size: 26px;
  color: var(--muted);
  animation: pulse 1.8s ease-in-out infinite;
  z-index: 3;
}

@keyframes pulse {
  0%, 100% { opacity: 0.35; transform: translateX(-50%) translateY(0); }
  50% { opacity: 1; transform: translateX(-50%) translateY(8px); }
}

.surface-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.gradient-border {
  position: relative;
}

.gradient-border::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;
  background: linear-gradient(120deg, rgba(147, 51, 234, 0.9), rgba(20, 184, 166, 0.8));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.lift {
  transition: transform var(--transition), box-shadow var(--transition);
}

.lift:hover,
.lift:focus-within {
  transform: translateY(-8px);
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.62);
}

.btn {
  border-radius: 12px;
  padding: 16px 32px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 800;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 1px solid transparent;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition), background-color var(--transition);
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-purple {
  background: var(--purple);
  color: var(--white);
}

.btn-purple:hover,
.btn-purple:focus-visible {
  box-shadow: 0 0 30px rgba(147, 51, 234, 0.6);
}

.btn-gold-outline {
  border-color: var(--gold);
  color: var(--gold);
  background: transparent;
}

.btn-gold-outline:hover,
.btn-gold-outline:focus-visible {
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.45);
}

.btn-gold {
  background: var(--gold);
  color: #1f1b0d;
}

.btn-gold:hover,
.btn-gold:focus-visible {
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.45);
}

.btn-wide {
  width: 256px;
}

.featured-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
  align-items: center;
}

.featured-copy,
.featured-visual {
  padding: 48px;
}

.gold-italic {
  color: var(--gold);
  font-style: italic;
  font-size: 20px;
}

.button-group {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.featured-stage {
  position: relative;
  min-height: 560px;
}

.featured-stage [data-carousel-slide] {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity var(--transition);
}

.featured-stage [data-carousel-slide].is-active {
  opacity: 1;
}

.showcase-main {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid rgba(147, 51, 234, 0.5);
  box-shadow: 0 0 36px rgba(147, 51, 234, 0.25);
}

.float-shot {
  position: absolute;
  width: 38%;
  border-radius: 14px;
  border: 1px solid rgba(20, 184, 166, 0.5);
  box-shadow: var(--shadow);
  opacity: 0.85;
}

.float-shot.a { top: 12px; right: -10px; }
.float-shot.b { bottom: 16px; left: -16px; }

.meta-overlay {
  position: absolute;
  left: 24px;
  bottom: 24px;
  padding: 20px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(11, 11, 20, 0.72);
  backdrop-filter: blur(8px);
  display: grid;
  gap: 8px;
  font-size: 14px;
}

.highlights-grid,
.features-grid,
.platform-grid {
  display: grid;
  gap: 32px;
}

.highlights-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.features-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.platform-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.highlight-card,
.feature-card,
.platform-card,
.bfm-next {
  padding: 48px;
}

.icon-circle {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  background: rgba(147, 51, 234, 0.18);
  border: 1px solid var(--border);
  font-size: 24px;
}

.next-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
  align-items: stretch;
}

.next-visual {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(20, 184, 166, 0.35);
  min-height: 320px;
  position: relative;
}

.next-visual img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  filter: saturate(0.85) brightness(0.85);
}

.year-pill {
  position: absolute;
  top: 16px;
  right: 16px;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(212, 175, 55, 0.22);
  border: 1px solid rgba(212, 175, 55, 0.55);
}

.disabled-btn {
  opacity: 0.55;
  pointer-events: none;
}

.community-icons {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.social-chip {
  width: 58px;
  height: 58px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  background: rgba(20, 18, 35, 0.8);
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  font-size: 14px;
  font-weight: 700;
}

.social-chip:hover,
.social-chip:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.6);
  box-shadow: 0 0 24px rgba(147, 51, 234, 0.45);
}

[data-carousel-dot].is-active {
  border-color: rgba(20, 184, 166, 0.9);
  box-shadow: 0 0 24px rgba(20, 184, 166, 0.5);
}

.footer {
  border-top: 1px solid var(--border);
  background: rgba(10, 10, 18, 0.92);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 32px;
  padding: 64px 80px 32px;
}

.footer-links,
.footer-socials {
  display: grid;
  gap: 10px;
}

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

.footer a:hover,
.footer a:focus-visible {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 18px 80px 30px;
  color: var(--muted);
  font-size: 14px;
}

.hero-game {
  min-height: 72vh;
  display: grid;
  align-items: center;
  position: relative;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.hero-game::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 7, 12, 0.68), rgba(7, 7, 12, 0.92));
  z-index: 1;
}

.hero-game-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(1px) brightness(0.5);
}

.hero-game-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 980px;
  margin: 0 auto;
}

.dual-cta {
  margin-top: 32px;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.about-centered {
  max-width: 800px;
  margin-inline: auto;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}

.gallery-item {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: transform var(--transition);
}

.gallery-item:hover,
.gallery-item:focus-visible {
  transform: scale(1.05);
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(5, 5, 10, 0.94);
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
  padding: 24px;
}

.lightbox.open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox img {
  max-width: min(1280px, 94vw);
  max-height: 78vh;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.lightbox-btn {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.45);
  color: var(--white);
  padding: 10px 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
}

.lightbox-close { top: 16px; right: 16px; }
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }

.steam-card {
  padding: 48px;
  text-align: center;
}

.steam-frame {
  margin-top: 24px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  min-height: 540px;
}

.steam-frame iframe {
  width: 100%;
  min-height: 540px;
  border: 0;
}

.form-wrap {
  padding: 48px;
}

.info-cols {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
}

.tab-switch {
  display: inline-flex;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px;
  gap: 8px;
  background: rgba(20, 18, 35, 0.72);
}

.tab-btn {
  border: 0;
  border-radius: 999px;
  padding: 12px 22px;
  background: transparent;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
}

.tab-btn.active {
  background: rgba(147, 51, 234, 0.28);
  color: var(--white);
}

.form-panel {
  margin-top: 24px;
}

.form-inspire {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 24px;
  align-items: center;
  margin-bottom: 24px;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px;
  background: rgba(20, 18, 35, 0.6);
}

.form-inspire img {
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: 100%;
  max-height: 180px;
  object-fit: cover;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 32px;
}

.field-full {
  grid-column: 1 / -1;
}

label {
  display: grid;
  gap: 8px;
  color: rgba(212, 175, 55, 0.9);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
}

.req {
  color: var(--purple);
}

.helper {
  margin: 0;
  font-size: 12px;
  color: var(--muted);
  text-transform: none;
  letter-spacing: normal;
  font-weight: 500;
}

.input,
select,
textarea {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  background: #1a1f3a;
  color: var(--white);
  padding: 12px 14px;
  width: 100%;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: rgba(147, 51, 234, 0.9);
  box-shadow: 0 0 0 3px rgba(147, 51, 234, 0.28);
}

.file-drop {
  border: 1px dashed rgba(147, 51, 234, 0.75);
  border-radius: 12px;
  padding: 16px;
  background: rgba(147, 51, 234, 0.08);
  text-align: center;
  cursor: pointer;
}

.file-drop input {
  display: none;
}

.counter,
.file-name,
.form-error,
.disclaimer {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.counter {
  text-align: right;
}

.preview {
  margin-top: 10px;
  max-width: 220px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: none;
}

.success-box {
  text-align: center;
  padding: 64px 32px;
}

.check {
  width: 74px;
  height: 74px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  margin: 0 auto 16px;
  font-size: 34px;
  border: 1px solid rgba(20, 184, 166, 0.7);
  background: rgba(20, 184, 166, 0.2);
}

.notify-form {
  margin-top: 24px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.notify-form .input {
  flex: 1;
  min-width: 260px;
  min-height: 52px;
}

.platform-accent-discord { border-color: rgba(147, 51, 234, 0.6); }
.platform-accent-reddit { border-color: rgba(249, 115, 22, 0.6); }
.platform-accent-forum { border-color: rgba(20, 184, 166, 0.6); }
.platform-accent-youtube { border-color: rgba(239, 68, 68, 0.6); }
.platform-accent-tiktok { border-color: rgba(236, 72, 153, 0.6); }
.platform-accent-x { border-color: rgba(59, 130, 246, 0.6); }

.submit-banner {
  text-align: center;
  padding: 56px 48px;
}

.promotions-hero h1 {
  max-width: 1120px;
}

.promotions-subtitle {
  max-width: 900px;
  margin-left: 0;
  text-align: left;
}

.promotions-shell {
  padding: 48px;
}

.promotions-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(280px, 0.8fr);
  gap: 24px;
  margin-bottom: 32px;
  padding: 24px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(135deg, rgba(147, 51, 234, 0.12), rgba(20, 184, 166, 0.08));
}

.promotions-note {
  border-radius: 16px;
  border: 1px solid rgba(212, 175, 55, 0.18);
  background: rgba(11, 11, 20, 0.45);
  padding: 20px;
  display: grid;
  align-content: center;
}

.promotions-form {
  display: grid;
  gap: 24px;
}

.promotions-grid {
  gap: 28px 32px;
}

.promotions-field {
  gap: 10px;
}

.promotions-select-grid {
  display: grid;
  gap: 24px 28px;
  align-items: start;
}

.promotions-select-grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.promotions-select-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.promotions-field > span,
.promotions-field-label,
.promotions-group legend {
  color: rgba(255, 255, 255, 0.95);
  font-family: "Archivo Black", Inter, sans-serif;
  font-size: clamp(22px, 2vw, 32px);
  letter-spacing: 0;
  line-height: 1.1;
  text-transform: none;
}

.promotions-input {
  min-height: 58px;
  border-radius: 16px;
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

select.promotions-input {
  color: rgba(255, 255, 255, 0.94);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03)),
    rgba(15, 18, 32, 0.96);
  color-scheme: dark;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 52px;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(212, 175, 55, 0.92) 50%),
    linear-gradient(135deg, rgba(212, 175, 55, 0.92) 50%, transparent 50%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  background-position:
    calc(100% - 24px) calc(50% - 3px),
    calc(100% - 18px) calc(50% - 3px),
    0 0;
  background-size: 6px 6px, 6px 6px, 100% 100%;
  background-repeat: no-repeat;
}

select.promotions-input option {
  background: #121625;
  color: #ffffff;
}

.promotions-input::placeholder,
.promotions-textarea::placeholder {
  color: rgba(255, 255, 255, 0.34);
}

.promotions-textarea {
  min-height: 180px;
}

.promotions-group {
  margin: 0;
  padding: 0;
  border: 0;
  display: grid;
  gap: 18px;
}

.pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.pill-grid-wide .pill-option {
  max-width: 100%;
}

.pill-option {
  position: relative;
  display: inline-flex;
  max-width: 100%;
}

.pill-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.pill-option span {
  display: inline-flex;
  align-items: center;
  min-height: 56px;
  padding: 14px 22px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.9);
  text-transform: none;
  letter-spacing: 0;
  font-size: clamp(18px, 1.5vw, 22px);
  font-weight: 500;
  line-height: 1.35;
  transition: border-color var(--transition), background-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.pill-option:hover span,
.pill-option:focus-within span {
  transform: translateY(-2px);
  border-color: rgba(212, 175, 55, 0.38);
}

.pill-option input:checked + span {
  border-color: rgba(147, 51, 234, 0.9);
  background: linear-gradient(135deg, rgba(147, 51, 234, 0.28), rgba(20, 184, 166, 0.14));
  box-shadow: 0 0 0 2px rgba(147, 51, 234, 0.15), 0 16px 32px rgba(0, 0, 0, 0.22);
}

.pill-option-wide {
  width: 100%;
}

.promotions-upload {
  display: grid;
  gap: 14px;
}

.promotions-dropzone {
  display: grid;
  gap: 8px;
  min-height: 160px;
  align-content: center;
  justify-items: center;
  border-radius: 18px;
  border-style: dashed;
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.03);
}

.dropzone-title {
  font-size: 18px;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 0.88);
}

.promotions-legal {
  gap: 16px;
}

.legal-check {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px 20px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.9);
  text-transform: none;
  letter-spacing: 0;
  font-size: 18px;
  font-weight: 500;
}

.legal-check input {
  width: 24px;
  height: 24px;
  margin: 2px 0 0;
  accent-color: var(--purple);
}

.legal-check span {
  line-height: 1.5;
}

.promotions-submit-row {
  display: flex;
  justify-content: flex-start;
}

@media (max-width: 1200px) {
  .section { padding: 120px 32px; }
  .footer-grid,
  .footer-bottom { padding-left: 32px; padding-right: 32px; }
}

@media (max-width: 1024px) {
  .featured-grid,
  .next-grid,
  .info-cols,
  .promotions-intro { grid-template-columns: 1fr; }
  .highlights-grid,
  .platform-grid,
  .gallery-grid,
  .features-grid { grid-template-columns: 1fr 1fr; }
  .featured-copy,
  .featured-visual,
  .highlight-card,
  .feature-card,
  .platform-card,
  .bfm-next,
  .steam-card,
  .form-wrap,
  .promotions-shell { padding: 32px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-inspire { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .promotions-select-grid-3 { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .container { width: calc(100% - 24px); }
  .section { padding: 96px 16px; }
  .highlights-grid,
  .platform-grid,
  .gallery-grid,
  .features-grid,
  .footer-grid { grid-template-columns: 1fr; }
  .desktop-nav { display: none; }
  .btn,
  .btn-wide { width: 100%; }
  .promotions-select-grid-2,
  .promotions-select-grid-3 { grid-template-columns: 1fr; }
  .pill-option,
  .pill-option-wide {
    width: 100%;
  }
  .promotions-submit-row {
    display: block;
  }
  .legal-check {
    grid-template-columns: 24px 1fr;
    padding: 16px;
    font-size: 16px;
  }
}

@media (min-width: 980px) {
  .desktop-nav { display: inline-flex; }
  .menu-button,
  .mobile-overlay { display: none; }
}

:focus-visible {
  outline: 2px solid rgba(20, 184, 166, 0.95);
  outline-offset: 2px;
}
