/* =============================================
   PINCO BONUS TR — style.css
   Prefix: p7k | Theme: dark
   Accent: #00c853 | Highlight: #f5c518
   Fonts: Sora + Inter
   ============================================= */

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

/* 2. Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* 3. :root — 7 tokens + typography + spacing */
:root {
  --bg-base:   #0b1120;
  --bg-card:   #131e30;
  --accent:    #00c853;
  --highlight: #f5c518;
  --text:      #eef1f6;
  --muted:     #7a8a9c;
  --border:    #1d2d40;

  --font-head: 'Sora', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  --radius:    12px;
  --radius-sm: 6px;
  --radius-lg: 20px;
  --transition: 0.22s ease;
  --shadow:    0 4px 24px rgba(0,0,0,0.4);
}

/* 4. html / body */
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  background: var(--bg-base);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.65;
  padding-bottom: 70px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body::-webkit-scrollbar { width: 6px; }
body::-webkit-scrollbar-track { background: var(--bg-base); }
body::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }

/* 5. Typography */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.2;
  color: var(--text);
}
h1 { font-size: clamp(1.55rem, 5vw, 2.6rem); font-weight: 700; }
h2 { font-size: clamp(1.25rem, 3.5vw, 1.85rem); font-weight: 700; }
h3 { font-size: clamp(1rem, 2.5vw, 1.22rem); font-weight: 600; }
h4 { font-size: 0.96rem; font-weight: 600; }
p  { margin-bottom: 1rem; font-size: 0.95rem; }
p:last-child { margin-bottom: 0; }
strong { font-weight: 700; }
a { color: var(--accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--highlight); }
ul, ol { padding-left: 1.2rem; }
li { margin-bottom: 0.4rem; }

.p7k_highlight      { color: var(--highlight); }
.p7k_highlight-text { color: var(--highlight); font-weight: 700; }
.p7k_accent-text    { color: var(--accent);    font-weight: 700; }

/* 6. Container */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 16px;
}

/* 7. Buttons */
.p7k_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: var(--font-head);
  font-weight: 700;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform var(--transition), opacity var(--transition);
  white-space: nowrap;
  min-height: 44px;
  letter-spacing: 0.02em;
}
.p7k_btn:active { transform: scale(0.97); }

.p7k_btn--accent {
  background: var(--accent);
  color: #031008;
  border-color: var(--accent);
}
.p7k_btn--accent:hover { opacity: 0.87; color: #031008; }

.p7k_btn--highlight {
  background: var(--highlight);
  color: var(--bg-base);
  border-color: var(--highlight);
}
.p7k_btn--highlight:hover { opacity: 0.87; color: var(--bg-base); }

.p7k_btn--outline {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}
.p7k_btn--outline:hover { background: var(--accent); color: #031008; }

.p7k_btn--ghost {
  background: rgba(255,255,255,0.07);
  color: var(--text);
  border-color: var(--border);
}
.p7k_btn--ghost:hover { background: rgba(255,255,255,0.12); color: var(--text); }

.p7k_btn--sm   { padding: 8px 16px;  font-size: 0.8rem;  min-height: 36px; }
.p7k_btn--md   { padding: 11px 22px; font-size: 0.91rem; }
.p7k_btn--lg   { padding: 14px 28px; font-size: 1rem;    }
.p7k_btn--full { width: 100%; text-align: center; }

/* 8. Navigation */
.p7k_nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11,17,32,0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.p7k_nav-inner {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 60px;
}
.p7k_logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.p7k_logo-link img { height: 36px; width: auto; }

.p7k_nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  margin-left: auto;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
}
.p7k_nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.p7k_nav-links {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 60px;
  left: 0;
  right: 0;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  padding: 10px 16px 16px;
  list-style: none;
  gap: 2px;
  z-index: 99;
}
.p7k_nav-links.open { display: flex; }
.p7k_nav-link {
  display: flex;
  align-items: center;
  padding: 10px 12px;
  color: var(--muted);
  font-size: 0.9rem;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  min-height: 44px;
}
.p7k_nav-link:hover,
.p7k_nav-link.active { color: var(--text); background: rgba(255,255,255,0.06); }
.p7k_nav-cta { margin-left: auto; }

/* 9. (no ticker) */

/* 10. Hero — Layout A, single-col mobile */
.p7k_hero {
  padding: 32px 0 40px;
  background: linear-gradient(155deg, rgba(0,200,83,0.08) 0%, transparent 50%), var(--bg-base);
}
.p7k_hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
.p7k_badge {
  display: inline-block;
  background: rgba(0,200,83,0.12);
  color: var(--accent);
  border: 1px solid rgba(0,200,83,0.3);
  border-radius: var(--radius-sm);
  padding: 4px 12px;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.p7k_hero-title { margin-bottom: 14px; }
.p7k_hero-lead {
  color: var(--muted);
  font-size: 0.97rem;
  margin-bottom: 22px;
  line-height: 1.73;
}
.p7k_code-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 18px;
  margin-bottom: 18px;
}
.p7k_code-label {
  display: block;
  font-size: 0.7rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 8px;
}
.p7k_code-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.p7k_code-value {
  font-family: var(--font-head);
  font-size: clamp(1.3rem, 4vw, 1.6rem);
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.1em;
  flex: 1;
  min-width: 0;
}
.p7k_code-bonus {
  display: block;
  font-size: 0.82rem;
  color: var(--highlight);
  font-weight: 700;
}
.p7k_disclaimer-note {
  font-size: 0.7rem;
  color: var(--muted);
  margin-top: 8px;
  margin-bottom: 0;
}
.p7k_copy-btn { flex-shrink: 0; }

/* Widget card */
.p7k_widget-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow);
}
.p7k_widget-title {
  font-size: 1.05rem;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.p7k_bonus-list { list-style: none; margin-bottom: 18px; }
.p7k_bonus-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.87rem;
  gap: 8px;
}
.p7k_bonus-item:last-child { border-bottom: none; }
.p7k_bonus-label { color: var(--muted); }
.p7k_bonus-value { font-weight: 600; text-align: right; }
.p7k_widget-note {
  font-size: 0.69rem;
  color: var(--muted);
  text-align: center;
  margin-top: 12px;
  margin-bottom: 0;
  line-height: 1.55;
}

/* 11. Trust bar */
.p7k_trust-bar {
  background: rgba(0,200,83,0.05);
  border-bottom: 1px solid var(--border);
  padding: 9px 0;
  overflow: hidden;
}
.p7k_trust-bar-inner {
  display: flex;
  gap: 24px;
  align-items: center;
  overflow-x: auto;
  scrollbar-width: none;
}
.p7k_trust-bar-inner::-webkit-scrollbar { display: none; }
.p7k_trust-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--muted);
  white-space: nowrap;
}

/* 12. Content sections */
.p7k_section {
  padding: 44px 0;
  content-visibility: auto;
  contain-intrinsic-size: 0 500px;
}
.p7k_section--alt { background: var(--bg-card); }
.p7k_section-title  { margin-bottom: 10px; }
.p7k_section-lead   { color: var(--muted); margin-bottom: 28px; font-size: 0.96rem; }
.p7k_subsection-title {
  font-family: var(--font-head);
  font-size: 1.08rem;
  font-weight: 600;
  margin: 26px 0 11px;
}

/* Steps */
.p7k_steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.p7k_step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 16px;
}
.p7k_section--alt .p7k_step { background: var(--bg-base); }
.p7k_step-num {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--accent);
  color: #031008;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p7k_step-body  { flex: 1; min-width: 0; }
.p7k_step-title { font-size: 0.96rem; margin-bottom: 5px; }

/* Tables */
.p7k_table-wrap {
  overflow-x: auto;
  margin-bottom: 18px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.p7k_table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
  min-width: 360px;
}
.p7k_table th {
  background: rgba(0,200,83,0.1);
  color: var(--text);
  font-family: var(--font-head);
  font-weight: 700;
  padding: 10px 13px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 0.77rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.p7k_table td {
  padding: 10px 13px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  vertical-align: top;
  line-height: 1.5;
}
.p7k_table tr:last-child td { border-bottom: none; }
.p7k_table tr:hover td { background: rgba(255,255,255,0.025); }
.p7k_table-note {
  font-size: 0.75rem;
  color: var(--muted);
  font-style: italic;
  margin-top: -10px;
  margin-bottom: 18px;
}

/* Tip box */
.p7k_tip-box {
  background: rgba(245,197,24,0.06);
  border: 1px solid rgba(245,197,24,0.24);
  border-radius: var(--radius);
  padding: 18px 20px;
  margin-top: 22px;
}
.p7k_tip-title { font-size: 0.96rem; color: var(--highlight); margin-bottom: 7px; }

/* Payment grid */
.p7k_payment-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 24px;
}
.p7k_payment-card {
  background: var(--bg-base);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  position: relative;
}
.p7k_section--alt .p7k_payment-card { background: var(--bg-card); }
.p7k_payment-icon { font-size: 1.5rem; margin-bottom: 7px; display: block; }
.p7k_payment-name { font-size: 0.97rem; margin-bottom: 5px; }
.p7k_payment-desc { font-size: 0.79rem; color: var(--muted); margin-bottom: 0; }
.p7k_payment-tag {
  position: absolute;
  top: 11px; right: 11px;
  background: rgba(0,200,83,0.14);
  color: var(--accent);
  border-radius: var(--radius-sm);
  font-size: 0.66rem;
  font-weight: 700;
  padding: 3px 7px;
  letter-spacing: 0.03em;
}

/* Game categories */
.p7k_game-cats { display: grid; grid-template-columns: 1fr; gap: 14px; }
.p7k_game-cat {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  border-left: 3px solid var(--accent);
}
.p7k_section--alt .p7k_game-cat { background: var(--bg-base); }
.p7k_game-cat--live  { border-left-color: var(--highlight); }
.p7k_game-cat--other { border-left-color: var(--muted); }
.p7k_game-cat-title  { font-size: 1rem; margin-bottom: 7px; }
.p7k_rtp-info {
  display: flex;
  gap: 10px;
  margin-top: 10px;
  flex-wrap: wrap;
}
.p7k_rtp-info span {
  font-size: 0.75rem;
  color: var(--muted);
  background: rgba(255,255,255,0.05);
  padding: 3px 9px;
  border-radius: var(--radius-sm);
}

/* Trust section grid */
.p7k_trust-grid { display: grid; grid-template-columns: 1fr; gap: 12px; }
.p7k_trust-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
}
.p7k_section--alt .p7k_trust-card { background: var(--bg-base); }
.p7k_trust-icon  { font-size: 1.5rem; margin-bottom: 8px; display: block; }
.p7k_trust-label { font-size: 0.97rem; margin-bottom: 5px; }
.p7k_trust-desc  { font-size: 0.81rem; color: var(--muted); margin-bottom: 0; }

/* Author card */
.p7k_author-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px;
}
.p7k_author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), rgba(0,200,83,0.3));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  color: #031008;
  flex-shrink: 0;
}
.p7k_author-info  { flex: 1; min-width: 0; }
.p7k_author-role  { font-size: 0.71rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 2px; }
.p7k_author-name  { font-size: 1.05rem; margin-bottom: 2px; }
.p7k_author-title { font-size: 0.79rem; color: var(--accent); margin-bottom: 8px; }
.p7k_author-bio   { font-size: 0.85rem; color: var(--muted); margin-bottom: 6px; }
.p7k_update-note  { font-size: 0.72rem; color: var(--muted); margin-bottom: 0; }

/* 13. FAQ accordion */
.p7k_faq-list {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.p7k_faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.p7k_section--alt .p7k_faq-item { background: var(--bg-base); }
.p7k_faq-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  background: none;
  border: none;
  padding: 15px 18px;
  text-align: left;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  min-height: 52px;
  transition: background var(--transition);
  line-height: 1.4;
}
.p7k_faq-btn::after {
  content: '+';
  flex-shrink: 0;
  font-size: 1.25rem;
  color: var(--accent);
  font-weight: 300;
  line-height: 1;
  font-family: system-ui, sans-serif;
  transition: transform var(--transition);
}
.p7k_faq-item.open .p7k_faq-btn::after { transform: rotate(45deg); }
.p7k_faq-btn:hover { background: rgba(255,255,255,0.04); }
.p7k_faq-answer {
  display: none;
  padding: 0 18px 16px;
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.7;
}
.p7k_faq-item.open .p7k_faq-answer { display: block; }

/* 14. CTA Band */
.p7k_cta-band {
  padding: 40px 0;
  background: linear-gradient(135deg, rgba(0,200,83,0.12) 0%, rgba(245,197,24,0.07) 100%);
  border-top: 1px solid rgba(0,200,83,0.18);
  border-bottom: 1px solid rgba(0,200,83,0.18);
}
.p7k_cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
}
.p7k_cta-title { font-size: clamp(1.15rem, 3vw, 1.6rem); margin-bottom: 4px; }
.p7k_cta-sub   { font-size: 0.9rem; color: var(--muted); margin-bottom: 0; }

/* 15. Footer */
.p7k_footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 30px 0 20px;
}
.p7k_footer-top {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}
.p7k_footer-brand img   { height: 28px; width: auto; margin-bottom: 7px; }
.p7k_footer-tagline     { font-size: 0.77rem; color: var(--muted); margin-bottom: 0; }
.p7k_footer-nav         { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.p7k_footer-link        { font-size: 0.79rem; color: var(--muted); transition: color var(--transition); }
.p7k_footer-link:hover  { color: var(--accent); }
.p7k_footer-disclaimer p {
  font-size: 0.72rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 0;
}

/* 16. Sticky mobile CTA */
.p7k_sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 200;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 10px 16px;
  display: flex;
}
.p7k_sticky-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
}
.p7k_sticky-text  { display: flex; flex-direction: column; gap: 1px; }
.p7k_sticky-code  { font-family: var(--font-head); font-weight: 700; font-size: 0.88rem; color: var(--accent); letter-spacing: 0.06em; }
.p7k_sticky-bonus { font-size: 0.71rem; color: var(--muted); }

/* Legal pages */
.p7k_legal-page { padding: 36px 0 60px; }
.p7k_legal-header {
  margin-bottom: 28px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}
.p7k_legal-header h1 { margin-bottom: 6px; }
.p7k_legal-meta { font-size: 0.79rem; color: var(--muted); margin-bottom: 0; }
.p7k_legal-section { margin-bottom: 30px; }
.p7k_legal-section h2 {
  font-size: 1.1rem;
  margin-bottom: 12px;
  padding-bottom: 7px;
  border-bottom: 1px solid var(--border);
}
.p7k_legal-section h3 { font-size: 0.97rem; margin: 14px 0 7px; }
.p7k_legal-section p  { font-size: 0.89rem; color: var(--muted); }
.p7k_legal-section ul,
.p7k_legal-section ol { padding-left: 18px; margin-bottom: 10px; }
.p7k_legal-section li { font-size: 0.87rem; color: var(--muted); margin-bottom: 5px; line-height: 1.6; }
.p7k_age-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,72,72,0.1);
  border: 1px solid rgba(255,72,72,0.28);
  border-radius: var(--radius);
  padding: 12px 16px;
  margin-bottom: 16px;
}
.p7k_age-num  { font-family: var(--font-head); font-size: 2rem; font-weight: 700; color: #ff4848; line-height: 1; }
.p7k_age-text { font-size: 0.85rem; color: var(--text); line-height: 1.45; }

/* 17. Animations */
@keyframes p7k-fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0);     }
}
.animate { opacity: 0; transform: translateY(18px); will-change: transform; }
.animate.visible { animation: p7k-fadeUp 0.48s ease forwards; }

/* 18. Responsive */
@media (min-width: 480px) {
  .p7k_payment-grid { grid-template-columns: 1fr 1fr; }
  .p7k_trust-grid   { grid-template-columns: 1fr 1fr; }
  .p7k_game-cats    { grid-template-columns: 1fr 1fr; }
  .p7k_author-card  { flex-direction: row; }
}

@media (min-width: 768px) {
  body { padding-bottom: 0; }
  .p7k_nav-toggle { display: none; }
  .p7k_nav-links {
    display: flex;
    flex-direction: row;
    position: static;
    background: none;
    border: none;
    padding: 0;
    align-items: center;
    gap: 4px;
  }
  .p7k_nav-cta    { margin-left: 0; }
  .p7k_sticky-cta { display: none; }
  .p7k_cta-inner  { flex-direction: row; justify-content: space-between; text-align: left; }
  .p7k_payment-grid { grid-template-columns: repeat(4, 1fr); }
  .p7k_trust-grid   { grid-template-columns: repeat(4, 1fr); }
  .p7k_game-cats    { grid-template-columns: repeat(3, 1fr); }
  .p7k_footer-top   { flex-direction: row; justify-content: space-between; align-items: flex-start; }
}

@media (min-width: 1024px) {
  .p7k_hero { padding: 56px 0 64px; }
  .p7k_hero-grid {
    grid-template-columns: 1fr 400px;
    gap: 52px;
    align-items: start;
  }
  .p7k_section { padding: 56px 0; }
}
