:root {
      --win-bg: #ffffff;
      --win-ink: #101114;
      --win-muted: #686f7c;
      --win-line: #e8e8ec;
      --win-red: #df0d22;
      --win-red-dark: #980717;
      --win-black: #08090c;
      --win-panel: #14161c;
      --win-gold: #f2b72d;
      --win-gold-soft: #fff2c7;
      --win-max: 1160px;
      font-family: Inter, Arial, "Helvetica Neue", sans-serif;
    }

    * {
      box-sizing: border-box;
    }

    html,
    body {
      margin: 0;
      min-height: 100%;
      color: var(--win-ink);
      background: var(--win-bg);
      letter-spacing: 0;
      overflow-x: hidden;
    }

    body {
      line-height: 1.62;
    }

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

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

    h1,
    h2,
    h3,
    p {
      margin: 0;
      overflow-wrap: anywhere;
    }

    .win-container {
      width: min(var(--win-max), calc(100% - 48px));
      margin: 0 auto;
    }

    .win-top {
      color: #fff;
      background: var(--win-black);
      border-bottom: 1px solid rgba(255, 255, 255, .1);
    }

    .win-top-inner {
      min-height: 72px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 22px;
    }

    .win-brand {
      display: flex;
      align-items: center;
      gap: 12px;
      flex: 0 0 auto;
    }

    .win-mark {
      width: 54px;
      height: 54px;
      display: grid;
      place-items: center;
      border-radius: 8px;
      color: #fff;
      background: linear-gradient(145deg, #ff1d34 0%, #bd0618 58%, #f6bd2f 100%);
      box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .24), 0 18px 32px rgba(223, 13, 34, .28);
      font-weight: 950;
      font-size: 17px;
    }

    .win-word {
      display: grid;
      line-height: 1;
    }

    .win-word strong {
      color: #fff;
      font-size: 30px;
      font-weight: 950;
    }

    .win-word span {
      margin-top: 5px;
      color: #d5d8df;
      font-size: 11px;
      font-weight: 850;
      text-transform: uppercase;
    }

    .win-top-note {
      color: #d7dbe4;
      font-size: 13px;
      font-weight: 800;
      text-align: center;
    }

    .win-actions {
      display: flex;
      gap: 10px;
      flex: 0 0 auto;
    }

    .win-btn {
      min-height: 42px;
      display: inline-grid;
      place-items: center;
      border-radius: 8px;
      padding: 0 22px;
      color: #fff;
      background: var(--win-red);
      box-shadow: 0 12px 28px rgba(223, 13, 34, .28);
      font-size: 13px;
      font-weight: 950;
      text-transform: uppercase;
    }

    .win-btn.dark {
      background: transparent;
      box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .35);
    }

    .win-nav-wrap {
      position: sticky;
      top: 0;
      z-index: 10;
      background: linear-gradient(90deg, #f5142e 0%, #ba0616 100%);
      box-shadow: 0 10px 28px rgba(17, 17, 17, .18);
    }

    .win-nav {
      min-height: 50px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0;
      color: #fff;
      font-size: 13px;
      font-weight: 950;
      text-transform: uppercase;
      white-space: nowrap;
    }

    .win-nav a {
      min-height: 50px;
      display: grid;
      place-items: center;
      padding: 0 22px;
      border-left: 1px solid rgba(255, 255, 255, .16);
    }

    .win-nav a:last-child {
      border-right: 1px solid rgba(255, 255, 255, .16);
    }

    .win-nav a.is-active {
      background: rgba(0, 0, 0, .18);
    }

    .win-hero {
      color: #fff;
      background: #09090c;
    }

    .win-hero-frame {
      min-height: 470px;
      position: relative;
      display: grid;
      align-items: center;
      overflow: hidden;
      border-left: 1px solid rgba(255, 255, 255, .08);
      border-right: 1px solid rgba(255, 255, 255, .08);
    }

    .win-hero-frame::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 1;
      background:
        linear-gradient(90deg, rgba(0,0,0,.92) 0%, rgba(0,0,0,.72) 31%, rgba(0,0,0,.18) 61%, rgba(0,0,0,.06) 100%),
        linear-gradient(0deg, rgba(0,0,0,.42), rgba(0,0,0,0) 44%);
      pointer-events: none;
    }

    .win-hero-img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
    }

    .win-hero-copy {
      position: relative;
      z-index: 2;
      width: min(620px, calc(100% - 48px));
      margin-left: max(24px, calc((100vw - var(--win-max)) / 2));
      padding: 52px 0;
    }

    .win-hero h1 {
      max-width: 620px;
      color: #fff;
      font-size: clamp(42px, 5.2vw, 76px);
      line-height: .96;
      font-weight: 950;
      text-transform: uppercase;
    }

    .win-hero p {
      max-width: 520px;
      margin-top: 22px;
      color: #f0eef0;
      font-size: 18px;
      font-weight: 700;
    }

    .win-cta-row {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-top: 28px;
    }

    .win-cta {
      min-height: 52px;
      display: inline-grid;
      place-items: center;
      border-radius: 8px;
      padding: 0 28px;
      color: #fff;
      background: var(--win-red);
      box-shadow: 0 18px 35px rgba(223, 13, 34, .35);
      font-size: 14px;
      font-weight: 950;
      text-transform: uppercase;
    }

    .win-cta.alt {
      color: #fff;
      background: rgba(255, 255, 255, .08);
      box-shadow: inset 0 0 0 1px rgba(242, 183, 45, .7);
    }

    .win-hero-points {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
      max-width: 560px;
      margin-top: 28px;
    }

    .win-hero-point {
      min-height: 74px;
      border-radius: 8px;
      padding: 14px;
      background: rgba(255, 255, 255, .08);
      border: 1px solid rgba(255, 255, 255, .16);
      backdrop-filter: blur(8px);
    }

    .win-hero-point b {
      display: block;
      color: var(--win-gold);
      font-size: 24px;
      line-height: 1;
      font-weight: 950;
    }

    .win-hero-point span {
      display: block;
      margin-top: 8px;
      color: #fff;
      font-size: 12px;
      font-weight: 850;
    }

    .win-section {
      padding: 62px 0;
      background: #fff;
    }

    .win-intro-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.08fr) minmax(320px, .92fr);
      gap: 56px;
      align-items: start;
    }

    .win-copy h2,
    .win-section-head h2 {
      color: var(--win-ink);
      font-size: clamp(32px, 4.1vw, 54px);
      line-height: 1.04;
      font-weight: 950;
    }

    .win-copy p {
      margin-top: 16px;
      color: #333844;
      font-size: 16px;
    }

    .win-link-line {
      margin-top: 22px;
      padding: 18px 20px;
      border-left: 4px solid var(--win-red);
      border-radius: 0 8px 8px 0;
      background: #fff5f6;
      color: #171717;
      font-weight: 900;
    }

    .win-link-line a {
      color: var(--win-red);
    }

    .win-feature-list {
      display: grid;
      gap: 14px;
      margin-top: 4px;
    }

    .win-feature {
      display: grid;
      grid-template-columns: 54px 1fr;
      gap: 16px;
      align-items: center;
      padding: 18px;
      border: 1px solid var(--win-line);
      border-radius: 8px;
      background: #fff;
      box-shadow: 0 18px 46px rgba(20, 22, 28, .08);
    }

    .win-feature b {
      height: 54px;
      display: grid;
      place-items: center;
      border-radius: 8px;
      color: #fff;
      background: linear-gradient(145deg, var(--win-red), var(--win-red-dark));
      font-size: 20px;
      font-weight: 950;
    }

    .win-feature h3 {
      font-size: 18px;
      line-height: 1.2;
      font-weight: 950;
    }

    .win-feature p {
      margin-top: 5px;
      color: var(--win-muted);
      font-size: 14px;
    }

    .win-promo {
      padding: 0 0 62px;
      background: #fff;
    }

    .win-promo-inner {
      display: grid;
      grid-template-columns: .84fr 1.16fr;
      min-height: 230px;
      overflow: hidden;
      border-radius: 8px;
      color: #fff;
      background:
        radial-gradient(circle at 18% 36%, rgba(242, 183, 45, .28), transparent 28%),
        linear-gradient(110deg, #08090c 0%, #20080b 52%, #08090c 100%);
      box-shadow: 0 24px 70px rgba(8, 9, 12, .22);
    }

    .win-promo-copy {
      padding: 34px;
      display: grid;
      align-content: center;
    }

    .win-promo-copy h2 {
      font-size: clamp(28px, 3.4vw, 44px);
      line-height: 1.04;
      font-weight: 950;
    }

    .win-promo-copy p {
      margin-top: 12px;
      color: #efedf0;
      font-size: 15px;
    }

    .win-promo-rail {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      background: rgba(255,255,255,.12);
    }

    .win-promo-item {
      padding: 28px;
      background: rgba(255,255,255,.06);
    }

    .win-promo-item b {
      display: block;
      color: var(--win-gold);
      font-size: 34px;
      line-height: 1;
    }

    .win-promo-item h3 {
      margin-top: 18px;
      color: #fff;
      font-size: 18px;
      font-weight: 950;
    }

    .win-promo-item p {
      margin-top: 8px;
      color: #d9dbe1;
      font-size: 14px;
    }

    .win-steps {
      padding: 62px 0;
      background: #f7f7f8;
    }

    .win-section-head {
      display: grid;
      grid-template-columns: .72fr .55fr;
      gap: 36px;
      align-items: end;
      margin-bottom: 28px;
    }

    .win-section-head p {
      color: var(--win-muted);
      font-size: 16px;
    }

    .win-step-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
    }

    .win-step {
      min-height: 238px;
      padding: 24px;
      border: 1px solid var(--win-line);
      border-radius: 8px;
      background: #fff;
      position: relative;
    }

    .win-step::before {
      content: "";
      position: absolute;
      left: 24px;
      right: 24px;
      top: 72px;
      height: 3px;
      background: linear-gradient(90deg, var(--win-red), var(--win-gold));
    }

    .win-step b {
      width: 54px;
      height: 54px;
      display: grid;
      place-items: center;
      border-radius: 8px;
      color: #fff;
      background: var(--win-red);
      font-size: 22px;
      font-weight: 950;
      position: relative;
      z-index: 1;
    }

    .win-step h3 {
      margin-top: 46px;
      font-size: 20px;
      line-height: 1.16;
      font-weight: 950;
    }

    .win-step p {
      margin-top: 10px;
      color: var(--win-muted);
      font-size: 14px;
    }

    .win-products {
      padding: 62px 0;
      background: #fff;
    }

    .win-product-grid {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 14px;
    }

    .win-product {
      min-height: 178px;
      overflow: hidden;
      border: 1px solid var(--win-line);
      border-radius: 8px;
      background: #fff;
    }

    .win-product-top {
      height: 72px;
      display: grid;
      place-items: center;
      color: #fff;
      background:
        linear-gradient(135deg, rgba(223,13,34,.95), rgba(8,9,12,.95)),
        radial-gradient(circle at 26% 25%, rgba(242,183,45,.7), transparent 34%);
      font-size: 30px;
      font-weight: 950;
    }

    .win-product-body {
      padding: 18px;
      text-align: center;
    }

    .win-product h3 {
      font-size: 16px;
      line-height: 1.2;
      font-weight: 950;
      text-transform: uppercase;
    }

    .win-product p {
      margin-top: 8px;
      color: var(--win-muted);
      font-size: 13px;
    }

    .win-news {
      padding: 62px 0;
      background: #f7f7f8;
    }

    .win-news-list {
      display: grid;
      gap: 12px;
    }

    .win-news-row {
      display: grid;
      grid-template-columns: 108px 1fr 112px;
      gap: 18px;
      align-items: center;
      padding: 14px;
      border: 1px solid var(--win-line);
      border-radius: 8px;
      background: #fff;
    }

    .win-news-thumb {
      height: 72px;
      display: grid;
      place-items: center;
      border-radius: 8px;
      color: #fff;
      background: linear-gradient(135deg, var(--win-red), #0a0b10 70%);
      font-size: 20px;
      font-weight: 950;
    }

    .win-news-row h3 {
      font-size: 19px;
      line-height: 1.24;
      font-weight: 950;
    }

    .win-news-row p {
      margin-top: 5px;
      color: var(--win-muted);
      font-size: 14px;
    }

    .win-news-date {
      color: #6d7280;
      font-size: 13px;
      font-weight: 850;
      text-align: right;
    }

    .win-faq {
      padding: 62px 0;
      background: #fff;
    }

    .win-faq-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
    }

    .win-faq-item {
      padding: 24px;
      border: 1px solid var(--win-line);
      border-radius: 8px;
      background: #fff;
    }

    .win-faq-item h3 {
      font-size: 19px;
      line-height: 1.18;
      font-weight: 950;
    }

    .win-faq-item p {
      margin-top: 10px;
      color: var(--win-muted);
      font-size: 14px;
    }

    .win-footer {
      color: #fff;
      background: #101114;
    }

    .win-footer-inner {
      display: grid;
      grid-template-columns: 1.1fr repeat(3, .7fr);
      gap: 34px;
      padding: 42px 0;
    }

    .win-footer strong {
      color: #fff;
      font-size: 26px;
      font-weight: 950;
    }

    .win-footer p,
    .win-footer a {
      color: #c9cdd6;
      font-size: 14px;
    }

    .win-footer p {
      margin-top: 10px;
    }

    .win-footer h3 {
      color: var(--win-gold);
      font-size: 14px;
      font-weight: 950;
      text-transform: uppercase;
    }

    .win-footer ul {
      display: grid;
      gap: 7px;
      margin: 12px 0 0;
      padding: 0;
      list-style: none;
    }

    @media (max-width: 1080px) {
      .win-top-inner {
        flex-wrap: wrap;
        justify-content: center;
        padding: 14px 0;
      }

      .win-top-note {
        order: 3;
        width: 100%;
      }

      .win-nav {
        justify-content: flex-start;
        overflow-x: auto;
      }

      .win-nav a {
        flex: 0 0 auto;
      }

      .win-intro-grid,
      .win-section-head,
      .win-promo-inner {
        grid-template-columns: 1fr;
      }

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

      .win-product-grid {
        grid-template-columns: repeat(3, 1fr);
      }

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

    @media (max-width: 620px) {
      .win-container {
        width: min(var(--win-max), calc(100% - 30px));
      }

      .win-top-inner {
        display: grid;
        justify-items: stretch;
      }

      .win-brand {
        justify-content: center;
      }

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

      .win-btn {
        padding: 0 14px;
      }

      .win-nav {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        overflow: visible;
        white-space: normal;
      }

      .win-nav a {
        min-height: 44px;
        padding: 0 10px;
        text-align: center;
        line-height: 1.25;
      }

      .win-hero-frame {
        min-height: 620px;
        align-items: end;
      }

      .win-hero-frame::before {
        background:
          linear-gradient(0deg, rgba(0,0,0,.96) 0%, rgba(0,0,0,.82) 50%, rgba(0,0,0,.18) 100%),
          linear-gradient(90deg, rgba(0,0,0,.2), rgba(0,0,0,.2));
      }

      .win-hero-img {
        height: 54%;
        object-position: 60% top;
      }

      .win-hero-copy {
        width: min(calc(100% - 30px), 520px);
        margin: 0 auto;
        padding: 300px 0 34px;
      }

      .win-hero h1 {
        font-size: 38px;
      }

      .win-hero p {
        font-size: 15px;
      }

      .win-cta-row,
      .win-hero-points,
      .win-promo-rail,
      .win-step-grid,
      .win-product-grid,
      .win-faq-grid,
      .win-footer-inner {
        grid-template-columns: 1fr;
      }

      .win-cta-row {
        display: grid;
      }

      .win-section,
      .win-steps,
      .win-products,
      .win-news,
      .win-faq {
        padding: 46px 0;
      }

      .win-promo {
        padding-bottom: 46px;
      }

      .win-news-row {
        grid-template-columns: 82px 1fr;
      }

      .win-news-date {
        grid-column: 2;
        text-align: left;
      }
    }


.win-article-page {
  background: #f7f7f8;
}

.win-article-hero {
  color: #fff;
  background: #08090c;
}

.win-article-hero-inner {
  min-height: 350px;
  display: grid;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.win-article-hero-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.94) 0%, rgba(0,0,0,.72) 42%, rgba(0,0,0,.22) 100%),
    url("/assets/33win-hero.png") center / cover;
}

.win-article-hero-copy {
  position: relative;
  z-index: 1;
  max-width: 820px;
  padding: 60px 0;
}

.win-article-hero h1 {
  color: #fff;
  font-size: clamp(36px, 5vw, 66px);
  line-height: 1.02;
  font-weight: 950;
}

.win-article-hero p {
  max-width: 720px;
  margin-top: 16px;
  color: #f2ecec;
  font-size: 17px;
}

.win-article-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 30px;
  align-items: start;
  padding-top: 44px;
  padding-bottom: 66px;
}

.win-article-card,
.win-article-side-card {
  border: 1px solid var(--win-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(8, 9, 12, .08);
}

.win-article-card {
  padding: 34px;
}

.win-article-card > h1 {
  color: var(--win-ink);
  font-size: clamp(31px, 4vw, 48px);
  line-height: 1.08;
  font-weight: 950;
}

.win-article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
  color: #656d7c;
  font-size: 13px;
  font-weight: 850;
}

.win-article-meta span {
  min-height: 32px;
  display: inline-grid;
  place-items: center;
  border-radius: 8px;
  padding: 0 12px;
  background: #f7f7f8;
}

.win-article-visual {
  margin: 28px 0 0;
  overflow: hidden;
  border-radius: 8px;
  background: #08090c;
}

.win-article-visual img {
  width: 100%;
  max-height: 380px;
  object-fit: cover;
}

.win-article-body {
  margin-top: 28px;
  color: #2d333e;
  font-size: 16px;
}

.win-article-body h2,
.win-article-body h3 {
  margin-top: 28px;
  color: var(--win-ink);
  line-height: 1.2;
}

.win-article-body p,
.win-article-body ul,
.win-article-body ol {
  margin-top: 16px;
}

.win-article-body a {
  color: var(--win-red);
  font-weight: 900;
}

.win-article-updated {
  padding-top: 16px;
  border-top: 1px solid var(--win-line);
  color: #6d7280;
  font-size: 14px;
  font-weight: 850;
}

.win-article-actions {
  margin-top: 28px;
  padding: 20px;
  border-radius: 8px;
  background: #fff5f6;
}

.win-article-actions ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.win-article-actions a {
  color: var(--win-ink);
  font-weight: 950;
}

.win-article-side {
  display: grid;
  gap: 18px;
}

.win-article-side-card {
  overflow: hidden;
}

.win-side-visual {
  height: 160px;
  background:
    linear-gradient(90deg, rgba(8, 9, 12, .1), rgba(8, 9, 12, .72)),
    url("/assets/33win-hero.png") center / cover;
}

.win-side-body {
  padding: 22px;
}

.win-side-body h2,
.win-side-body h3 {
  color: var(--win-ink);
  font-size: 21px;
  line-height: 1.18;
  font-weight: 950;
}

.win-side-body p,
.win-side-body li {
  color: var(--win-muted);
  font-size: 14px;
}

.win-side-body p {
  margin-top: 10px;
}

.win-side-body ul {
  margin: 14px 0 0;
  padding-left: 18px;
}

@media (max-width: 1080px) {
  .win-article-wrap {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .win-article-hero-inner {
    min-height: 430px;
  }

  .win-article-hero-inner::before {
    background:
      linear-gradient(0deg, rgba(0,0,0,.96) 0%, rgba(0,0,0,.82) 52%, rgba(0,0,0,.22) 100%),
      url("/assets/33win-hero.png") center top / cover;
  }

  .win-article-hero-copy {
    align-self: end;
    padding: 220px 0 36px;
  }

  .win-article-card {
    padding: 22px;
  }
}

