:root {
  color-scheme: dark;
  --custom-bg: #0a0a0a;
  --custom-card: #231016;
  --custom-card-deep: #160b0e;
  --custom-red: #ff0033;
  --custom-red-light: #ff365f;
  --custom-text: #fff;
  --custom-muted: rgba(255, 255, 255, 0.58);
  --custom-line: rgba(255, 255, 255, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--custom-bg);
  color: var(--custom-text);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

.custom-shell {
  width: min(1180px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.custom-skip-link {
  position: fixed;
  z-index: 100;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.7rem 1rem;
  border-radius: 8px;
  background: #fff;
  color: #0a0a0a;
  font-weight: 800;
  transform: translateY(-150%);
}

.custom-skip-link:focus {
  transform: translateY(0);
}

.custom-header {
  position: fixed;
  z-index: 50;
  inset: 0 0 auto;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(8, 8, 10, 0.94);
  backdrop-filter: blur(18px);
}

.custom-header::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--custom-red) 48%, transparent 100%);
  opacity: 0.7;
}

.custom-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 1.5rem;
}

.custom-brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 0.7rem;
  color: #fff;
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: -0.035em;
  text-decoration: none;
}

.custom-brand img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.custom-brand strong {
  color: var(--custom-red);
}

.custom-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
}

.custom-nav a {
  padding: 0.48rem 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: color 160ms ease, border-color 160ms ease, background 160ms ease;
}

.custom-nav a:hover {
  color: #fff;
}

.custom-nav a.is-active {
  border: 0;
  background: transparent;
  color: var(--custom-red-light);
}

.custom-nav__games small {
  margin-left: 0.3rem;
  padding: 0.14rem 0.26rem;
  border-radius: 3px;
  background: #16a66a;
  color: #fff;
  font-size: 0.42rem;
  text-transform: uppercase;
  vertical-align: middle;
}

.custom-nav .custom-nav__mobile-dashboard {
  display: none;
}

.custom-header__dashboard {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 0.55rem;
  min-height: 44px;
  padding: 0.7rem 1.15rem;
  border-radius: 999px;
  background: var(--custom-red);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(255, 0, 51, 0.25);
}

.custom-header__dashboard span {
  font-size: 0.55rem;
}

.custom-menu {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--custom-line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
}

.custom-menu span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  background: #fff;
}

.custom-offer {
  position: relative;
  isolation: isolate;
  min-height: 100vh;
  padding: 148px 0 105px;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(255, 0, 51, 0.17) 0%, rgba(137, 0, 31, 0.08) 34%, transparent 68%),
    linear-gradient(180deg, #090909 0%, #13070b 36%, #1e080f 62%, #0d090a 100%);
}

.custom-offer::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: auto 0 0;
  height: 240px;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0), #0a0a0a);
  pointer-events: none;
}

.custom-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.8rem;
}

.custom-heading__icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(255, 0, 51, 0.28);
  border-radius: 16px;
  background: rgba(255, 0, 51, 0.08);
  color: var(--custom-red);
  font-size: 1.4rem;
  box-shadow: 0 0 30px rgba(255, 0, 51, 0.12);
}

.custom-heading h1 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.custom-heading h1 span {
  color: var(--custom-red);
}

.custom-heading p {
  max-width: 650px;
  margin: 0.7rem 0 0;
  color: var(--custom-muted);
  font-size: 0.96rem;
  line-height: 1.65;
}

.custom-offer__card {
  display: grid;
  grid-template-columns: minmax(420px, 0.96fr) minmax(0, 1.04fr);
  overflow: hidden;
  border: 1px solid rgba(255, 0, 51, 0.36);
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(45, 17, 26, 0.96), rgba(22, 10, 14, 0.98));
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42), 0 0 50px rgba(255, 0, 51, 0.07);
}

.custom-offer__visual {
  position: relative;
  min-height: 600px;
  overflow: hidden;
  background: #08070b;
}

.custom-offer__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 72%, rgba(29, 11, 16, 0.86)), linear-gradient(0deg, rgba(6, 4, 8, 0.58), transparent 28%);
  pointer-events: none;
}

.custom-offer__visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 600px;
  object-fit: cover;
}

.custom-offer__visual > span {
  position: absolute;
  z-index: 1;
  right: 1.4rem;
  bottom: 1.25rem;
  left: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.custom-offer__visual b {
  color: var(--custom-red-light);
  font-size: 1.1rem;
}

.custom-offer__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2.2rem, 4vw, 3.8rem);
}

.custom-badge {
  align-self: flex-start;
  padding: 0.45rem 0.72rem;
  border: 1px solid rgba(255, 0, 51, 0.27);
  border-radius: 999px;
  background: rgba(255, 0, 51, 0.09);
  color: var(--custom-red-light);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.custom-offer__content h2 {
  margin: 1.2rem 0 0;
  font-size: clamp(1.75rem, 3.2vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.04em;
}

.custom-offer__description {
  margin: 0.85rem 0 0;
  color: var(--custom-muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

.custom-price {
  display: flex;
  align-items: baseline;
  gap: 0.8rem;
  margin-top: 1.65rem;
}

.custom-price strong {
  color: var(--custom-red);
  font-size: 3.1rem;
  font-weight: 800;
  letter-spacing: -0.055em;
}

.custom-price span {
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.76rem;
}

.custom-feature-list {
  margin: 1.4rem 0 1.7rem;
  padding: 0;
  list-style: none;
}

.custom-feature-list li {
  position: relative;
  padding: 0.82rem 0 0.82rem 1.55rem;
  border-top: 1px solid var(--custom-line);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.84rem;
  font-weight: 600;
}

.custom-feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #19d26b;
  font-weight: 900;
}

.custom-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 49px;
  padding: 0.8rem 1.25rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.custom-button:hover {
  transform: translateY(-2px);
}

.custom-button--primary {
  background: var(--custom-red);
  color: #fff;
  box-shadow: 0 12px 30px rgba(255, 0, 51, 0.23);
}

.custom-button--secondary {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.035);
  color: #fff;
}

.custom-payment-note {
  margin: 0.8rem 0 0;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.7rem;
  text-align: center;
}

.custom-process,
.custom-brief,
.custom-final {
  position: relative;
  isolation: isolate;
  padding: clamp(5.5rem, 9vw, 8rem) 0;
}

.custom-process {
  background:
    radial-gradient(ellipse at 18% 55%, rgba(255, 0, 51, 0.11), transparent 48%),
    linear-gradient(180deg, #0d090a 0%, #13070b 30%, #1c080e 65%, #10090b 100%);
}

.custom-process::before,
.custom-brief::before,
.custom-final::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0 0 auto;
  height: 180px;
  pointer-events: none;
}

.custom-process::before {
  background: linear-gradient(180deg, #0d090a, rgba(13, 9, 10, 0));
}

.custom-section-heading {
  max-width: 650px;
  margin-bottom: 2.8rem;
}

.custom-section-heading > p,
.custom-brief__intro > p:first-child,
.custom-final__inner > div > p {
  margin: 0 0 0.7rem;
  color: var(--custom-red-light);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.custom-section-heading h2,
.custom-brief__intro h2,
.custom-final__inner h2 {
  margin: 0;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.045em;
}

.custom-process__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.custom-process article {
  min-height: 220px;
  padding: 1.8rem;
  border: 1px solid rgba(255, 0, 51, 0.2);
  border-radius: 15px;
  background: linear-gradient(145deg, rgba(38, 15, 22, 0.86), rgba(20, 10, 13, 0.92));
}

.custom-process article > span {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 0, 51, 0.1);
  color: var(--custom-red-light);
  font-size: 0.68rem;
  font-weight: 800;
}

.custom-process h3 {
  margin: 2.2rem 0 0;
  font-size: 1.02rem;
}

.custom-process article p {
  margin: 0.7rem 0 0;
  color: var(--custom-muted);
  font-size: 0.84rem;
  line-height: 1.6;
}

.custom-brief {
  background:
    radial-gradient(ellipse at 82% 48%, rgba(255, 0, 51, 0.12), transparent 50%),
    linear-gradient(180deg, #10090b 0%, #1b080e 34%, #210910 66%, #10090b 100%);
}

.custom-brief::before {
  background: linear-gradient(180deg, #10090b, rgba(16, 9, 11, 0));
}

.custom-brief__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(430px, 1.15fr);
  gap: clamp(3rem, 7vw, 6rem);
  align-items: center;
}

.custom-brief__intro > p:nth-child(3) {
  max-width: 520px;
  margin: 1rem 0 0;
  color: var(--custom-muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.custom-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.5rem;
}

.custom-tags span {
  padding: 0.55rem 0.75rem;
  border: 1px solid rgba(255, 0, 51, 0.16);
  border-radius: 999px;
  background: rgba(255, 0, 51, 0.045);
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.73rem;
  font-weight: 600;
}

.custom-brief__list {
  margin: 0;
  padding: clamp(1.2rem, 3vw, 2rem);
  border: 1px solid rgba(255, 0, 51, 0.2);
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(38, 15, 22, 0.88), rgba(19, 9, 12, 0.94));
  list-style: none;
}

.custom-brief__list li {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 1rem;
  padding: 1.2rem 0;
}

.custom-brief__list li + li {
  border-top: 1px solid var(--custom-line);
}

.custom-brief__list li > span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 0, 51, 0.1);
  color: var(--custom-red-light);
  font-size: 0.7rem;
  font-weight: 800;
}

.custom-brief__list strong {
  font-size: 0.9rem;
}

.custom-brief__list p {
  margin: 0.4rem 0 0;
  color: var(--custom-muted);
  font-size: 0.8rem;
  line-height: 1.55;
}

.custom-final {
  background:
    radial-gradient(ellipse at 50% 30%, rgba(255, 0, 51, 0.12), transparent 58%),
    linear-gradient(180deg, #10090b 0%, #1b080d 44%, #12080b 72%, #080808 100%);
}

.custom-final::before {
  background: linear-gradient(180deg, #10090b, rgba(16, 9, 11, 0));
}

.custom-final__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
}

.custom-final__inner > div:first-child {
  max-width: 680px;
}

.custom-final__inner > div > span {
  display: block;
  margin-top: 1rem;
  color: var(--custom-muted);
  font-size: 0.86rem;
}

.custom-final__actions {
  display: flex;
  gap: 0.75rem;
}

.custom-footer {
  padding: 2.4rem 0;
  background: #080808;
}

.custom-footer__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
}

.custom-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.72rem;
  text-align: center;
}

.custom-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.9rem;
}

.custom-footer nav a {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.68rem;
  text-decoration: none;
}

.custom-footer nav a:hover {
  color: #fff;
}

@media (max-width: 1100px) {
  .custom-nav {
    gap: 0.7rem;
  }

  .custom-nav a {
    font-size: 0.7rem;
  }

  .custom-header__dashboard {
    padding-inline: 0.9rem;
  }
}

@media (max-width: 900px) {
  .custom-header__inner {
    min-height: 68px;
  }

  .custom-header__dashboard {
    display: none;
  }

  .custom-menu {
    display: block;
  }

  .custom-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 1rem;
    left: 1rem;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 0.75rem;
    border: 1px solid var(--custom-line);
    border-radius: 13px;
    background: rgba(15, 10, 12, 0.98);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
  }

  .custom-nav.is-open {
    display: flex;
  }

  .custom-nav a,
  .custom-nav a.is-active {
    padding: 0.85rem;
    border: 0;
    border-radius: 7px;
    font-size: 0.8rem;
  }

  .custom-nav .custom-nav__mobile-dashboard {
    display: block;
    margin-top: 0.35rem;
    background: var(--custom-red);
    color: #fff;
    text-align: center;
  }

  .custom-offer {
    padding: 122px 0 90px;
  }

  .custom-offer__card,
  .custom-brief__grid,
  .custom-final__inner {
    grid-template-columns: 1fr;
  }

  .custom-offer__visual {
    min-height: 0;
    aspect-ratio: 16 / 11;
  }

  .custom-offer__visual img {
    min-height: 0;
  }

  .custom-process__grid {
    grid-template-columns: 1fr;
  }

  .custom-process article {
    min-height: 190px;
  }

  .custom-final__actions {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .custom-footer__inner {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .custom-footer nav {
    justify-content: center;
  }
}

@media (max-width: 560px) {
  .custom-shell {
    width: min(100% - 2rem, 1180px);
  }

  .custom-brand span {
    font-size: 0.9rem;
  }

  .custom-heading {
    align-items: flex-start;
    justify-content: flex-start;
  }

  .custom-heading__icon {
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    border-radius: 12px;
  }

  .custom-heading h1 {
    font-size: 1.75rem;
  }

  .custom-heading p {
    font-size: 0.84rem;
  }

  .custom-offer__card {
    border-radius: 15px;
  }

  .custom-offer__visual {
    aspect-ratio: 1 / 1;
  }

  .custom-offer__content {
    padding: 1.7rem 1.25rem 1.9rem;
  }

  .custom-price strong {
    font-size: 2.65rem;
  }

  .custom-button,
  .custom-final__actions,
  .custom-final__actions .custom-button {
    width: 100%;
  }

  .custom-process,
  .custom-brief,
  .custom-final {
    padding: 4.8rem 0;
  }

  .custom-brief__grid {
    gap: 2.5rem;
  }

  .custom-brief__list {
    padding: 1rem 1.15rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .custom-button {
    transition: none;
  }
}
