:root {
  --bg: #07101f;
  --bg-soft: #0d1b31;
  --bg-card: rgba(255, 255, 255, 0.075);
  --text: #edf3ff;
  --muted: #aab7cc;
  --line: rgba(255, 255, 255, 0.13);
  --gold: #f2bd55;
  --gold-soft: rgba(242, 189, 85, 0.16);
  --green: #12b886;
  --green-soft: rgba(18, 184, 134, 0.16);
  --red-soft: rgba(255, 94, 114, 0.12);
  --white: #ffffff;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 20% 0%, rgba(18, 184, 134, 0.17), transparent 32rem),
    radial-gradient(circle at 80% 10%, rgba(242, 189, 85, 0.15), transparent 30rem),
    linear-gradient(180deg, #07101f 0%, #0b1324 48%, #f4f7fb 48%, #f4f7fb 100%);
  line-height: 1.65;
}

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

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

.container {
  width: min(100% - 40px, var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(7, 16, 31, 0.78);
  backdrop-filter: blur(20px);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #07101f;
  background: linear-gradient(135deg, var(--gold), #fff1b9);
  box-shadow: 0 12px 36px rgba(242, 189, 85, 0.28);
}

.brand-text {
  font-size: 1rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 13px;
  border-radius: 999px;
  color: rgba(237, 243, 255, 0.82);
  font-size: 0.93rem;
  cursor: default;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav-link:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

.hero {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 16, 31, 0.95) 0%, rgba(7, 16, 31, 0.78) 45%, rgba(7, 16, 31, 0.55) 100%),
    url("../images/stake-poker-hero.jpg") center / cover no-repeat;
  z-index: -2;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 220px;
  background: linear-gradient(180deg, transparent, #0b1324 70%, #f4f7fb 100%);
  z-index: -1;
}

.hero-grid {
  min-height: 720px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) 390px;
  align-items: center;
  gap: 46px;
  padding: 82px 0 120px;
}

.hero-content {
  max-width: 780px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.08;
  letter-spacing: -0.045em;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(2.75rem, 7vw, 5.75rem);
  max-width: 930px;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

h3 {
  margin-bottom: 14px;
  font-size: 1.45rem;
}

p {
  margin-top: 0;
}

.hero-text {
  max-width: 690px;
  color: rgba(237, 243, 255, 0.82);
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: -0.01em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.button-primary {
  color: #07101f;
  background: linear-gradient(135deg, var(--gold), #fff0b7);
  box-shadow: 0 18px 45px rgba(242, 189, 85, 0.28);
}

.button-secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
}

.hero-card,
.content-card,
.note-card,
.premium-panel,
.conclusion-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.075);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-card {
  padding: 28px;
  align-self: end;
}

.hero-card-header {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  color: var(--gold);
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.summary-list,
.check-list,
.minus-list,
.tips-list,
.steps-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.summary-list li {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.summary-list li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.summary-list span {
  color: var(--muted);
}

.summary-list strong {
  text-align: right;
  color: var(--white);
}

.intro-section,
.section {
  padding: 86px 0;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(300px, 0.6fr);
  gap: 28px;
  align-items: stretch;
}

.reverse {
  grid-template-columns: minmax(300px, 0.75fr) minmax(0, 1.25fr);
}

.reverse .premium-panel {
  order: -1;
}

.content-card,
.note-card,
.premium-panel {
  padding: clamp(28px, 4vw, 46px);
}

.lead-card {
  background: rgba(255, 255, 255, 0.09);
}

.note-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(160deg, var(--gold-soft), rgba(255, 255, 255, 0.075));
}

.note-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 18px;
  color: #07101f;
  background: linear-gradient(135deg, var(--gold), #fff0b7);
  font-size: 1.55rem;
  font-weight: 900;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

.section-heading.narrow {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.075);
  box-shadow: var(--shadow);
}

table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

th,
td {
  padding: 20px 22px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

th {
  color: #07101f;
  background: linear-gradient(135deg, var(--gold), #fff0b7);
  font-size: 0.9rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

td {
  color: rgba(237, 243, 255, 0.82);
}

td:first-child {
  color: var(--white);
  font-weight: 800;
}

tr:last-child td {
  border-bottom: 0;
}

.dark-feature {
  position: relative;
  overflow: hidden;
}

.feature-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  gap: 32px;
  align-items: center;
}

.feature-image {
  min-height: 440px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(7, 16, 31, 0.1), rgba(7, 16, 31, 0.45)),
    url("../images/poker-table-bg.jpg") center / cover no-repeat;
  box-shadow: var(--shadow);
}

.feature-content {
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.075);
  box-shadow: var(--shadow);
}

.steps-list {
  counter-reset: item;
  display: grid;
  gap: 14px;
}

.steps-list li {
  position: relative;
  padding: 16px 16px 16px 58px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.055);
}

.steps-list li::before {
  counter-increment: item;
  content: counter(item);
  position: absolute;
  left: 16px;
  top: 14px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #07101f;
  background: var(--gold);
  font-size: 0.85rem;
  font-weight: 900;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.accent-card {
  background: linear-gradient(160deg, var(--green-soft), rgba(255, 255, 255, 0.075));
}

.warning-card {
  background: linear-gradient(160deg, var(--red-soft), rgba(255, 255, 255, 0.075));
}

.check-list,
.minus-list,
.tips-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.check-list li,
.minus-list li,
.tips-list li {
  position: relative;
  padding-left: 34px;
  color: rgba(237, 243, 255, 0.84);
}

.check-list li::before,
.minus-list li::before,
.tips-list li::before {
  position: absolute;
  left: 0;
  top: 1px;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 900;
}

.check-list li::before {
  content: "✓";
  color: #07101f;
  background: var(--green);
}

.minus-list li::before {
  content: "!";
  color: #07101f;
  background: var(--gold);
}

.tips-list li::before {
  content: "•";
  color: var(--gold);
  border: 1px solid rgba(242, 189, 85, 0.42);
  background: rgba(242, 189, 85, 0.08);
}

.compact {
  gap: 10px;
}

.compare-section,
.combinations-section,
.security-section,
.faq-section,
.conclusion-section {
  color: #111827;
  background: #f4f7fb;
}

.compare-section .eyebrow,
.combinations-section .eyebrow,
.security-section .eyebrow,
.faq-section .eyebrow,
.conclusion-section .eyebrow {
  color: #0f8f6f;
}

.compare-section .section-heading p,
.combinations-section .section-heading p,
.faq-heading p,
.conclusion-card p,
.security-section p {
  color: #536176;
}

.light-table {
  border-color: rgba(15, 23, 42, 0.08);
  background: #fff;
  box-shadow: 0 22px 70px rgba(15, 23, 42, 0.08);
}

.light-table td {
  color: #536176;
  border-bottom-color: rgba(15, 23, 42, 0.08);
}

.light-table td:first-child {
  color: #111827;
}

.combinations-section .table-wrap,
.security-section .content-card,
.faq-list details,
.conclusion-card {
  border-color: rgba(15, 23, 42, 0.08);
  background: #fff;
  color: #111827;
  box-shadow: 0 22px 70px rgba(15, 23, 42, 0.08);
}

.combinations-section td {
  color: #536176;
  border-bottom-color: rgba(15, 23, 42, 0.08);
}

.combinations-section td:first-child {
  color: #111827;
}

.security-section .check-list li,
.security-section .tips-list li {
  color: #536176;
}

.security-section .content-card h2 {
  color: #111827;
}

.premium-panel {
  background:
    radial-gradient(circle at top right, rgba(242, 189, 85, 0.25), transparent 18rem),
    linear-gradient(160deg, rgba(18, 184, 134, 0.12), rgba(255, 255, 255, 0.075));
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: 32px;
  align-items: start;
}

.faq-heading {
  position: sticky;
  top: 106px;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-list details {
  padding: 22px 24px;
  border-radius: var(--radius-lg);
}

.faq-list summary {
  cursor: pointer;
  color: #111827;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.faq-list summary::marker {
  color: #0f8f6f;
}

.faq-list p {
  margin: 14px 0 0;
  color: #536176;
}

.conclusion-section {
  padding: 86px 0 110px;
}

.conclusion-card {
  padding: clamp(32px, 5vw, 62px);
  text-align: center;
  background:
    radial-gradient(circle at top, rgba(18, 184, 134, 0.12), transparent 25rem),
    #fff;
}

.conclusion-card h2 {
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}

.conclusion-card p {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.site-footer {
  padding: 36px 0;
  color: rgba(237, 243, 255, 0.72);
  background: #07101f;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-inner p {
  margin: 6px 0 0;
  max-width: 620px;
}

.footer-badges {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer-badges span {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(237, 243, 255, 0.9);
  font-size: 0.86rem;
  font-weight: 800;
}

@media (max-width: 980px) {
  .header-inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 16px 0;
  }

  .main-nav {
    justify-content: flex-start;
  }

  .hero,
  .hero-grid {
    min-height: auto;
  }

  .hero-grid,
  .two-column,
  .reverse,
  .feature-grid,
  .cards-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    padding-top: 70px;
  }

  .reverse .premium-panel {
    order: 0;
  }

  .faq-heading {
    position: static;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 26px, var(--container));
  }

  .site-header {
    position: static;
  }

  .brand-text {
    font-size: 0.95rem;
  }

  .nav-link {
    padding: 7px 10px;
    font-size: 0.86rem;
  }

  .hero-grid {
    padding: 54px 0 96px;
  }

  .hero-card,
  .content-card,
  .note-card,
  .premium-panel,
  .feature-content,
  .conclusion-card {
    border-radius: 22px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .intro-section,
  .section,
  .conclusion-section {
    padding: 58px 0;
  }

  .feature-image {
    min-height: 280px;
  }

  th,
  td {
    padding: 16px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-badges {
    justify-content: flex-start;
  }
}
