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

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

:root {
  --bg-base: #0a1d4a;
  --bg-card: #13306b;
  --accent: #ffcc29;
  --highlight: #ff6a1f;
  --text: #ffffff;
  --muted: #9ab5e6;
  --border: #2a4a93;

  --font-head: 'Montserrat', 'Segoe UI', system-ui, sans-serif;
  --font-body: 'Inter', 'Helvetica Neue', Arial, sans-serif;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;

  --shadow-card: 0 10px 28px rgba(0, 0, 0, .35);
  --shadow-cta: 0 8px 22px rgba(255, 204, 41, .35);

  --t: .25s cubic-bezier(.4, .2, .2, 1);
}

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

body {
  font-family: var(--font-body);
  background: var(--bg-base);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
  padding-bottom: 72px;
  overflow-x: hidden;
  background-image:
    radial-gradient(circle at 20% 0%, rgba(255, 106, 31, .10), transparent 45%),
    radial-gradient(circle at 85% 18%, rgba(255, 204, 41, .08), transparent 42%),
    linear-gradient(180deg, #08173a 0%, var(--bg-base) 40%, #081b45 100%);
  min-height: 100vh;
}

::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: #08173a; }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.2;
  letter-spacing: -.01em;
  color: var(--text);
}
h1 { font-size: clamp(1.75rem, 4vw + 1rem, 2.9rem); font-weight: 800; margin-bottom: .6em; }
h2 { font-size: clamp(1.45rem, 2vw + 1rem, 2.1rem); font-weight: 800; margin: 2em 0 .7em; }
h3 { font-size: clamp(1.15rem, 1vw + 1rem, 1.45rem); font-weight: 700; margin: 1.5em 0 .5em; }
h4 { font-size: 1.05rem; font-weight: 700; margin: 1.1em 0 .4em; }
p  { margin-bottom: 1rem; color: #e8edfb; }
strong { color: var(--accent); font-weight: 700; }
a { color: var(--accent); text-decoration: none; transition: color var(--t); }
a:hover { color: var(--highlight); }

.p7k_container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 16px; }

/* BUTTONS */
.p7k_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .03em;
  border: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: transform var(--t), box-shadow var(--t), background var(--t);
  min-height: 48px;
  padding: 0 22px;
  text-align: center;
  white-space: nowrap;
}
.p7k_btn-primary { background: var(--accent); color: #0a1d4a; box-shadow: var(--shadow-cta); }
.p7k_btn-primary:hover { background: #ffd652; transform: translateY(-2px); }
.p7k_btn-highlight { background: var(--highlight); color: #fff; }
.p7k_btn-highlight:hover { background: #ff8344; transform: translateY(-2px); }
.p7k_btn-outline { background: transparent; color: var(--accent); border: 2px solid var(--accent); }
.p7k_btn-outline:hover { background: var(--accent); color: #0a1d4a; }
.p7k_btn-ghost { background: rgba(255, 255, 255, .08); color: #fff; }
.p7k_btn-ghost:hover { background: rgba(255, 255, 255, .15); }
.p7k_btn-sm { min-height: 40px; padding: 0 16px; font-size: .85rem; }
.p7k_btn-lg { min-height: 56px; padding: 0 30px; font-size: 1.05rem; }
.p7k_btn-full { width: 100%; }

/* NAV */
.p7k_nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(8, 22, 58, .92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.p7k_nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  gap: 12px;
  max-width: 1200px;
  margin: 0 auto;
}
.p7k_logo { display: flex; align-items: center; }
.p7k_logo img { height: 38px; width: auto; }
.p7k_nav-links { display: none; gap: 22px; font-family: var(--font-head); font-weight: 700; text-transform: uppercase; font-size: .85rem; }
.p7k_nav-links a { color: #cfd9f5; }
.p7k_nav-links a:hover, .p7k_nav-links a.active { color: var(--accent); }
.p7k_nav-cta { display: flex; gap: 8px; align-items: center; }
.p7k_nav-cta .p7k_btn { min-height: 42px; padding: 0 16px; font-size: .8rem; }

.p7k_nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  align-items: center;
  background: transparent;
  border: none;
  cursor: pointer;
}
.p7k_nav-toggle span { display: block; width: 24px; height: 2px; background: var(--accent); transition: transform var(--t); }

.p7k_mobile-nav {
  position: fixed;
  top: 62px;
  left: 0;
  right: 0;
  background: #0a1d4a;
  border-top: 1px solid var(--border);
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--t);
  z-index: 49;
}
.p7k_mobile-nav.open { max-height: 600px; }
.p7k_mobile-nav ul { list-style: none; padding: 10px 16px 20px; }
.p7k_mobile-nav li a {
  display: block;
  padding: 14px 6px;
  color: #e0e7fa;
  border-bottom: 1px solid var(--border);
  font-family: var(--font-head);
  font-weight: 700;
  text-transform: uppercase;
  font-size: .92rem;
}

/* TICKER */
.p7k_ticker {
  background: linear-gradient(90deg, var(--accent) 0%, var(--highlight) 100%);
  color: #0a1d4a;
  font-weight: 700;
  padding: 10px 0;
  overflow: hidden;
  white-space: nowrap;
  font-size: .88rem;
}
.p7k_ticker-inner { display: inline-block; animation: p7k-ticker 38s linear infinite; }
.p7k_ticker span { padding: 0 28px; }

/* HERO */
.p7k_hero {
  padding: 32px 0 40px;
  position: relative;
}
.p7k_hero-grid { display: grid; grid-template-columns: 1fr; gap: 24px; align-items: center; }
.p7k_hero-copy .p7k_kicker {
  display: inline-block;
  background: rgba(255, 106, 31, .18);
  color: var(--highlight);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .78rem;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 14px;
}
.p7k_hero-copy h1 span { color: var(--accent); }
.p7k_hero-copy p.lead { font-size: 1.05rem; color: #dbe4fa; margin-bottom: 20px; }
.p7k_hero-ctas { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 16px; }
.p7k_hero-meta { display: flex; gap: 18px; flex-wrap: wrap; color: var(--muted); font-size: .85rem; }
.p7k_hero-meta span::before { content: "✓"; color: var(--accent); margin-right: 6px; font-weight: 800; }

.p7k_hero-card {
  background: linear-gradient(135deg, #1a3a8a 0%, #0f2670 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  box-shadow: var(--shadow-card);
  position: relative;
  aspect-ratio: 1 / 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.p7k_hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 25%, rgba(255, 204, 41, .2), transparent 55%),
    radial-gradient(circle at 15% 80%, rgba(255, 106, 31, .18), transparent 55%);
  pointer-events: none;
}
.p7k_hero-card-badge {
  background: var(--highlight);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: .82rem;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  display: inline-block;
  margin: 0 auto 12px;
  text-transform: uppercase;
  letter-spacing: .05em;
  position: relative;
}
.p7k_hero-card-amount {
  font-family: var(--font-head);
  font-weight: 800;
  color: var(--accent);
  font-size: clamp(1.6rem, 5vw, 2.4rem);
  line-height: 1.1;
  position: relative;
  margin-bottom: 6px;
}
.p7k_hero-card-sub { color: #dbe4fa; font-size: .95rem; position: relative; margin-bottom: 20px; }

/* TRUST BAR */
.p7k_trust {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
}
.p7k_trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  text-align: center;
}
.p7k_trust-item { color: var(--muted); font-size: .8rem; }
.p7k_trust-item strong { display: block; color: var(--accent); font-family: var(--font-head); font-size: 1.2rem; font-weight: 800; margin-bottom: 2px; }

/* CATEGORY CHIPS */
.p7k_chips { padding: 20px 0; overflow-x: auto; -webkit-overflow-scrolling: touch; }
.p7k_chips-inner { display: flex; gap: 10px; padding: 0 16px; }
.p7k_chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: #dbe4fa;
  padding: 10px 16px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  font-weight: 600;
  font-size: .85rem;
  cursor: default;
}
.p7k_chip.active { background: var(--accent); color: #0a1d4a; border-color: var(--accent); }

/* CONTENT SECTIONS */
.p7k_section { padding: 36px 0; content-visibility: auto; contain-intrinsic-size: 0 600px; }
.p7k_section-head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 14px; gap: 12px; flex-wrap: wrap; }
.p7k_section-head h2 { margin: 0; }
.p7k_see-all { color: var(--muted); font-size: .88rem; font-weight: 600; }

.p7k_content { font-size: 1rem; color: #e0e7fa; }
.p7k_content p { margin-bottom: 1.1rem; }
.p7k_content ul, .p7k_content ol { margin: 0 0 1.2rem 1.25rem; color: #e0e7fa; }
.p7k_content li { margin-bottom: .5rem; }

/* CARDS GRID (games / features / steps) */
.p7k_grid { display: grid; grid-template-columns: 1fr; gap: 14px; }
.p7k_card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px;
  transition: transform var(--t), border-color var(--t);
}
.p7k_card:hover { transform: translateY(-3px); border-color: var(--accent); }
.p7k_card h3 { margin-top: 0; color: var(--accent); }
.p7k_card .p7k_card-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), var(--highlight));
  color: #0a1d4a;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

/* TABLES */
.p7k_table-wrap { overflow-x: auto; margin: 1.2rem 0 1.6rem; border-radius: var(--radius-md); border: 1px solid var(--border); }
.p7k_table { width: 100%; border-collapse: collapse; min-width: 520px; background: var(--bg-card); }
.p7k_table th, .p7k_table td { padding: 12px 14px; text-align: left; border-bottom: 1px solid var(--border); font-size: .92rem; }
.p7k_table th { background: #0f2560; color: var(--accent); font-family: var(--font-head); font-weight: 700; text-transform: uppercase; letter-spacing: .03em; font-size: .78rem; }
.p7k_table tr:last-child td { border-bottom: none; }
.p7k_table td strong { color: var(--accent); }

/* STEP LIST */
.p7k_steps { counter-reset: p7k-step; list-style: none; margin-left: 0 !important; padding-left: 0; }
.p7k_steps li {
  counter-increment: p7k-step;
  position: relative;
  padding: 16px 18px 16px 58px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 10px;
}
.p7k_steps li::before {
  content: counter(p7k-step);
  position: absolute;
  left: 14px;
  top: 14px;
  width: 32px;
  height: 32px;
  background: var(--accent);
  color: #0a1d4a;
  border-radius: 50%;
  font-family: var(--font-head);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .95rem;
}
.p7k_steps li strong { color: var(--accent); }

/* FAQ */
.p7k_faq { margin-top: 1.6rem; }
.p7k_faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 10px;
  overflow: hidden;
}
.p7k_faq-btn {
  width: 100%;
  background: transparent;
  border: none;
  color: var(--text);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  text-align: left;
  padding: 16px 54px 16px 18px;
  cursor: pointer;
  position: relative;
  min-height: 52px;
}
.p7k_faq-btn::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent);
  font-size: 1.5rem;
  font-weight: 800;
  transition: transform var(--t);
}
.p7k_faq-item.open .p7k_faq-btn::after { content: "−"; }
.p7k_faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
  padding: 0 18px;
}
.p7k_faq-item.open .p7k_faq-answer { max-height: 520px; padding: 0 18px 18px; }
.p7k_faq-answer p { color: #dbe4fa; margin: 0; }

/* CTA BAND */
.p7k_cta-band {
  background: linear-gradient(135deg, #1a3a8a 0%, #0a1d4a 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  text-align: center;
  margin: 32px 0;
  position: relative;
  overflow: hidden;
}
.p7k_cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(255, 204, 41, .18), transparent 55%);
  pointer-events: none;
}
.p7k_cta-band h3 { font-size: 1.4rem; margin-top: 0; position: relative; }
.p7k_cta-band p { color: #dbe4fa; position: relative; }
.p7k_cta-band .p7k_btn { position: relative; margin-top: 8px; }

/* AUTHOR BOX */
.p7k_author-box {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 14px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px;
  margin: 24px 0;
  align-items: center;
}
.p7k_avatar {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--highlight));
  color: #0a1d4a;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p7k_author-box h4 { margin: 0 0 4px; color: var(--accent); font-size: 1rem; }
.p7k_author-box p { margin: 0; color: var(--muted); font-size: .88rem; }

/* BREADCRUMBS */
.p7k_crumbs { padding: 14px 0 0; font-size: .82rem; color: var(--muted); }
.p7k_crumbs a { color: var(--muted); }
.p7k_crumbs a:hover { color: var(--accent); }
.p7k_crumbs span { color: var(--accent); }

/* FOOTER */
.p7k_footer {
  background: #07143a;
  border-top: 1px solid var(--border);
  margin-top: 50px;
  padding: 36px 0 80px;
}
.p7k_footer-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
.p7k_footer h4 { color: var(--accent); font-size: .9rem; text-transform: uppercase; margin-bottom: 10px; }
.p7k_footer ul { list-style: none; }
.p7k_footer ul li { margin-bottom: 6px; }
.p7k_footer a { color: #bac9ef; font-size: .9rem; }
.p7k_footer a:hover { color: var(--accent); }
.p7k_footer-bottom {
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  text-align: center;
  color: var(--muted);
  font-size: .82rem;
}
.p7k_badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 10px; }
.p7k_badge {
  background: var(--bg-card);
  color: var(--muted);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  font-size: .75rem;
  border: 1px solid var(--border);
  font-weight: 600;
}

/* STICKY MOBILE CTA */
.p7k_sticky-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  display: flex;
  gap: 10px;
  padding: 10px 12px;
  background: #07143a;
  border-top: 1px solid var(--border);
  z-index: 60;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, .45);
}
.p7k_sticky-cta .p7k_btn { flex: 1; min-height: 46px; font-size: .85rem; }

/* ANIMATIONS */
@keyframes p7k-ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes p7k-fade-up {
  from { opacity: 0; transform: translate3d(0, 16px, 0); }
  to { opacity: 1; transform: translate3d(0, 0, 0); }
}
.p7k_animate { opacity: 0; will-change: transform, opacity; }
.p7k_animate.visible { animation: p7k-fade-up .55s ease forwards; }

/* RESPONSIVE */
@media (min-width: 480px) {
  .p7k_trust-grid { grid-template-columns: repeat(4, 1fr); }
  .p7k_grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 768px) {
  body { padding-bottom: 0; }
  .p7k_sticky-cta { display: none; }
  .p7k_nav-links { display: flex; }
  .p7k_nav-toggle { display: none; }
  .p7k_mobile-nav { display: none; }
  .p7k_hero { padding: 60px 0 56px; }
  .p7k_hero-grid { grid-template-columns: 1.1fr 1fr; gap: 40px; }
  .p7k_hero-card { padding: 36px 30px; }
  .p7k_hero-card-amount { font-size: 2.6rem; }
  .p7k_footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 30px; }
  .p7k_grid { grid-template-columns: repeat(3, 1fr); }
  .p7k_section { padding: 48px 0; }
  .p7k_cta-band { padding: 40px 34px; }
  .p7k_cta-band h3 { font-size: 1.7rem; }
  .p7k_author-box { grid-template-columns: 84px 1fr; padding: 22px; }
  .p7k_avatar { width: 84px; height: 84px; font-size: 1.8rem; }
}

@media (min-width: 1024px) {
  .p7k_container { padding: 0 24px; }
  .p7k_grid-4 { grid-template-columns: repeat(4, 1fr); }
  h1 { font-size: 3rem; }
  h2 { font-size: 2.2rem; }
}

/* Utility */
.p7k_text-accent { color: var(--accent); }
.p7k_text-hl { color: var(--highlight); }
.p7k_mt-0 { margin-top: 0 !important; }
.p7k_center { text-align: center; }
