:root {
  --w79-green: #07943f;
  --w79-green-dark: #003d25;
  --w79-green-deep: #011c13;
  --w79-lime: #5bd336;
  --w79-gold: #ffd33d;
  --w79-gold-deep: #d8980c;
  --w79-black: #050707;
  --w79-ink: #17221d;
  --w79-muted: #64726b;
  --w79-line: #dfe7e2;
  --w79-soft: #f4faf6;
  --w79-white: #ffffff;
  --w79-shadow: 0 16px 36px rgba(2, 28, 17, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--w79-ink);
  background: var(--w79-white);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.65;
}

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

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

.w79-shell {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.w79-top {
  color: #fff;
  background: #050707;
  border-bottom: 1px solid rgba(255, 211, 61, 0.2);
}

.w79-top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 92px;
}

.w79-logo {
  display: inline-flex;
  align-items: center;
  gap: 0;
  color: var(--w79-gold);
  font-size: 44px;
  font-style: italic;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
}

.w79-logo span:first-child {
  color: var(--w79-green);
}

.w79-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.w79-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 26px;
  border: 2px solid transparent;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
}

.w79-btn-green {
  color: #fff;
  background: linear-gradient(180deg, #12b95a, var(--w79-green));
  box-shadow: 0 10px 22px rgba(7, 148, 63, 0.28);
}

.w79-btn-dark {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--w79-gold);
}

.w79-btn-outline {
  color: #fff;
  background: rgba(0, 0, 0, 0.28);
  border-color: rgba(255, 255, 255, 0.5);
}

.w79-btn-gold {
  color: #122015;
  background: linear-gradient(180deg, #ffe37b, var(--w79-gold));
  box-shadow: 0 10px 22px rgba(255, 211, 61, 0.3);
}

.w79-nav-wrap {
  position: sticky;
  top: 0;
  z-index: 25;
  background: linear-gradient(180deg, #04a64d, #05813d);
  box-shadow: 0 6px 18px rgba(0, 80, 38, 0.22);
}

.w79-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 38px;
  min-height: 58px;
  overflow-x: auto;
  scrollbar-width: none;
}

.w79-nav::-webkit-scrollbar {
  display: none;
}

.w79-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 58px;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.w79-nav a.is-active::after,
.w79-nav a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 8px;
  height: 4px;
  border-radius: 999px;
  background: var(--w79-gold);
}

.w79-hero {
  color: #fff;
  background:
    radial-gradient(circle at 82% 30%, rgba(255, 211, 61, 0.18), transparent 30%),
    linear-gradient(110deg, #03120c 0%, #062719 45%, #05110d 100%);
}

.w79-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(500px, 1.22fr);
  align-items: center;
  gap: 30px;
  min-height: 500px;
  padding: 44px 0;
}

.w79-hero h1 {
  margin: 0 0 20px;
  max-width: 610px;
  font-size: 52px;
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: 0;
}

.w79-hero h1 strong {
  color: var(--w79-green);
  font-style: italic;
}

.w79-hero p {
  max-width: 510px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
}

.w79-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.w79-hero-art {
  overflow: hidden;
  min-width: 0;
  border-radius: 8px;
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.36);
}

.w79-hero-art img {
  width: 100%;
  aspect-ratio: 2.13 / 1;
  object-fit: cover;
}

.w79-section {
  padding: 46px 0;
  background: #fff;
}

.w79-section-soft {
  background: var(--w79-soft);
}

.w79-section-title {
  margin: 0 0 28px;
  color: var(--w79-ink);
  font-size: 30px;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  letter-spacing: 0;
}

.w79-section-title::after {
  content: "";
  display: block;
  width: 42px;
  height: 4px;
  margin: 10px auto 0;
  border-radius: 999px;
  background: var(--w79-green);
}

.w79-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 38px;
  align-items: center;
}

.w79-intro h2 {
  margin: 0 0 12px;
  font-size: 32px;
  font-weight: 900;
  line-height: 1.2;
}

.w79-green-line {
  width: 58px;
  height: 4px;
  margin: 0 0 20px;
  border-radius: 999px;
  background: var(--w79-green);
}

.w79-intro p {
  margin: 0 0 16px;
  color: var(--w79-muted);
  font-size: 16px;
}

.w79-intro-media {
  overflow: hidden;
  border: 1px solid var(--w79-line);
  border-radius: 8px;
  box-shadow: var(--w79-shadow);
}

.w79-intro-media img {
  width: 100%;
  aspect-ratio: 16 / 8.2;
  object-fit: cover;
}

.w79-feature-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  margin-top: 30px;
  border: 1px solid var(--w79-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(2, 28, 17, 0.08);
}

.w79-feature-item {
  min-width: 0;
  padding: 22px 16px;
  text-align: center;
  border-right: 1px solid var(--w79-line);
}

.w79-feature-item:last-child {
  border-right: 0;
}

.w79-feature-icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  place-items: center;
  color: #fff;
  border-radius: 50%;
  background: var(--w79-green);
}

.w79-feature-icon svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
  stroke-width: 2.3;
  fill: none;
}

.w79-feature-item h3 {
  margin: 0 0 7px;
  font-size: 15px;
  font-weight: 900;
}

.w79-feature-item p {
  margin: 0;
  color: var(--w79-muted);
  font-size: 12px;
}

.w79-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.w79-card {
  overflow: hidden;
  min-width: 0;
  border: 1px solid var(--w79-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(2, 28, 17, 0.08);
}

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

.w79-card-body {
  padding: 18px;
}

.w79-card h3 {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 900;
}

.w79-card p {
  min-height: 70px;
  margin: 0 0 12px;
  color: var(--w79-muted);
  font-size: 14px;
}

.w79-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--w79-green);
  font-size: 14px;
  font-weight: 900;
}

.w79-guide {
  padding: 26px;
  border: 1px solid var(--w79-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(2, 28, 17, 0.06);
}

.w79-guide-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
}

.w79-step {
  position: relative;
  min-width: 0;
  padding: 0 22px;
  text-align: center;
}

.w79-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 36px;
  right: -28px;
  width: 56px;
  border-top: 2px dotted var(--w79-green);
}

.w79-step-num {
  display: grid;
  width: 28px;
  height: 28px;
  margin: 0 auto 10px;
  place-items: center;
  color: #fff;
  border-radius: 50%;
  background: var(--w79-green);
  font-size: 13px;
  font-weight: 900;
}

.w79-step-icon {
  display: grid;
  width: 56px;
  height: 56px;
  margin: 0 auto 12px;
  place-items: center;
  color: #fff;
  border-radius: 50%;
  background: var(--w79-green);
}

.w79-step-icon svg {
  width: 30px;
  height: 30px;
  stroke: currentColor;
  stroke-width: 2.2;
  fill: none;
}

.w79-step h3 {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 900;
}

.w79-step p {
  margin: 0;
  color: var(--w79-muted);
  font-size: 13px;
}

.w79-money-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  overflow: hidden;
  margin-top: 24px;
  border: 2px solid var(--w79-gold);
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(90deg, var(--w79-green-dark), #032a1c);
}

.w79-money-item {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 22px;
}

.w79-money-icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: var(--w79-gold);
  border: 2px solid rgba(255, 211, 61, 0.7);
  border-radius: 8px;
}

.w79-money-icon svg {
  width: 34px;
  height: 34px;
  stroke: currentColor;
  stroke-width: 2.2;
  fill: none;
}

.w79-money-item h3 {
  margin: 0 0 4px;
  color: var(--w79-gold);
  font-size: 18px;
}

.w79-money-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
}

.w79-news-list {
  display: grid;
  gap: 10px;
}

.w79-news-row {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr) 110px 26px;
  align-items: center;
  gap: 20px;
  min-width: 0;
  padding: 12px;
  border: 1px solid var(--w79-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(2, 28, 17, 0.05);
}

.w79-news-row img {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 6px;
  object-fit: cover;
}

.w79-news-row h3 {
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.35;
}

.w79-news-row p {
  margin: 0;
  color: var(--w79-muted);
  font-size: 13px;
}

.w79-news-date {
  color: var(--w79-muted);
  font-size: 13px;
  text-align: right;
  white-space: nowrap;
}

.w79-news-arrow {
  color: var(--w79-green);
  font-size: 28px;
  font-weight: 900;
  text-align: center;
}

.w79-news-more,
.w79-pagination {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.w79-pagination ul,
.w79-pagination ol {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  padding: 0;
  margin: 0;
  list-style: none;
}

.w79-pagination a,
.w79-pagination span,
.w79-pagination li {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid var(--w79-line);
  border-radius: 6px;
  color: var(--w79-green);
  background: #fff;
  font-size: 14px;
  font-weight: 800;
}

.w79-faq {
  color: #fff;
  background: linear-gradient(135deg, var(--w79-green-dark), #021811);
}

.w79-faq .w79-section-title {
  color: #fff;
  text-align: left;
}

.w79-faq .w79-section-title::after {
  margin-left: 0;
  background: var(--w79-gold);
}

.w79-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.w79-faq-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 52px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.04);
  font-weight: 800;
}

.w79-faq-item span {
  color: var(--w79-gold);
  font-size: 24px;
}

.w79-article-hero {
  padding: 70px 0 62px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(1, 28, 19, 0.96), rgba(5, 129, 61, 0.72)),
    url("/assets/win79-hero.png") center / cover;
}

.w79-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 0 0 18px;
  list-style: none;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 800;
}

.w79-breadcrumb li:not(:last-child)::after {
  content: "/";
  margin-left: 8px;
  color: rgba(255, 255, 255, 0.45);
}

.w79-article-title {
  max-width: 850px;
  margin: 0 0 14px;
  font-size: 42px;
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: 0;
}

.w79-article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  font-weight: 800;
}

.w79-article-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 30px;
  padding: 52px 0 70px;
}

.w79-article-main {
  overflow: hidden;
  min-width: 0;
  border: 1px solid var(--w79-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--w79-shadow);
}

.w79-article-cover img {
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
}

.w79-article-body {
  padding: 34px;
  font-size: 17px;
}

.w79-article-body h2,
.w79-article-body h3 {
  line-height: 1.25;
  letter-spacing: 0;
}

.w79-article-body h2 {
  margin: 30px 0 12px;
  font-size: 27px;
}

.w79-article-body p {
  margin: 0 0 16px;
}

.w79-article-body img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.w79-article-body ul,
.w79-article-body ol {
  padding-left: 22px;
  margin: 0 0 18px;
}

.w79-page-title {
  margin-bottom: 14px;
  color: var(--w79-green-dark);
  font-size: 20px;
  font-weight: 900;
}

.w79-pagebreak {
  margin-top: 24px;
  color: var(--w79-green);
  font-weight: 800;
}

.w79-article-nav {
  display: grid;
  gap: 8px;
  padding: 0 34px 32px;
  color: var(--w79-green);
  font-weight: 800;
}

.w79-sidebar {
  display: grid;
  gap: 18px;
  align-content: start;
}

.w79-side-box {
  padding: 22px;
  border: 1px solid var(--w79-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(2, 28, 17, 0.06);
}

.w79-side-box h2 {
  margin: 0 0 12px;
  color: var(--w79-green-dark);
  font-size: 20px;
}

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

.w79-side-box ul {
  display: grid;
  gap: 8px;
  padding-left: 20px;
  margin: 0;
}

.w79-footer {
  color: rgba(255, 255, 255, 0.78);
  background: linear-gradient(180deg, #052417, #030907);
}

.w79-footer-main {
  display: grid;
  grid-template-columns: 1.35fr 0.82fr 0.82fr 0.82fr 1.1fr;
  gap: 34px;
  padding: 46px 0 36px;
}

.w79-footer .w79-logo {
  margin-bottom: 16px;
  font-size: 36px;
}

.w79-footer h3 {
  margin: 0 0 15px;
  color: var(--w79-gold);
  font-size: 15px;
  text-transform: uppercase;
}

.w79-footer p,
.w79-footer a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

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

.w79-support {
  padding: 18px;
  border: 1px solid rgba(255, 211, 61, 0.36);
  border-radius: 8px;
}

.w79-support strong {
  display: block;
  margin-bottom: 10px;
  color: var(--w79-gold);
}

.w79-support .w79-btn {
  width: 100%;
  min-height: 42px;
  margin-top: 14px;
  padding: 0 14px;
  font-size: 14px;
}

.w79-copyright {
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
  font-size: 13px;
}

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

  .w79-hero-grid {
    min-height: 0;
  }

  .w79-feature-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .w79-feature-item:nth-child(3n) {
    border-right: 0;
  }

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

  .w79-footer-main {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .w79-shell {
    width: min(100% - 24px, 1160px);
  }

  .w79-top-inner {
    align-items: flex-start;
    min-height: 80px;
    padding: 10px 0;
  }

  .w79-logo {
    font-size: 32px;
  }

  .w79-actions {
    flex-direction: column;
    gap: 8px;
  }

  .w79-actions .w79-btn {
    min-height: 34px;
    padding: 0 16px;
    font-size: 12px;
  }

  .w79-nav {
    justify-content: flex-start;
    gap: 26px;
  }

  .w79-hero-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 34px 0 28px;
  }

  .w79-hero h1 {
    font-size: 34px;
  }

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

  .w79-hero-actions .w79-btn {
    flex: 1 1 150px;
    padding: 0 14px;
  }

  .w79-section {
    padding: 36px 0;
  }

  .w79-section-title {
    font-size: 24px;
  }

  .w79-intro h2 {
    font-size: 26px;
  }

  .w79-feature-strip,
  .w79-product-grid,
  .w79-guide-grid,
  .w79-money-band,
  .w79-faq-grid,
  .w79-footer-main {
    grid-template-columns: 1fr;
  }

  .w79-feature-item,
  .w79-feature-item:nth-child(3n) {
    border-right: 0;
    border-bottom: 1px solid var(--w79-line);
  }

  .w79-feature-item:last-child {
    border-bottom: 0;
  }

  .w79-guide {
    padding: 20px 14px;
  }

  .w79-step {
    padding: 0 0 22px;
  }

  .w79-step:not(:last-child)::after {
    display: none;
  }

  .w79-money-item {
    grid-template-columns: 48px minmax(0, 1fr);
    padding: 18px;
  }

  .w79-money-icon {
    width: 46px;
    height: 46px;
  }

  .w79-news-row {
    grid-template-columns: 96px minmax(0, 1fr) 20px;
    gap: 12px;
  }

  .w79-news-date {
    grid-column: 2 / 3;
    text-align: left;
  }

  .w79-news-arrow {
    grid-column: 3 / 4;
    grid-row: 1 / 3;
  }

  .w79-news-row h3 {
    font-size: 14px;
  }

  .w79-news-row p {
    font-size: 12px;
  }

  .w79-article-title {
    font-size: 31px;
  }

  .w79-article-body {
    padding: 24px;
    font-size: 16px;
  }

  .w79-article-nav {
    padding: 0 24px 28px;
  }
}
