:root {
  --black: #161616;
  --ink: #2f3338;
  --muted: #69727e;
  --red: #de2028;
  --red-dark: #a90e18;
  --gold: #ffd331;
  --gold-deep: #f49b12;
  --line: #eceff3;
  --soft: #f7f8fa;
  --white: #ffffff;
  --shadow: 0 18px 46px rgba(88, 18, 22, .14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  box-shadow: 0 8px 22px rgba(0, 0, 0, .18);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 0 13vw;
  background: var(--black);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-size: 36px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
}

.brand span:last-child {
  color: var(--white);
  text-shadow: 0 3px 0 rgba(0, 0, 0, .2);
}

.brand-ball {
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, transparent 0 18%, #fff 19% 28%, transparent 29%),
    conic-gradient(from 18deg, #fff 0 12%, #de2028 12% 22%, #fff 22% 36%, #de2028 36% 48%, #fff 48% 64%, #de2028 64% 78%, #fff 78% 100%);
  border: 4px solid #fff;
  box-shadow: inset 0 0 0 4px var(--red), 0 6px 18px rgba(222, 32, 40, .35);
}

.auth {
  display: flex;
  align-items: center;
  gap: 18px;
}

.auth a {
  min-width: 112px;
  padding: 10px 20px;
  color: var(--white);
  background: #3e577b;
  border-radius: 24px;
  font-weight: 800;
  font-size: 15px;
  text-align: center;
}

.auth a:first-child {
  background: var(--red);
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 0;
  min-height: 70px;
  padding: 0 7vw;
  background: var(--red);
}

.main-nav a {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 22px;
  color: #161616;
  font-size: 16px;
  font-weight: 900;
  text-transform: uppercase;
}

.main-nav a.active {
  color: var(--gold);
}

.main-nav a.active::after {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 14px;
  height: 4px;
  background: var(--gold);
  border-radius: 99px;
}

.hero {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background: #1b0204;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(16, 0, 2, .92) 0%, rgba(42, 2, 6, .77) 40%, rgba(46, 0, 4, .18) 76%),
    linear-gradient(180deg, rgba(0, 0, 0, .1), rgba(0, 0, 0, .32));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: 86px 0 96px;
  color: var(--white);
}

.hero-content h1 {
  max-width: 690px;
  margin: 0 0 22px;
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1.08;
  letter-spacing: 0;
  font-weight: 900;
  text-shadow: 0 6px 20px rgba(0, 0, 0, .45);
}

.hero-content p {
  max-width: 640px;
  margin: 0 0 34px;
  color: rgba(255, 255, 255, .86);
  font-size: 20px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 168px;
  min-height: 50px;
  padding: 13px 24px;
  border-radius: 7px;
  font-weight: 900;
  line-height: 1.2;
}

.btn.primary {
  color: #171717;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  box-shadow: 0 12px 28px rgba(244, 155, 18, .32);
}

.btn.ghost {
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, .7);
  background: rgba(0, 0, 0, .2);
}

.section {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: 54px 0;
}

.intro {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 34px;
  align-items: start;
}

h2 {
  margin: 0 0 20px;
  color: #45494f;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.18;
  font-weight: 900;
  letter-spacing: 0;
}

.section-copy p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 18px;
}

.section-copy strong {
  color: #415777;
}

.quick-panel {
  display: grid;
  gap: 16px;
  padding: 24px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.quick-panel div {
  padding: 18px 20px;
  background: var(--white);
  border-left: 5px solid var(--red);
  border-radius: 10px;
}

.quick-panel span {
  display: block;
  color: var(--red);
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
}

.quick-panel p {
  margin: 7px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.products {
  padding-top: 18px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.product-grid article {
  min-height: 230px;
  padding: 24px;
  border-radius: 12px;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 5%, rgba(255, 211, 49, .28), transparent 34%),
    linear-gradient(145deg, #232323, #111 65%);
  border: 1px solid rgba(222, 32, 40, .38);
  box-shadow: 0 16px 34px rgba(0, 0, 0, .18);
}

.product-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 26px;
  color: #171717;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  border-radius: 50%;
  font-weight: 900;
}

.product-grid h3,
.trust-grid h3,
.footer h3 {
  margin: 0 0 10px;
  font-size: 21px;
  line-height: 1.25;
}

.product-grid p,
.trust-grid p {
  margin: 0;
  color: rgba(255, 255, 255, .72);
}

.promo-band {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 34px;
  align-items: center;
  margin: 34px auto 10px;
  width: min(1120px, calc(100% - 48px));
  padding: 42px;
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(0, 0, 0, .9), rgba(160, 12, 24, .95)),
    radial-gradient(circle at 85% 10%, rgba(255, 211, 49, .45), transparent 35%);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.promo-band h2 {
  color: var(--white);
}

.promo-band p {
  margin: 0;
  color: rgba(255, 255, 255, .74);
}

.promo-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.promo-list span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 102px;
  padding: 16px;
  color: var(--gold);
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 211, 49, .32);
  border-radius: 12px;
  font-weight: 900;
  text-align: center;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 22px;
}

.section-heading h2 {
  margin-bottom: 0;
}

.section-heading a {
  flex: 0 0 auto;
  padding: 10px 18px;
  color: var(--red);
  border: 1px solid rgba(222, 32, 40, .35);
  border-radius: 24px;
  font-weight: 900;
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.article-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.thumb {
  display: block;
  position: relative;
  height: 190px;
  background: #111;
}

.thumb::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 54%;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, .65));
}

.thumb span {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  color: #151515;
  background: linear-gradient(135deg, #fff0a9, var(--gold-deep));
  border-radius: 4px;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.05;
  text-align: center;
}

.thumb.sports {
  background:
    radial-gradient(circle at 72% 34%, rgba(255, 211, 49, .82), transparent 18%),
    radial-gradient(circle at 36% 54%, rgba(222, 32, 40, .88), transparent 24%),
    linear-gradient(135deg, #101010, #2f0a10 70%);
}

.thumb.casino {
  background:
    radial-gradient(circle at 64% 28%, rgba(255, 255, 255, .55), transparent 15%),
    radial-gradient(circle at 38% 60%, rgba(255, 211, 49, .72), transparent 20%),
    linear-gradient(135deg, #180405, #82141d 72%);
}

.thumb.promo {
  background:
    radial-gradient(circle at 75% 25%, rgba(255, 211, 49, .75), transparent 18%),
    linear-gradient(135deg, #232323, #a90e18 80%);
}

.article-card .meta {
  margin: 22px 22px 8px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.article-card h3 {
  margin: 0 22px 12px;
  color: #30343a;
  font-size: 21px;
  line-height: 1.3;
}

.article-card h3 a {
  display: inline;
  margin: 0;
  color: inherit;
}

.article-card p:not(.meta) {
  margin: 0 22px 18px;
  color: var(--muted);
}

.article-card a {
  display: inline-flex;
  margin: 0 22px 24px;
  color: var(--red);
  font-weight: 900;
}

.article-card a.thumb {
  display: block;
  margin: 0;
  color: inherit;
}

.trust {
  padding-top: 22px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.trust-grid div {
  padding: 26px;
  color: var(--white);
  background: linear-gradient(145deg, #252525, #151515);
  border-top: 4px solid var(--red);
  border-radius: 12px;
}

.footer {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 36px;
  padding: 44px 13vw;
  color: rgba(255, 255, 255, .76);
  background: #161616;
  border-top: 8px solid var(--red);
}

.footer-brand {
  margin-bottom: 16px;
}

.footer p {
  margin: 14px 0 0;
  max-width: 340px;
}

.footer h3 {
  color: var(--white);
}

.footer a:not(.brand) {
  display: block;
  margin: 8px 0;
  color: rgba(255, 255, 255, .76);
}

.article-hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(16, 0, 2, .94), rgba(130, 10, 18, .86)),
    url("68win-hero.png") center right / cover no-repeat;
}

.article-hero .section {
  padding: 76px 0 84px;
}

.article-hero h1 {
  max-width: 820px;
  margin: 0 0 18px;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.1;
  font-weight: 900;
}

.article-hero p {
  max-width: 700px;
  margin: 0;
  color: rgba(255, 255, 255, .78);
  font-size: 18px;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 34px;
  align-items: start;
}

.article-main {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.article-main h1 {
  margin: 0 0 14px;
  color: #30343a;
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.18;
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 28px;
}

.meta-row span {
  display: inline-flex;
  padding: 6px 12px;
  color: var(--red);
  background: rgba(222, 32, 40, .08);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
}

.article-main h2 {
  margin-top: 30px;
  font-size: 28px;
}

.article-main h3 {
  margin: 24px 0 8px;
  color: #30343a;
  font-size: 22px;
}

.article-main p,
.article-main li {
  color: var(--muted);
  font-size: 17px;
}

.article-main ul {
  padding-left: 20px;
}

.article-nav {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.article-nav a {
  color: var(--red);
  font-weight: 900;
}

.side-panel {
  padding: 24px;
  color: var(--white);
  background: linear-gradient(145deg, #252525, #141414);
  border-top: 4px solid var(--red);
  border-radius: 12px;
}

.side-panel h3 {
  margin: 0 0 16px;
  font-size: 23px;
}

.side-panel a {
  display: block;
  padding: 13px 0;
  color: rgba(255, 255, 255, .78);
  border-top: 1px solid rgba(255, 255, 255, .12);
  font-weight: 700;
}

.responsible-note {
  margin-top: 20px;
  padding: 14px;
  color: #171717;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  border-radius: 9px;
  font-weight: 900;
  text-align: center;
}

@media (max-width: 960px) {
  .topbar,
  .footer {
    padding-left: 24px;
    padding-right: 24px;
  }

  .main-nav {
    justify-content: flex-start;
    overflow-x: auto;
    padding: 0 18px;
  }

  .main-nav a {
    flex: 0 0 auto;
  }

  .intro,
  .promo-band,
  .detail-layout,
  .footer {
    grid-template-columns: 1fr;
  }

  .product-grid,
  .article-grid,
  .trust-grid,
  .promo-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .topbar {
    min-height: auto;
    padding-top: 14px;
    padding-bottom: 14px;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .brand {
    font-size: 30px;
  }

  .brand-ball {
    width: 44px;
    height: 44px;
  }

  .auth {
    width: 100%;
    align-self: stretch;
    gap: 10px;
  }

  .auth a {
    flex: 1;
    min-width: 0;
    padding: 10px 12px;
    white-space: nowrap;
  }

  .hero {
    min-height: 620px;
  }

  .hero-bg {
    object-position: 64% 50%;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(12, 0, 1, .9) 0%, rgba(32, 0, 2, .72) 50%, rgba(32, 0, 2, .3) 100%);
  }

  .hero-content {
    width: min(100% - 32px, 560px);
    padding-top: 52px;
  }

  .hero-content h1 {
    font-size: 37px;
  }

  .hero-content p {
    font-size: 17px;
  }

  .section,
  .promo-band {
    width: min(100% - 32px, 560px);
  }

  .product-grid,
  .article-grid,
  .trust-grid,
  .promo-list {
    grid-template-columns: 1fr;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* codex-68win-supplement:start */
.main-nav {
  flex-wrap: wrap;
}

.main-nav a {
  white-space: nowrap;
}

.promo-list a,
.product-card-link {
  color: inherit;
}

.promo-list a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 102px;
  padding: 16px;
  color: var(--gold);
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 211, 49, .32);
  border-radius: 12px;
  font-weight: 900;
  text-align: center;
}

.product-card-link article {
  height: 100%;
}

.columns-68win {
  padding-top: 28px;
}

.columns-68win .product-grid {
  grid-template-columns: repeat(4, 1fr);
}

.article-main blockquote {
  margin: 28px 0;
  padding: 20px 22px;
  color: #30343a;
  background: var(--soft);
  border-left: 5px solid var(--red);
  border-radius: 12px;
  font-weight: 800;
}

@media (max-width: 960px) {
  .columns-68win .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .main-nav {
    flex-wrap: nowrap;
  }

  .columns-68win .product-grid {
    grid-template-columns: 1fr;
  }
}
/* codex-68win-supplement:end */
