:root {
  --orange: #ff3a02;
  --black: #111111;
  --ink: #050506;
  --white: #ffffff;
  --purple: #5500b7;
  --cream: #f4deba;
  --muted: #a8a8ad;
  --line: rgba(255, 255, 255, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--white);
  background:
    radial-gradient(circle at 14% 12%, rgba(255, 58, 2, 0.5), transparent 26rem),
    radial-gradient(circle at 86% 18%, rgba(85, 0, 183, 0.48), transparent 28rem),
    linear-gradient(180deg, #050506 0%, #111111 62%, #09090a 100%);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(0.95rem, 0.28vw + 0.88rem, 1.05rem);
}

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

button,
input {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: clamp(8.5rem, 12vw, 11rem) 1fr 2.75rem;
  gap: 1rem;
  align-items: center;
  padding: clamp(0.75rem, 1.4vw, 1rem) clamp(1rem, 4vw, 3rem);
  background: rgba(5, 5, 6, 0.78);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand img,
.site-footer img {
  display: block;
  width: 100%;
  height: auto;
}

.top-nav {
  display: flex;
  justify-content: center;
  gap: clamp(0.8rem, 3vw, 2.5rem);
  font-size: clamp(0.72rem, 0.18vw + 0.68rem, 0.82rem);
  font-weight: 800;
  text-transform: uppercase;
}

.top-nav a {
  color: rgba(255, 255, 255, 0.72);
}

.top-nav a:hover {
  color: var(--white);
}

.icon-button {
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--orange);
  cursor: pointer;
}

.icon-button span {
  display: block;
  width: 0.9rem;
  height: 0.9rem;
  margin: auto;
  border: 2px solid var(--white);
  border-radius: 50%;
  box-shadow: 0.48rem 0.48rem 0 -0.33rem var(--white);
}

.icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--black);
  background: var(--orange);
  font-size: 1.35rem;
  font-weight: 900;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(18rem, 0.75fr);
  gap: clamp(1.2rem, 5vw, 4rem);
  align-items: center;
  min-height: min(48rem, calc(100svh - 4.7rem));
  max-width: 1440px;
  margin: 0 auto;
  padding: clamp(2.4rem, 5.5vw, 5rem) clamp(1rem, 4vw, 3rem);
  overflow: hidden;
}

.hero::before,
.hero::after {
  position: absolute;
  inset: auto auto -13rem -12rem;
  width: 46rem;
  height: 31rem;
  content: "";
  background:
    linear-gradient(90deg, transparent 49%, rgba(255, 58, 2, 0.7) 50%, transparent 51%),
    linear-gradient(0deg, transparent 49%, rgba(255, 58, 2, 0.62) 50%, transparent 51%);
  transform: rotate(-9deg);
  opacity: 0.42;
  pointer-events: none;
}

.hero::after {
  inset: -14rem -14rem auto auto;
  background:
    linear-gradient(90deg, transparent 49%, rgba(255, 58, 2, 0.5) 50%, transparent 51%),
    linear-gradient(0deg, transparent 49%, rgba(85, 0, 183, 0.52) 50%, transparent 51%);
  transform: rotate(12deg);
}

.hero-content {
  position: relative;
  z-index: 2;
  align-self: center;
  max-width: 48rem;
}

.kicker {
  margin: 0 0 0.65rem;
  color: var(--orange);
  font-family: "Outfit", Arial, sans-serif;
  font-size: clamp(0.72rem, 0.2vw + 0.68rem, 0.84rem);
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Outfit", Arial, sans-serif;
  line-height: 0.98;
}

h1 {
  max-width: 13ch;
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 900;
}

.hero-content p:not(.kicker) {
  max-width: 42rem;
  margin: clamp(1rem, 2vw, 1.35rem) 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(0.98rem, 0.5vw + 0.9rem, 1.18rem);
  line-height: 1.58;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: clamp(1.35rem, 3vw, 2rem);
}

.button,
.filter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(2.45rem, 2vw, 2.8rem);
  padding: 0.75rem clamp(0.85rem, 1.4vw, 1.1rem);
  border: 1px solid var(--line);
  border-radius: 0.35rem;
  color: var(--white);
  font-weight: 900;
  font-size: clamp(0.72rem, 0.25vw + 0.68rem, 0.86rem);
  text-transform: uppercase;
  cursor: pointer;
}

.button.primary,
.filter.is-active {
  color: var(--black);
  background: var(--orange);
  border-color: var(--orange);
}

.button.ghost,
.filter {
  background: rgba(255, 255, 255, 0.08);
}

.featured-card {
  position: relative;
  z-index: 3;
  display: grid;
  align-self: center;
  overflow: hidden;
  background: rgba(17, 17, 17, 0.94);
  border: 1px solid var(--line);
  border-radius: 0.45rem;
  box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.35);
}

.featured-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.featured-copy {
  color: var(--black);
  padding: clamp(1rem, 2vw, 1.35rem);
  background: var(--orange);
}

.featured-copy .tag {
  color: var(--black);
}

.featured-card h2 {
  margin-top: 0.7rem;
  font-size: clamp(1.55rem, 2.8vw, 3rem);
}

.featured-card p {
  margin: 1rem 0 0;
  color: rgba(17, 17, 17, 0.82);
  line-height: 1.5;
}

.tag {
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.ticker {
  display: flex;
  gap: 0.5rem;
  overflow: auto;
  padding: 0.8rem clamp(1rem, 4vw, 3rem);
  background: var(--purple);
  scrollbar-width: none;
}

.ticker span {
  flex: 0 0 auto;
  padding: 0.55rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 0.35rem;
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.promo-banner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  max-width: 1440px;
  margin: clamp(1rem, 3vw, 2rem) auto 0;
  padding: clamp(1.1rem, 3vw, 1.6rem) clamp(1rem, 4vw, 3rem);
  background:
    linear-gradient(135deg, rgba(255, 58, 2, 0.92), rgba(255, 58, 2, 0.68)),
    var(--orange);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0.45rem;
  color: var(--black);
}

.promo-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: flex-end;
}

.promo-banner .button.ghost {
  color: var(--black);
  background: var(--white);
  border-color: var(--white);
}

.promo-banner .kicker {
  color: var(--black);
}

.promo-banner h2 {
  font-size: clamp(1.8rem, 4vw, 4rem);
}

.promo-banner p {
  max-width: 42rem;
  margin: 0.55rem 0 0;
  color: rgba(17, 17, 17, 0.84);
  font-weight: 700;
  line-height: 1.45;
}

.layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(17rem, 23rem);
  gap: clamp(1rem, 4vw, 2rem);
  max-width: 1440px;
  margin: 0 auto;
  padding: clamp(2.5rem, 6vw, 5rem) clamp(1rem, 4vw, 3rem);
  scroll-margin-top: 6rem;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.section-head h2,
.panel h2 {
  font-size: clamp(1.75rem, 3.5vw, 3.5rem);
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: flex-end;
}

.filter {
  min-height: 2.3rem;
  padding: 0.55rem 0.8rem;
  font-size: 0.72rem;
}

.post-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 18rem), 1fr));
  gap: 1rem;
}

.post-card,
.panel {
  overflow: hidden;
  background: rgba(17, 17, 17, 0.92);
  border: 1px solid var(--line);
  border-radius: 0.45rem;
}

.post-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 100%;
}

.post-card.large {
  grid-column: 1 / -1;
  grid-template-columns: minmax(18rem, 0.95fr) 1fr;
  grid-template-rows: auto;
  min-height: 20rem;
}

.post-media {
  position: relative;
  min-height: 0;
  margin: 0;
  overflow: hidden;
}

.post-media::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background: linear-gradient(180deg, transparent 45%, rgba(5, 5, 6, 0.7) 100%);
}

.post-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 12.5rem;
  object-fit: cover;
  transform: scale(1.02);
}

.post-card:not(.large) .post-media img {
  aspect-ratio: 16 / 10;
}

.post-media figcaption {
  position: absolute;
  z-index: 2;
  right: 1rem;
  bottom: 0.9rem;
  padding: 0.42rem 0.62rem;
  background: var(--orange);
  border-radius: 0.3rem;
  color: var(--black);
  font-family: "Outfit", Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.post-body {
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: clamp(1rem, 2vw, 1.25rem);
}

.post-body h3 {
  margin-top: 0.55rem;
  font-size: clamp(1.35rem, 1.7vw, 2.05rem);
  line-height: 1.03;
}

.post-body p {
  margin: 0.8rem 0 1.3rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(0.9rem, 0.25vw + 0.84rem, 1rem);
  line-height: 1.5;
}

.meta {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.sidebar {
  display: grid;
  align-content: start;
  gap: 1rem;
}

.panel {
  padding: 1.2rem;
}

.ranking-list {
  display: grid;
  gap: 0.7rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.ranking-list li {
  display: grid;
  grid-template-columns: 2.2rem 1fr;
  align-items: center;
  gap: 0.7rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid var(--line);
  font-weight: 800;
}

.ranking-list span {
  color: var(--orange);
  font-family: "Outfit", Arial, sans-serif;
  font-size: 1.3rem;
  font-weight: 900;
}

.newsletter {
  position: relative;
  background:
    linear-gradient(135deg, rgba(255, 58, 2, 0.18), transparent 48%),
    var(--black);
  border-color: rgba(255, 58, 2, 0.58);
}

.newsletter::before {
  display: block;
  width: 3.5rem;
  height: 0.35rem;
  margin-bottom: 1rem;
  content: "";
  background: var(--orange);
  border-radius: 999px;
}

.newsletter img {
  display: block;
  width: min(12rem, 82%);
  height: auto;
  margin-bottom: 1rem;
}

.newsletter p {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.5;
}

label {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.email-row {
  display: grid;
  grid-template-columns: 1fr 3rem;
  gap: 0.5rem;
}

.promo-code-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.5rem;
}

input {
  min-width: 0;
  height: 3rem;
  padding: 0 0.9rem;
  border: 0;
  border-radius: 0.35rem;
}

select,
textarea {
  width: 100%;
  min-width: 0;
  padding: 0.9rem;
  color: var(--black);
  background: var(--white);
  border: 0;
  border-radius: 0.35rem;
  font: inherit;
}

select {
  height: 3rem;
}

textarea {
  min-height: 8rem;
  resize: vertical;
}

.email-row button {
  border: 0;
  border-radius: 0.35rem;
  color: var(--black);
  background: var(--orange);
  font-size: 1.4rem;
  font-weight: 900;
  cursor: pointer;
}

.promo-code-row button {
  min-height: 3rem;
  padding: 0 0.85rem;
  border: 0;
  border-radius: 0.35rem;
  color: var(--black);
  background: var(--orange);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.site-footer {
  position: relative;
  margin-top: clamp(2rem, 5vw, 4.5rem);
  padding: clamp(1.2rem, 3vw, 2rem) clamp(1rem, 4vw, 3rem) 1rem;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 58, 2, 0.16), transparent 24rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.site-footer::before {
  position: absolute;
  top: 0;
  left: clamp(1rem, 4vw, 3rem);
  width: min(18rem, 42vw);
  height: 0.2rem;
  content: "";
  background: var(--orange);
}

.footer-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(15rem, 1.4fr) minmax(9rem, 0.7fr) minmax(13rem, 0.9fr) minmax(14rem, 0.95fr);
  gap: clamp(1.25rem, 4vw, 3rem);
  align-items: start;
  max-width: 1440px;
  margin: 0 auto;
}

.footer-logo {
  display: block;
  width: min(11rem, 72vw);
}

.footer-brand {
  display: grid;
  gap: 1rem;
  max-width: 23rem;
}

.footer-brand p,
.footer-note p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.65;
}

.footer-cta {
  width: fit-content;
  padding: 0.72rem 0.95rem;
  color: var(--black);
  background: var(--orange);
  border-radius: 0.35rem;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.footer-group,
.footer-note {
  display: grid;
  gap: 0.72rem;
}

.footer-group h2 {
  margin: 0 0 0.2rem;
  color: var(--white);
  font-family: "Outfit", Arial, sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-group a {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.86rem;
  font-weight: 700;
}

.footer-group a:hover {
  color: var(--orange);
}

.footer-note {
  padding: 1rem;
  background: rgba(5, 5, 6, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0.5rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  max-width: 1440px;
  margin: clamp(1.25rem, 4vw, 2rem) auto 0;
  padding-top: 1rem;
  color: rgba(255, 255, 255, 0.5);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.78rem;
  font-weight: 700;
}

.legal-page {
  max-width: 1080px;
  margin: 0 auto;
  padding: clamp(2.4rem, 6vw, 5rem) clamp(1rem, 4vw, 3rem) clamp(3rem, 7vw, 6rem);
}

.legal-hero {
  display: grid;
  gap: 1rem;
  max-width: 780px;
  margin-bottom: clamp(1.5rem, 4vw, 3rem);
}

.legal-hero h1 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(2.45rem, 7vw, 5.5rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.legal-hero p:not(.kicker) {
  max-width: 42rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.7;
}

.legal-content {
  display: grid;
  gap: 1rem;
}

.legal-card {
  padding: clamp(1rem, 3vw, 1.5rem);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--line);
  border-radius: 0.5rem;
}

.legal-card h2 {
  margin: 0 0 0.75rem;
  font-family: "Outfit", Arial, sans-serif;
  font-size: clamp(1.15rem, 2vw, 1.5rem);
}

.legal-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
}

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

.contact-grid .legal-card:last-child {
  grid-column: 1 / -1;
}

.contact-list {
  display: grid;
  gap: 0.55rem;
  margin: 1rem 0 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.82);
  list-style: none;
  line-height: 1.55;
}

.vip-page {
  max-width: 1440px;
  margin: 0 auto;
  padding: clamp(2.4rem, 6vw, 5rem) clamp(1rem, 4vw, 3rem) clamp(3rem, 7vw, 6rem);
}

.vip-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 24rem);
  gap: clamp(1.25rem, 5vw, 4rem);
  align-items: center;
  overflow: hidden;
}

.vip-hero::before {
  position: absolute;
  inset: 6% 10% auto auto;
  width: 24rem;
  height: 24rem;
  content: "";
  background: radial-gradient(circle, rgba(255, 58, 2, 0.34), transparent 68%);
  pointer-events: none;
}

.vip-hero > * {
  position: relative;
}

.vip-hero h1 {
  max-width: 11ch;
  margin: 0;
  font-size: clamp(3rem, 9vw, 7.2rem);
  line-height: 0.9;
  text-transform: uppercase;
}

.vip-hero p:not(.kicker) {
  max-width: 54rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 0.6vw + 0.9rem, 1.25rem);
  line-height: 1.65;
}

.vip-summary {
  display: grid;
  gap: 0.95rem;
  padding: clamp(1.2rem, 3vw, 1.7rem);
  background:
    linear-gradient(145deg, rgba(255, 58, 2, 0.24), rgba(255, 255, 255, 0.07)),
    rgba(5, 5, 6, 0.66);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0.55rem;
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.32);
}

.vip-summary strong {
  color: var(--orange);
  font-family: "Outfit", Arial, sans-serif;
  font-size: clamp(4rem, 10vw, 7rem);
  line-height: 0.82;
}

.vip-summary p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
}

.vip-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: clamp(2rem, 5vw, 4rem);
}

.vip-card {
  min-height: 15rem;
  padding: clamp(1rem, 3vw, 1.5rem);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--line);
  border-radius: 0.5rem;
}

.vip-card span {
  display: block;
  margin-bottom: clamp(1.4rem, 4vw, 3rem);
  color: var(--orange);
  font-family: "Outfit", Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: 900;
}

.vip-card h2 {
  margin: 0 0 0.7rem;
  font-family: "Outfit", Arial, sans-serif;
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  line-height: 1;
  text-transform: uppercase;
}

.vip-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.6;
}

.vip-contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(20rem, 1fr);
  gap: clamp(1.25rem, 5vw, 4rem);
  align-items: start;
  margin-top: clamp(2rem, 5vw, 4rem);
  padding: clamp(1rem, 4vw, 2rem);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  border-radius: 0.6rem;
}

.vip-contact-copy h2 {
  margin: 0 0 1rem;
  font-family: "Outfit", Arial, sans-serif;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.vip-contact-copy p:not(.kicker) {
  max-width: 34rem;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.65;
}

.vip-form {
  display: grid;
  gap: 0.85rem;
}

.vip-form .button {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.promo-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 25rem);
  gap: clamp(1.2rem, 5vw, 4rem);
  align-items: center;
  max-width: 1440px;
  min-height: min(46rem, calc(100svh - 4.7rem));
  margin: 0 auto;
  padding: clamp(2.4rem, 6vw, 5rem) clamp(1rem, 4vw, 3rem);
  overflow: hidden;
}

.promo-hero::before {
  position: absolute;
  inset: 8% -12% auto auto;
  width: 44rem;
  height: 25rem;
  content: "";
  background: radial-gradient(circle, rgba(255, 58, 2, 0.52), transparent 62%);
  pointer-events: none;
}

.promo-hero-copy,
.bonus-card {
  position: relative;
  z-index: 1;
}

.promo-hero h1 {
  max-width: 12ch;
}

.promo-hero-copy p:not(.kicker) {
  max-width: 44rem;
  margin: 1.2rem 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 0.7vw + 0.9rem, 1.2rem);
  line-height: 1.58;
}

.promo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.6rem;
}

.bonus-card {
  display: grid;
  padding: clamp(1.2rem, 3vw, 1.6rem);
  background:
    linear-gradient(135deg, rgba(255, 58, 2, 0.16), transparent 48%),
    rgba(17, 17, 17, 0.95);
  border: 1px solid rgba(255, 58, 2, 0.58);
  border-radius: 0.45rem;
  box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.35);
}

.bonus-card strong {
  margin: 0.4rem 0;
  color: var(--orange);
  font-family: "Outfit", Arial, sans-serif;
  font-size: clamp(5rem, 12vw, 8rem);
  font-weight: 900;
  line-height: 0.9;
}

.bonus-card p {
  margin: 0 0 1.25rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.5;
}

.promo-games,
.promo-steps,
.reviews-section,
.terms-panel {
  max-width: 1440px;
  margin: 0 auto;
  padding: clamp(2.2rem, 5vw, 4rem) clamp(1rem, 4vw, 3rem);
}

.promo-games {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  padding-top: 0;
}

.promo-games article,
.step-grid article,
.review-grid article,
.terms-panel {
  overflow: hidden;
  background: rgba(17, 17, 17, 0.92);
  border: 1px solid var(--line);
  border-radius: 0.45rem;
}

.promo-games img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.promo-games span {
  display: block;
  margin: 1rem 1rem 0.4rem;
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.promo-games h2 {
  padding: 0 1rem 1rem;
  font-size: clamp(1.5rem, 2.5vw, 2.3rem);
}

.step-grid,
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.step-grid article,
.review-grid article {
  padding: clamp(1rem, 2vw, 1.25rem);
}

.step-grid span {
  color: var(--orange);
  font-family: "Outfit", Arial, sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
}

.step-grid h3,
.review-grid strong {
  display: block;
  margin-top: 0.8rem;
}

.step-grid p,
.review-grid p {
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.5;
}

.stars {
  color: var(--orange);
  font-size: 1.1rem;
  letter-spacing: 0.03em;
}

.terms-panel {
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.terms-panel h2 {
  font-size: clamp(1.8rem, 3.5vw, 3.5rem);
}

.terms-panel ul {
  display: grid;
  gap: 0.65rem;
  margin: 1.2rem 0 0;
  padding-left: 1.2rem;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.5;
}

.store-hero,
.store-shell {
  max-width: 1440px;
  margin: 0 auto;
  padding: clamp(2.4rem, 6vw, 5rem) clamp(1rem, 4vw, 3rem);
}

.store-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 24rem);
  gap: clamp(1.2rem, 5vw, 4rem);
  align-items: center;
  min-height: min(38rem, calc(100svh - 4.7rem));
}

.store-hero h1 {
  max-width: 12ch;
}

.store-hero p {
  max-width: 43rem;
  margin: 1.2rem 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 0.7vw + 0.9rem, 1.2rem);
  line-height: 1.58;
}

.store-promo-card {
  padding: clamp(1.2rem, 3vw, 1.5rem);
  background:
    linear-gradient(135deg, rgba(255, 58, 2, 0.18), transparent 48%),
    rgba(17, 17, 17, 0.95);
  border: 1px solid rgba(255, 58, 2, 0.58);
  border-radius: 0.45rem;
}

.store-promo-card strong {
  display: block;
  margin: 0.35rem 0;
  color: var(--orange);
  font-family: "Outfit", Arial, sans-serif;
  font-size: clamp(4.4rem, 10vw, 7rem);
  font-weight: 900;
  line-height: 0.9;
}

.store-promo-card p {
  margin: 0 0 1.1rem;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.5;
}

.cart-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--black);
  background: var(--orange);
  font-weight: 900;
}

.store-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(19rem, 24rem);
  gap: clamp(1rem, 4vw, 2rem);
  padding-top: 0;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 18rem), 1fr));
  gap: 1rem;
}

.product-card,
.cart-panel {
  overflow: hidden;
  background: rgba(17, 17, 17, 0.92);
  border: 1px solid var(--line);
  border-radius: 0.45rem;
}

.product-card {
  display: grid;
  grid-template-rows: auto 1fr;
}

.product-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.product-card > div {
  display: grid;
  align-content: start;
  padding: 1rem;
}

.product-card h3 {
  margin-top: 0.45rem;
  font-size: clamp(1.35rem, 1.8vw, 2rem);
}

.product-card p {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.5;
}

.product-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  margin-top: 0.4rem;
}

.product-bottom strong {
  color: var(--orange);
  font-family: "Outfit", Arial, sans-serif;
  font-size: 1.35rem;
}

.add-to-cart,
.checkout-button,
.store-filter,
.qty-button {
  border: 1px solid var(--line);
  border-radius: 0.35rem;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.add-to-cart,
.checkout-button,
.store-filter.is-active {
  color: var(--black);
  background: var(--orange);
  border-color: var(--orange);
}

.add-to-cart {
  min-height: 2.45rem;
  padding: 0.65rem 0.8rem;
}

.store-filter {
  min-height: 2.3rem;
  padding: 0.55rem 0.8rem;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.72rem;
}

.cart-panel {
  position: sticky;
  top: 6rem;
  align-self: start;
  padding: 1.2rem;
}

.cart-panel h2 {
  font-size: clamp(2rem, 3.2vw, 3rem);
}

.cart-items {
  display: grid;
  gap: 0.75rem;
  margin: 1.2rem 0;
}

.empty-cart,
.cart-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.5;
}

.cart-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.75rem;
  align-items: center;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--line);
}

.cart-item strong,
.cart-item span {
  display: block;
}

.cart-item span {
  margin-top: 0.25rem;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.qty-controls {
  display: grid;
  grid-template-columns: 2rem 2rem 2rem;
  align-items: center;
  text-align: center;
}

.qty-button {
  width: 2rem;
  height: 2rem;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.cart-summary {
  display: grid;
  gap: 0.65rem;
  padding-top: 0.9rem;
  border-top: 1px solid var(--line);
}

.cart-summary div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.cart-summary span {
  color: rgba(255, 255, 255, 0.7);
}

.cart-summary strong {
  font-family: "Outfit", Arial, sans-serif;
}

.total-row {
  color: var(--orange);
  font-size: 1.25rem;
}

.promo-code-form {
  display: grid;
  gap: 0.5rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.promo-code-message {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.82rem;
  line-height: 1.35;
}

.promo-code-message.is-valid {
  color: var(--orange);
  font-weight: 800;
}

.promo-code-message.is-error {
  color: #ffffff;
  font-weight: 800;
}

.checkout-button {
  width: 100%;
  min-height: 3rem;
  margin: 1rem 0 0.7rem;
}

.is-hidden {
  display: none;
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: 9rem 1fr 2.75rem;
  }

  .hero,
  .layout,
  .promo-hero,
  .store-hero,
  .store-shell,
  .vip-hero,
  .vip-contact,
  .footer-shell,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: clamp(2.2rem, 7vw, 4rem);
  }

  .featured-card {
    align-self: start;
    max-width: 38rem;
  }

  .post-card.large {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
  }

  .section-head {
    align-items: start;
    flex-direction: column;
  }

  .filters {
    justify-content: flex-start;
  }

  .promo-banner,
  .promo-games,
  .step-grid,
  .review-grid,
  .vip-benefits {
    grid-template-columns: 1fr;
  }

  .promo-banner {
    margin-right: clamp(1rem, 4vw, 3rem);
    margin-left: clamp(1rem, 4vw, 3rem);
  }

  .promo-banner-actions {
    justify-content: flex-start;
  }

  .cart-panel {
    position: static;
  }

  .footer-note {
    max-width: 28rem;
  }

  .contact-grid .legal-card:last-child {
    grid-column: auto;
  }
}

@media (max-width: 680px) {
  .site-header {
    grid-template-columns: minmax(6.5rem, 8rem) 2.55rem;
    justify-content: space-between;
  }

  .top-nav {
    display: none;
  }

  h1 {
    max-width: 10ch;
    font-size: clamp(2.55rem, 12vw, 4rem);
    line-height: 1;
  }

  .hero-content p:not(.kicker) {
    font-size: 0.98rem;
    line-height: 1.5;
  }

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

  .button,
  .promo-actions .button {
    width: 100%;
  }

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

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

  .post-card.large {
    min-height: auto;
  }

  .section-head h2,
  .panel h2 {
    font-size: clamp(1.65rem, 8vw, 2.5rem);
  }

  .filters {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  .store-filters {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  .filter,
  .store-filter {
    width: 100%;
  }

  .promo-banner {
    grid-template-columns: 1fr;
  }

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

  .promo-hero h1 {
    max-width: 10ch;
  }

  .footer-shell {
    gap: 1.4rem;
  }

  .footer-bottom {
    flex-direction: column;
  }
}
