﻿:root {
  --ink: #f8fbff;
  --muted: #b7c4d6;
  --paper: #ffffff;
  --navy: #07111f;
  --panel: #0d1b2d;
  --panel-2: #10233a;
  --line: rgba(255, 255, 255, 0.14);
  --green: #17c964;
  --gold: #f4c95d;
  --cyan: #55d7ff;
  --rose: #ff6b6b;
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--navy);
  line-height: 1.6;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(7, 17, 31, 0.92);
  backdrop-filter: blur(14px);
}

.nav {
  width: min(1160px, calc(100% - 32px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: #08111e;
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold), var(--green));
  box-shadow: 0 10px 24px rgba(23, 201, 100, 0.25);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: auto;
  font-size: 0.95rem;
  color: var(--muted);
}

.nav-links a {
  padding: 10px 0;
}

.nav-links a:hover,
.nav-links .active {
  color: var(--ink);
}

.cta,
.ghost,
.small-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 8px;
  padding: 0 18px;
  font-weight: 800;
  border: 1px solid transparent;
}

.cta {
  color: #07111f;
  background: var(--gold);
  box-shadow: 0 12px 26px rgba(244, 201, 93, 0.22);
}

.ghost {
  color: var(--ink);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.05);
}

.small-cta {
  min-height: 38px;
  padding: 0 14px;
  color: #07111f;
  background: var(--green);
}

.hero {
  position: relative;
  min-height: 680px;
  display: grid;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 17, 31, 0.96), rgba(7, 17, 31, 0.78) 42%, rgba(7, 17, 31, 0.28)),
    url("17winpkr-hero.jpg") center right / cover no-repeat;
}

.hero-inner,
.section-inner {
  position: relative;
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.hero-copy {
  max-width: 690px;
  padding: 80px 0 96px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  color: var(--gold);
  font-weight: 800;
  font-size: 0.86rem;
  text-transform: uppercase;
}

.official-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  margin-bottom: 16px;
  padding: 0 14px;
  border: 1px solid rgba(244, 201, 93, 0.42);
  border-radius: 8px;
  color: #07111f;
  background: var(--gold);
  font-size: 0.88rem;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  margin: 0;
  font-size: clamp(2.75rem, 7vw, 5.5rem);
  max-width: 780px;
}

h2 {
  margin: 0 0 16px;
  font-size: clamp(2rem, 4vw, 3.35rem);
}

h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
}

p {
  margin: 0;
}

.lead {
  max-width: 650px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 1.18rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 38px;
}

.trust-item {
  min-height: 88px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(7, 17, 31, 0.64);
}

.trust-item strong {
  display: block;
  font-size: 1.35rem;
}

.trust-item span {
  color: var(--muted);
  font-size: 0.9rem;
}

section {
  padding: 84px 0;
}

.section-kicker {
  margin-bottom: 12px;
  color: var(--cyan);
  font-weight: 800;
}

.section-subtitle {
  max-width: 780px;
  color: var(--muted);
  font-size: 1.04rem;
}

.grid {
  display: grid;
  gap: 18px;
}

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

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

.card,
.feature,
.faq-item,
.notice,
.timeline-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.035));
  box-shadow: var(--shadow);
}

.card,
.feature,
.notice {
  padding: 24px;
}

.feature p,
.card p,
.timeline-item p,
.faq-item p,
.notice p {
  color: var(--muted);
}

.features {
  margin-top: 34px;
}

.feature-icon {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  color: #07111f;
  background: var(--green);
  font-weight: 900;
}

.band {
  background: #0a1728;
}

.light {
  color: #0d1724;
  background: var(--paper);
}

.light .section-kicker {
  color: #047857;
}

.light .section-subtitle,
.light .feature p,
.light .card p,
.light .timeline-item p,
.light .faq-item p {
  color: #526173;
}

.light .card,
.light .feature,
.light .faq-item,
.light .timeline-item {
  border-color: #dbe4ef;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(22, 35, 55, 0.08);
}

.route-list {
  margin-top: 30px;
}

.route {
  display: grid;
  grid-template-columns: 180px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.light .route {
  border-bottom-color: #e7edf5;
}

.route code {
  color: var(--gold);
  white-space: nowrap;
}

.light .route code {
  color: #047857;
}

.timeline {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.timeline-item {
  padding: 22px;
}

.step {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  border-radius: 8px;
  background: var(--gold);
  color: #07111f;
  font-weight: 900;
}

.page-hero {
  padding: 86px 0 64px;
  background: linear-gradient(135deg, #091425, #122947);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.6rem);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 0.92rem;
}

.content-flow {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 36px;
}

.article {
  display: grid;
  gap: 22px;
}

.article ul,
.article ol {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.article li + li {
  margin-top: 8px;
}

.sidebar {
  position: sticky;
  top: 96px;
  align-self: start;
}

.sidebar .card + .card {
  margin-top: 16px;
}

.table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.table th,
.table td {
  padding: 14px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.table th {
  color: var(--gold);
}

.faq {
  margin-top: 32px;
  display: grid;
  gap: 14px;
}

.faq-item {
  padding: 20px;
}

.legal-note {
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
  background: #050b14;
  font-size: 0.9rem;
}

.legal-note .section-inner {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
}

.footer {
  padding: 38px 0;
  background: #07111f;
  color: var(--muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.footer a {
  display: block;
  margin-top: 8px;
}

.footer strong {
  color: var(--ink);
}

@media (max-width: 900px) {
  .nav {
    flex-wrap: wrap;
    padding: 14px 0;
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
    margin-left: auto;
  }

  .nav-links {
    display: none;
    width: 100%;
    margin-left: 0;
    padding-top: 12px;
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links.open {
    display: flex;
  }

  .hero {
    min-height: auto;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(7, 17, 31, 0.98), rgba(7, 17, 31, 0.84) 58%, rgba(7, 17, 31, 0.62)),
      url("17winpkr-hero.jpg") center / cover no-repeat;
  }

  .trust-row,
  .grid-2,
  .grid-3,
  .timeline,
  .content-flow,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .sidebar {
    position: static;
  }
}

@media (max-width: 560px) {
  .hero-copy {
    padding: 58px 0 70px;
  }

  section {
    padding: 60px 0;
  }

  .hero-actions,
  .legal-note .section-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .cta,
  .ghost,
  .small-cta {
    width: 100%;
  }
}

