@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&family=Outfit:wght@600;700&display=swap');

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg-base: #0a1c16;
  --bg-card: #122b22;
  --accent: #1d8c5a;
  --highlight: #d4a940;
  --text: #e8ede9;
  --muted: #6b8f7e;
  --border: #1c3d30;

  --font-heading: 'Outfit', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --radius: 10px;
  --radius-sm: 6px;
  --radius-lg: 16px;
  --transition: 0.25s ease;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  background-color: var(--bg-base);
  padding-bottom: 70px;
  -webkit-font-smoothing: antialiased;
}

body::-webkit-scrollbar {
  width: 8px;
}

body::-webkit-scrollbar-track {
  background: var(--bg-base);
}

body::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 4px;
}

body::-webkit-scrollbar-thumb:hover {
  background: var(--muted);
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--text);
}

h1 {
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  font-weight: 700;
}

h2 {
  font-size: clamp(1.35rem, 3.5vw, 2rem);
  font-weight: 600;
  margin-bottom: 1rem;
}

h3 {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

h4 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

p {
  margin-bottom: 1rem;
  color: var(--text);
}

strong {
  font-weight: 600;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover,
a:focus-visible {
  color: var(--highlight);
}

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

ul, ol {
  padding-left: 1.25rem;
  margin-bottom: 1rem;
}

li {
  margin-bottom: 0.4rem;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
}

th, td {
  padding: 0.65rem 0.75rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 0.92rem;
}

th {
  font-weight: 600;
  color: var(--highlight);
  font-family: var(--font-heading);
  white-space: nowrap;
}

.k7g_container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* ── Buttons ──────────────────────────────── */

.k7g_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-family: var(--font-heading);
  font-weight: 600;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform var(--transition), opacity var(--transition);
  text-decoration: none;
  line-height: 1;
}

.k7g_btn:hover {
  transform: translateY(-1px);
  opacity: 0.92;
}

.k7g_btn:active {
  transform: translateY(0);
}

.k7g_btn-sm {
  padding: 0.45rem 1rem;
  font-size: 0.85rem;
}

.k7g_btn-md {
  padding: 0.65rem 1.5rem;
  font-size: 0.95rem;
}

.k7g_btn-lg {
  padding: 0.85rem 2rem;
  font-size: 1.05rem;
}

.k7g_btn-full {
  width: 100%;
}

.k7g_btn-primary {
  background-color: var(--accent);
  color: var(--text);
}

.k7g_btn-highlight {
  background-color: var(--highlight);
  color: var(--bg-base);
}

.k7g_btn-outline {
  background-color: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}

.k7g_btn-ghost {
  background-color: transparent;
  color: var(--muted);
}

.k7g_btn-ghost:hover {
  color: var(--text);
}

/* ── Navigation ───────────────────────────── */

.k7g_nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--bg-base);
  border-bottom: 1px solid var(--border);
}

.k7g_nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  min-height: 56px;
}

.k7g_nav-logo img {
  height: 36px;
  width: auto;
}

.k7g_nav-links {
  display: none;
  list-style: none;
  gap: 1.5rem;
  padding: 0;
  margin: 0;
}

.k7g_nav-links a {
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 600;
  font-family: var(--font-heading);
  transition: color var(--transition);
}

.k7g_nav-links a:hover {
  color: var(--highlight);
}

.k7g_nav-cta {
  display: none;
}

.k7g_nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text);
}

.k7g_nav-toggle svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

.k7g_mobile-nav {
  display: none;
  flex-direction: column;
  background-color: var(--bg-card);
  border-bottom: 1px solid var(--border);
  padding: 1rem;
}

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

.k7g_mobile-nav a {
  display: block;
  padding: 0.75rem 0;
  color: var(--text);
  font-weight: 600;
  font-family: var(--font-heading);
  border-bottom: 1px solid var(--border);
  min-height: 44px;
  display: flex;
  align-items: center;
}

.k7g_mobile-nav a:last-child {
  border-bottom: none;
}

/* ── Hero (Layout B — Centred) ────────────── */

.k7g_hero {
  text-align: center;
  padding: 2.5rem 0 2rem;
  background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-base) 100%);
}

.k7g_hero h1 {
  margin-bottom: 0.75rem;
}

.k7g_hero-sub {
  font-size: 1.05rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.k7g_hero-cta {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 1.5rem;
}

.k7g_bonus-bar {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
  padding: 1.25rem;
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.k7g_bonus-bar-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  font-weight: 600;
}

.k7g_bonus-bar-value {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 4vw, 1.8rem);
  font-weight: 700;
  color: var(--highlight);
}

.k7g_bonus-bar-terms {
  font-size: 0.78rem;
  color: var(--muted);
}

/* ── Trust Bar ────────────────────────────── */

.k7g_trust-bar {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
}

.k7g_trust-items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.k7g_trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background-color: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.k7g_trust-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--bg-base);
  border-radius: var(--radius-sm);
  color: var(--accent);
  font-size: 1.2rem;
}

.k7g_trust-label {
  font-size: 0.85rem;
  font-weight: 600;
}

.k7g_trust-sub {
  font-size: 0.75rem;
  color: var(--muted);
}

/* ── Content Sections ─────────────────────── */

.k7g_section {
  padding: 2rem 0;
  content-visibility: auto;
  contain-intrinsic-size: 0 500px;
}

.k7g_section:first-of-type {
  content-visibility: visible;
  contain-intrinsic-size: auto;
}

.k7g_section-title {
  margin-bottom: 1.25rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--border);
}

.k7g_section-title span {
  color: var(--highlight);
}

.k7g_content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.k7g_card {
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
}

.k7g_card-highlight {
  border-color: var(--highlight);
}

.k7g_card h3 {
  color: var(--highlight);
}

.k7g_tag {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.k7g_tag-accent {
  background-color: var(--accent);
  color: var(--text);
}

.k7g_tag-highlight {
  background-color: var(--highlight);
  color: var(--bg-base);
}

.k7g_pros-cons {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.k7g_pros li::marker,
.k7g_cons li::marker {
  font-size: 0;
}

.k7g_pros li::before {
  content: "✓ ";
  color: var(--accent);
  font-weight: 700;
}

.k7g_cons li::before {
  content: "✗ ";
  color: var(--highlight);
  font-weight: 700;
}

.k7g_pros, .k7g_cons {
  list-style: none;
  padding-left: 0;
}

.k7g_info-box {
  padding: 1rem 1.25rem;
  border-left: 3px solid var(--accent);
  background-color: var(--bg-card);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-bottom: 1.5rem;
}

.k7g_info-box p:last-child {
  margin-bottom: 0;
}

.k7g_steps {
  counter-reset: step;
  list-style: none;
  padding-left: 0;
}

.k7g_steps li {
  counter-increment: step;
  padding: 0.75rem 0 0.75rem 3rem;
  position: relative;
  border-bottom: 1px solid var(--border);
}

.k7g_steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0.75rem;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--accent);
  color: var(--text);
  border-radius: 50%;
  font-weight: 700;
  font-size: 0.85rem;
  font-family: var(--font-heading);
}

.k7g_payment-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

.k7g_payment-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.k7g_payment-name {
  font-weight: 600;
  font-size: 0.92rem;
}

.k7g_payment-detail {
  font-size: 0.8rem;
  color: var(--muted);
}

.k7g_author-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
  padding: 1.5rem;
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
}

.k7g_author-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--text);
  min-width: 64px;
}

.k7g_author-name {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
}

.k7g_author-role {
  font-size: 0.82rem;
  color: var(--muted);
}

.k7g_breadcrumb {
  padding: 0.75rem 0;
  font-size: 0.82rem;
  color: var(--muted);
}

.k7g_breadcrumb a {
  color: var(--muted);
}

.k7g_breadcrumb a:hover {
  color: var(--accent);
}

.k7g_breadcrumb span {
  margin: 0 0.35rem;
}

.k7g_checklist {
  list-style: none;
  padding-left: 0;
}

.k7g_checklist li {
  padding: 0.4rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.k7g_checklist li::before {
  content: "☐";
  position: absolute;
  left: 0;
  color: var(--accent);
}

.k7g_game-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.k7g_game-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
}

.k7g_game-card h4 {
  color: var(--highlight);
}

.k7g_rtp-bar {
  height: 6px;
  background-color: var(--border);
  border-radius: 3px;
  margin-top: 0.5rem;
  overflow: hidden;
}

.k7g_rtp-fill {
  height: 100%;
  background-color: var(--accent);
  border-radius: 3px;
}

.k7g_legal-section {
  padding: 2rem 0;
}

.k7g_legal-section h2 {
  font-size: 1.2rem;
}

.k7g_legal-section p,
.k7g_legal-section li {
  font-size: 0.92rem;
  color: var(--muted);
}

.k7g_article-list {
  list-style: none;
  padding-left: 0;
}

.k7g_article-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}

.k7g_article-list a {
  font-weight: 600;
}

.k7g_article-list small {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  margin-top: 0.2rem;
}

/* ── FAQ Accordion ────────────────────────── */

.k7g_faq {
  padding: 2rem 0;
}

.k7g_faq-item {
  border-bottom: 1px solid var(--border);
}

.k7g_faq-btn {
  width: 100%;
  padding: 1rem 0;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
  text-align: left;
  min-height: 44px;
}

.k7g_faq-btn::after {
  content: "+";
  font-size: 1.3rem;
  color: var(--muted);
  transition: transform var(--transition);
  min-width: 20px;
  text-align: center;
}

.k7g_faq-item.open .k7g_faq-btn::after {
  content: "−";
  color: var(--highlight);
}

.k7g_faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.k7g_faq-item.open .k7g_faq-answer {
  max-height: 500px;
}

.k7g_faq-answer-inner {
  padding: 0 0 1rem;
  font-size: 0.92rem;
  color: var(--muted);
}

.k7g_faq-answer-inner p:last-child {
  margin-bottom: 0;
}

/* ── CTA Band ─────────────────────────────── */

.k7g_cta-band {
  padding: 2.5rem 0;
  text-align: center;
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-base) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.k7g_cta-band h2 {
  margin-bottom: 0.5rem;
}

.k7g_cta-band p {
  color: var(--muted);
  margin-bottom: 1.25rem;
}

/* ── Footer ───────────────────────────────── */

.k7g_footer {
  padding: 2rem 0 1rem;
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
}

.k7g_footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.k7g_footer-col h4 {
  color: var(--text);
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.k7g_footer-col ul {
  list-style: none;
  padding: 0;
}

.k7g_footer-col li {
  margin-bottom: 0.35rem;
}

.k7g_footer-col a {
  color: var(--muted);
  font-size: 0.82rem;
}

.k7g_footer-col a:hover {
  color: var(--text);
}

.k7g_footer-bottom {
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  text-align: center;
  color: var(--muted);
  font-size: 0.78rem;
}

.k7g_footer-bottom p {
  color: var(--muted);
  font-size: 0.78rem;
  margin-bottom: 0.5rem;
}

.k7g_footer-disclaimer {
  max-width: 700px;
  margin: 0 auto;
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
}

.k7g_age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 2px solid var(--highlight);
  border-radius: 50%;
  font-weight: 700;
  font-size: 0.75rem;
  color: var(--highlight);
  margin-bottom: 0.5rem;
}

/* ── Sticky Mobile CTA ────────────────────── */

.k7g_sticky-cta {
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  padding: 0.75rem 1rem;
  background-color: var(--bg-card);
  border-top: 1px solid var(--border);
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
}

.k7g_sticky-cta .k7g_btn {
  flex: 1;
  max-width: 280px;
}

/* ── Animations ───────────────────────────── */

@keyframes k7g_fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.k7g_animate {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.k7g_animate.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ───────────────────────────── */

@media (min-width: 480px) {
  .k7g_trust-items {
    grid-template-columns: 1fr 1fr;
  }

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

  .k7g_hero-cta {
    flex-direction: row;
    justify-content: center;
  }

  .k7g_bonus-bar {
    flex-direction: row;
    justify-content: center;
    gap: 1.5rem;
  }

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

@media (min-width: 768px) {
  body {
    padding-bottom: 0;
  }

  .k7g_sticky-cta {
    display: none;
  }

  .k7g_nav-toggle {
    display: none;
  }

  .k7g_nav-links {
    display: flex;
  }

  .k7g_nav-cta {
    display: inline-flex;
  }

  .k7g_hero {
    padding: 3.5rem 0 2.5rem;
  }

  .k7g_trust-items {
    grid-template-columns: repeat(4, 1fr);
  }

  .k7g_pros-cons {
    grid-template-columns: 1fr 1fr;
  }

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

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

  .k7g_author-card {
    flex-direction: row;
    text-align: left;
  }

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

@media (min-width: 1024px) {
  .k7g_container {
    padding: 0 2rem;
  }

  .k7g_hero {
    padding: 4rem 0 3rem;
  }

  .k7g_section {
    padding: 2.5rem 0;
  }

  .k7g_footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }

  .k7g_game-grid {
    grid-template-columns: repeat(4, 1fr);
  }

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