/* ============================================================
   pinco-casino-oyun.com — Production Stylesheet
   Prefix: p9x | Theme: dark | Layout: A (Split grid)
   ============================================================ */

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

/* 2. RESET */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
img, video, svg { display: block; max-width: 100%; height: auto; }
button { cursor: pointer; border: none; background: none; font: inherit; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
table { border-collapse: collapse; border-spacing: 0; }
input, select, textarea { font: inherit; }

/* 3. CSS CUSTOM PROPERTIES */
:root {
  /* Palette */
  --bg:          #111014;
  --bg-card:     #1a1820;
  --accent:      #e8192c;
  --highlight:   #f5a623;
  --text:        #f0eef5;
  --muted:       #8a8596;
  --border:      #2e2b38;

  /* Typography */
  --font-body:   'Inter', system-ui, sans-serif;
  --font-display:'Oswald', 'Inter', sans-serif;
  --fs-xs:       0.75rem;
  --fs-sm:       0.875rem;
  --fs-base:     1rem;
  --fs-md:       1.125rem;
  --fs-lg:       1.25rem;
  --fs-xl:       1.5rem;
  --fs-2xl:      1.875rem;
  --fs-3xl:      2.25rem;
  --fs-4xl:      3rem;
  --lh-tight:    1.2;
  --lh-base:     1.6;
  --lh-relaxed:  1.75;

  /* Spacing */
  --sp-1:  0.25rem;
  --sp-2:  0.5rem;
  --sp-3:  0.75rem;
  --sp-4:  1rem;
  --sp-5:  1.25rem;
  --sp-6:  1.5rem;
  --sp-8:  2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;

  /* Radius */
  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  12px;
  --radius-xl:  20px;
  --radius-full:9999px;

  /* Transitions */
  --tr-fast:    150ms ease;
  --tr-base:    250ms ease;
  --tr-slow:    400ms ease;

  /* Shadows */
  --shadow-sm:  0 1px 3px rgba(0,0,0,.4);
  --shadow-md:  0 4px 16px rgba(0,0,0,.5);
  --shadow-lg:  0 8px 32px rgba(0,0,0,.6);
  --shadow-accent: 0 0 24px rgba(232,25,44,.35);
}

/* 4. HTML / BODY + CUSTOM SCROLLBAR */
html {
  font-size: 16px;
}
body {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: var(--lh-base);
  color: var(--text);
  background-color: var(--bg);
  padding-bottom: 70px;
  min-width: 320px;
}
@media (min-width: 768px) {
  body { padding-bottom: 0; }
}

/* Custom scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: var(--radius-full); }
::-webkit-scrollbar-thumb:hover { background: var(--muted); }

/* 5. TYPOGRAPHY SCALE */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: var(--lh-tight);
  color: var(--text);
}
h1 { font-size: var(--fs-2xl); }
h2 { font-size: var(--fs-xl); }
h3 { font-size: var(--fs-lg); }
h4 { font-size: var(--fs-md); }
h5 { font-size: var(--fs-base); }
h6 { font-size: var(--fs-sm); }

@media (min-width: 768px) {
  h1 { font-size: var(--fs-3xl); }
  h2 { font-size: var(--fs-2xl); }
  h3 { font-size: var(--fs-xl); }
}
@media (min-width: 1024px) {
  h1 { font-size: var(--fs-4xl); }
}

p { margin-bottom: var(--sp-4); line-height: var(--lh-relaxed); }
p:last-child { margin-bottom: 0; }
strong { font-weight: 700; }
em { font-style: italic; }
small { font-size: var(--fs-sm); color: var(--muted); }

/* 6. CONTAINER */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--sp-4);
  width: 100%;
}

/* 7. BUTTONS */
/* Base */
.btn-primary,
.btn-highlight,
.btn-outline,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  border-radius: var(--radius-md);
  transition: filter var(--tr-base), transform var(--tr-fast), box-shadow var(--tr-base);
  white-space: nowrap;
  min-height: 44px;
  min-width: 44px;
  cursor: pointer;
  text-decoration: none;
}
.btn-primary:hover  { filter: brightness(1.12); box-shadow: var(--shadow-accent); }
.btn-highlight:hover{ filter: brightness(1.1); transform: translateY(-1px); }
.btn-outline:hover  { background: var(--accent); color: var(--text); border-color: var(--accent); }
.btn-ghost:hover    { background: rgba(240,238,245,.08); }
.btn-primary:active,
.btn-highlight:active { transform: scale(.97); }

/* Colors */
.btn-primary  { background: var(--accent);     color: var(--text); }
.btn-highlight{ background: var(--highlight);  color: #1a1206; }
.btn-outline  { background: transparent; color: var(--accent); border: 2px solid var(--accent); }
.btn-ghost    { background: transparent; color: var(--text); border: 1px solid var(--border); }

/* Sizes */
.btn-sm  { font-size: var(--fs-xs);  padding: var(--sp-2) var(--sp-4);   border-radius: var(--radius-sm); min-height: 36px; }
.btn-md  { font-size: var(--fs-sm);  padding: var(--sp-3) var(--sp-6);   }
.btn-lg  { font-size: var(--fs-md);  padding: var(--sp-4) var(--sp-8);   border-radius: var(--radius-lg); }
.btn-full{ width: 100%; }

/* 8. NAVIGATION */
.p9x_nav {
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
}
.p9x_nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  height: 64px;
}
.p9x_logo { display: flex; align-items: center; flex-shrink: 0; }
.p9x_logo img { width: 120px; height: 40px; object-fit: contain; }

/* Hamburger */
.p9x_nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: var(--sp-2);
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}
.p9x_nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: var(--radius-full);
  transition: transform var(--tr-base), opacity var(--tr-base);
}
.p9x_nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.p9x_nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.p9x_nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.p9x_nav-links {
  display: none;
  position: absolute;
  top: 64px;
  left: 0;
  right: 0;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  padding: var(--sp-4) 0;
  flex-direction: column;
  z-index: 99;
}
.p9x_nav-links.open { display: flex; }
.p9x_nav-links li a {
  display: block;
  padding: var(--sp-3) var(--sp-6);
  font-size: var(--fs-base);
  color: var(--text);
  transition: color var(--tr-fast), background var(--tr-fast);
  min-height: 44px;
  line-height: 1.6;
}
.p9x_nav-links li a:hover,
.p9x_nav-links li a[aria-current="page"] { color: var(--highlight); background: rgba(245,166,35,.06); }
.p9x_nav-cta { display: none; }

@media (min-width: 768px) {
  .p9x_nav-toggle { display: none; }
  .p9x_nav-links {
    display: flex !important;
    position: static;
    flex-direction: row;
    border: none;
    padding: 0;
    gap: var(--sp-2);
    background: transparent;
  }
  .p9x_nav-links li a {
    padding: var(--sp-2) var(--sp-3);
    font-size: var(--fs-sm);
    border-radius: var(--radius-sm);
  }
  .p9x_nav-cta { display: inline-flex; }
}

/* 9. HERO SECTION */
.p9x_hero {
  background: linear-gradient(135deg, var(--bg) 0%, #1f1020 40%, #2a0e14 100%);
  min-height: 480px;
  padding: var(--sp-12) 0;
  position: relative;
  overflow: hidden;
}
.p9x_hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(232,25,44,.18) 0%, transparent 65%);
  pointer-events: none;
}
.p9x_hero .container { position: relative; z-index: 1; }
.p9x_hero-grid { display: flex; flex-direction: column; gap: var(--sp-8); }
.p9x_hero-content { flex: 1; }
.p9x_hero-widget { width: 100%; }
.p9x_hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  background: rgba(232,25,44,.15);
  border: 1px solid rgba(232,25,44,.35);
  color: var(--accent);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: var(--sp-1) var(--sp-3);
  border-radius: var(--radius-full);
  margin-bottom: var(--sp-4);
}
.p9x_hero h1 { margin-bottom: var(--sp-5); color: var(--text); }
.p9x_hero-lead {
  font-size: var(--fs-md);
  color: var(--muted);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--sp-6);
}
.p9x_hero-ctas { display: flex; flex-wrap: wrap; gap: var(--sp-3); }

@media (min-width: 1024px) {
  .p9x_hero { min-height: 560px; padding: var(--sp-16) 0; }
  .p9x_hero-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    align-items: center;
    gap: var(--sp-12);
  }
  .p9x_hero-widget { width: 400px; }
}

/* 10. TRUST BAR */
.p9x_trust-bar {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: var(--sp-4) 0;
}
.p9x_trust-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--sp-6);
}
.p9x_trust-item {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--fs-sm);
  color: var(--muted);
  white-space: nowrap;
}
.p9x_trust-item svg,
.p9x_trust-icon {
  width: 20px;
  height: 20px;
  color: var(--highlight);
  flex-shrink: 0;
}

/* 11. CONTENT SECTIONS */
.p9x_section {
  padding: var(--sp-12) 0;
}
.p9x_section + .p9x_section {
  border-top: 1px solid var(--border);
}
.p9x_section-label {
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--sp-2);
}
.p9x_section h2 { margin-bottom: var(--sp-5); }
.p9x_section h3 { margin-bottom: var(--sp-3); color: var(--highlight); }

.p9x_content-grid { display: flex; flex-direction: column; gap: var(--sp-8); }
@media (min-width: 1024px) {
  .p9x_content-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: var(--sp-12);
    align-items: start;
  }
}

/* Bonus card */
.p9x_bonus-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--sp-6);
  position: relative;
  overflow: hidden;
}
.p9x_bonus-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--highlight));
}
.p9x_bonus-amount {
  font-family: var(--font-display);
  font-size: var(--fs-3xl);
  color: var(--highlight);
  line-height: 1;
  margin-bottom: var(--sp-2);
}
.p9x_bonus-desc { font-size: var(--fs-sm); color: var(--muted); margin-bottom: var(--sp-4); }
.p9x_promo-code {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  background: var(--bg);
  border: 1px dashed var(--accent);
  border-radius: var(--radius-md);
  padding: var(--sp-3) var(--sp-4);
  margin-bottom: var(--sp-4);
}
.p9x_promo-label { font-size: var(--fs-xs); color: var(--muted); text-transform: uppercase; letter-spacing: .06em; display: block; margin-bottom: var(--sp-1); }
.p9x_promo-value {
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  color: var(--text);
  letter-spacing: .08em;
  flex: 1;
}
.p9x_bonus-terms { font-size: var(--fs-xs); color: var(--muted); line-height: var(--lh-relaxed); }
.p9x_bonus-terms li { padding: var(--sp-1) 0; padding-left: var(--sp-4); position: relative; }
.p9x_bonus-terms li::before { content: '•'; position: absolute; left: 0; color: var(--accent); }

/* Step list */
.p9x_steps { counter-reset: step-counter; display: flex; flex-direction: column; gap: var(--sp-4); }
.p9x_step {
  display: flex;
  gap: var(--sp-4);
  align-items: flex-start;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--sp-5);
}
.p9x_step-num {
  counter-increment: step-counter;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: var(--accent);
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  color: var(--text);
  font-weight: 600;
}
.p9x_step-content h4 { margin-bottom: var(--sp-1); }
.p9x_step-content p { font-size: var(--fs-sm); color: var(--muted); margin-bottom: 0; }

/* Info card / widget */
.p9x_widget {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: sticky;
  top: 80px;
}
.p9x_widget-header {
  background: linear-gradient(135deg, var(--accent), #c01220);
  padding: var(--sp-5) var(--sp-6);
  text-align: center;
}
.p9x_widget-header h3 { color: var(--text); margin-bottom: var(--sp-1); font-size: var(--fs-xl); }
.p9x_widget-header p { color: rgba(240,238,245,.8); font-size: var(--fs-sm); margin-bottom: 0; }
.p9x_widget-body { padding: var(--sp-6); }
.p9x_widget-stat { display: flex; justify-content: space-between; align-items: center; padding: var(--sp-3) 0; border-bottom: 1px solid var(--border); }
.p9x_widget-stat:last-of-type { border-bottom: none; }
.p9x_widget-stat-label { font-size: var(--fs-sm); color: var(--muted); }
.p9x_widget-stat-value { font-family: var(--font-display); font-weight: 600; color: var(--highlight); }

/* Game grid */
.p9x_game-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-4);
}
@media (min-width: 480px) {
  .p9x_game-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 768px) {
  .p9x_game-grid { grid-template-columns: repeat(3, 1fr); }
}
.p9x_game-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  position: relative;
  transition: transform var(--tr-base), box-shadow var(--tr-base);
}
.p9x_game-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.p9x_game-card-img { width: 100%; height: 100%; object-fit: cover; }
.p9x_game-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.8) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--sp-3);
}
.p9x_game-card-name { font-family: var(--font-display); font-size: var(--fs-sm); color: var(--text); }
.p9x_game-card-rtp { font-size: var(--fs-xs); color: var(--highlight); }

/* Provider badge */
.p9x_provider-badge {
  display: inline-flex;
  align-items: center;
  padding: var(--sp-1) var(--sp-2);
  background: rgba(245,166,35,.12);
  border: 1px solid rgba(245,166,35,.25);
  border-radius: var(--radius-sm);
  font-size: var(--fs-xs);
  color: var(--highlight);
  font-weight: 700;
}

/* 12. FAQ ACCORDION */
.p9x_faq { display: flex; flex-direction: column; }
.p9x_faq-item {
  border-bottom: 1px solid var(--border);
}
.p9x_faq-item:last-child { border-bottom: none; }
.p9x_faq-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: var(--sp-5) 0;
  text-align: left;
  font-size: var(--fs-base);
  font-weight: 700;
  color: var(--text);
  background: none;
  border: none;
  cursor: pointer;
  min-height: 44px;
  gap: var(--sp-4);
  transition: color var(--tr-fast);
}
.p9x_faq-btn:hover { color: var(--highlight); }
.p9x_faq-icon {
  width: 20px;
  height: 20px;
  min-width: 20px;
  border: 2px solid var(--muted);
  border-radius: var(--radius-full);
  position: relative;
  transition: border-color var(--tr-fast), transform var(--tr-base);
  flex-shrink: 0;
}
.p9x_faq-icon::before,
.p9x_faq-icon::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 8px; height: 2px;
  background: var(--muted);
  transform: translate(-50%, -50%);
  border-radius: 2px;
  transition: opacity var(--tr-fast), background var(--tr-fast);
}
.p9x_faq-icon::after {
  width: 2px; height: 8px;
  transition: transform var(--tr-base), background var(--tr-fast);
}
.p9x_faq-item.open .p9x_faq-icon { border-color: var(--highlight); transform: rotate(45deg); }
.p9x_faq-item.open .p9x_faq-icon::before,
.p9x_faq-item.open .p9x_faq-icon::after { background: var(--highlight); }

.p9x_faq-answer {
  display: none;
  padding: 0 0 var(--sp-5) 0;
  color: var(--muted);
  font-size: var(--fs-sm);
  line-height: var(--lh-relaxed);
}
.p9x_faq-item.open .p9x_faq-answer { display: block; }

/* 13. CTA BAND */
.p9x_cta-band {
  background: linear-gradient(135deg, #1f0a10 0%, #2a0e14 50%, #1a0810 100%);
  border-top: 1px solid rgba(232,25,44,.3);
  border-bottom: 1px solid rgba(232,25,44,.3);
  padding: var(--sp-16) 0;
  text-align: center;
}
.p9x_cta-band h2 { margin-bottom: var(--sp-4); font-size: var(--fs-2xl); }
.p9x_cta-band p { color: var(--muted); margin-bottom: var(--sp-8); font-size: var(--fs-md); max-width: 560px; margin-left: auto; margin-right: auto; }
.p9x_cta-band .p9x_cta-actions { display: flex; flex-wrap: wrap; gap: var(--sp-3); justify-content: center; }

/* 14. FOOTER */
.p9x_footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: var(--sp-12) 0 var(--sp-8);
}
.p9x_footer-grid {
  display: flex;
  flex-direction: column;
  gap: var(--sp-8);
  margin-bottom: var(--sp-10);
}
@media (min-width: 768px) {
  .p9x_footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--sp-8);
  }
}
.p9x_footer-brand p { font-size: var(--fs-sm); color: var(--muted); line-height: var(--lh-relaxed); margin-top: var(--sp-4); }
.p9x_footer-col h4 { font-size: var(--fs-sm); font-family: var(--font-display); text-transform: uppercase; letter-spacing: .06em; color: var(--muted); margin-bottom: var(--sp-4); }
.p9x_footer-col ul { display: flex; flex-direction: column; gap: var(--sp-2); }
.p9x_footer-col ul li a { font-size: var(--fs-sm); color: var(--muted); transition: color var(--tr-fast); min-height: 32px; display: inline-flex; align-items: center; }
.p9x_footer-col ul li a:hover { color: var(--text); }
.p9x_footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: var(--sp-6);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  align-items: center;
  text-align: center;
}
@media (min-width: 768px) {
  .p9x_footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; }
}
.p9x_footer-copy { font-size: var(--fs-xs); color: var(--muted); }
.p9x_footer-legal { font-size: var(--fs-xs); color: var(--muted); max-width: 560px; line-height: var(--lh-relaxed); }
.p9x_age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border: 2px solid var(--accent);
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--accent);
  flex-shrink: 0;
}

/* 15. STICKY MOBILE CTA BAR */
.p9x_sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 70px;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--sp-4);
  gap: var(--sp-3);
  z-index: 200;
  box-shadow: 0 -4px 20px rgba(0,0,0,.4);
}
.p9x_sticky-text {
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
}
@media (min-width: 768px) {
  .p9x_sticky-bar { display: none; }
}

/* 16. TABLE STYLES */
.p9x_table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: var(--radius-lg); border: 1px solid var(--border); }
.p9x_table {
  width: 100%;
  font-size: var(--fs-sm);
  color: var(--text);
}
.p9x_table thead tr { background: var(--accent); }
.p9x_table thead th {
  padding: var(--sp-3) var(--sp-4);
  text-align: left;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--fs-xs);
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--text);
  white-space: nowrap;
}
.p9x_table tbody tr { border-bottom: 1px solid var(--border); transition: background var(--tr-fast); }
.p9x_table tbody tr:last-child { border-bottom: none; }
.p9x_table tbody tr:hover { background: rgba(255,255,255,.03); }
.p9x_table tbody td {
  padding: var(--sp-3) var(--sp-4);
  color: var(--text);
  vertical-align: middle;
}
.p9x_table tbody td:first-child { font-weight: 700; }
.p9x_table-highlight { color: var(--highlight); font-weight: 700; }
.p9x_table-muted { color: var(--muted); font-size: var(--fs-xs); }

/* 17. ALERT / NOTICE */
.p9x_notice {
  background: rgba(245,166,35,.1);
  border: 1px solid rgba(245,166,35,.3);
  border-left: 4px solid var(--highlight);
  border-radius: var(--radius-md);
  padding: var(--sp-4) var(--sp-5);
  font-size: var(--fs-sm);
  color: var(--muted);
  line-height: var(--lh-relaxed);
}
.p9x_notice strong { color: var(--highlight); }

.p9x_notice-danger {
  background: rgba(232,25,44,.08);
  border: 1px solid rgba(232,25,44,.25);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius-md);
  padding: var(--sp-4) var(--sp-5);
  font-size: var(--fs-sm);
  color: var(--muted);
}
.p9x_notice-danger strong { color: var(--accent); }

/* 18. PROVIDER / LICENSE BADGES ROW */
.p9x_badges-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  align-items: center;
}
.p9x_badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-2) var(--sp-3);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-size: var(--fs-xs);
  color: var(--muted);
  transition: border-color var(--tr-fast);
}
.p9x_badge:hover { border-color: var(--highlight); color: var(--text); }
.p9x_badge-dot { width: 8px; height: 8px; border-radius: var(--radius-full); background: var(--highlight); flex-shrink: 0; }
.p9x_badge-dot-green { background: #2ecc71; }

/* Author bio */
.p9x_author-card {
  display: flex;
  gap: var(--sp-4);
  align-items: flex-start;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--sp-5);
}
.p9x_author-avatar {
  width: 56px; height: 56px;
  min-width: 56px;
  background: linear-gradient(135deg, var(--accent), var(--highlight));
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  color: var(--text);
}
.p9x_author-name { font-weight: 700; color: var(--text); margin-bottom: var(--sp-1); }
.p9x_author-title { font-size: var(--fs-xs); color: var(--highlight); text-transform: uppercase; letter-spacing: .06em; margin-bottom: var(--sp-2); }
.p9x_author-bio { font-size: var(--fs-sm); color: var(--muted); margin-bottom: 0; line-height: var(--lh-relaxed); }

/* Comparison card */
.p9x_compare-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-4);
}
@media (min-width: 640px) {
  .p9x_compare-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .p9x_compare-grid { grid-template-columns: repeat(3, 1fr); }
}
.p9x_compare-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--sp-5);
  transition: border-color var(--tr-base);
}
.p9x_compare-card.featured { border-color: var(--highlight); box-shadow: 0 0 20px rgba(245,166,35,.15); }
.p9x_compare-card h4 { margin-bottom: var(--sp-4); }
.p9x_compare-row { display: flex; justify-content: space-between; padding: var(--sp-2) 0; border-bottom: 1px solid var(--border); font-size: var(--fs-sm); }
.p9x_compare-row:last-child { border-bottom: none; }
.p9x_compare-row span:last-child { font-weight: 700; color: var(--highlight); }

/* 19. ANIMATIONS */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(232,25,44,.4); }
  50%       { box-shadow: 0 0 0 8px rgba(232,25,44,0); }
}
.animate {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--tr-slow), transform var(--tr-slow);
}
.animate.visible {
  opacity: 1;
  transform: translateY(0);
}
.p9x_pulse { animation: pulse 2s infinite; }

/* 20. RESPONSIVE UTILITIES */
@media (min-width: 480px) {
  .hide-480 { display: none !important; }
  .show-480 { display: block !important; }
}
@media (min-width: 768px) {
  .hide-768 { display: none !important; }
  .show-768 { display: block !important; }
}
@media (min-width: 1024px) {
  .hide-1024 { display: none !important; }
  .show-1024 { display: block !important; }
}
.text-center { text-align: center; }
.text-muted   { color: var(--muted); }
.text-accent  { color: var(--accent); }
.text-highlight{ color: var(--highlight); }
.mt-4  { margin-top: var(--sp-4); }
.mt-6  { margin-top: var(--sp-6); }
.mt-8  { margin-top: var(--sp-8); }
.mb-4  { margin-bottom: var(--sp-4); }
.mb-6  { margin-bottom: var(--sp-6); }
.mb-8  { margin-bottom: var(--sp-8); }
.gap-4 { gap: var(--sp-4); }
.flex  { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.flex-wrap { flex-wrap: wrap; }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border-width: 0;
}

/* Page header (sub pages) */
.p9x_page-header {
  background: linear-gradient(135deg, var(--bg) 0%, #1a0a1a 100%);
  padding: var(--sp-12) 0 var(--sp-10);
  border-bottom: 1px solid var(--border);
}
.p9x_breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  align-items: center;
  font-size: var(--fs-xs);
  color: var(--muted);
  margin-bottom: var(--sp-4);
}
.p9x_breadcrumb a { color: var(--muted); transition: color var(--tr-fast); }
.p9x_breadcrumb a:hover { color: var(--text); }
.p9x_breadcrumb-sep { color: var(--border); }
.p9x_page-header h1 { margin-bottom: var(--sp-4); }
.p9x_page-header .p9x_hero-lead { max-width: 640px; }
