/* ============================================================
   WOLFJL CASINO PHILIPPINES – COMPLETE STYLESHEET
   Version: 2026.05.10 | wolfjl.ph
   Covers: Homepage + Register, Login, Promotions, App Download
   ============================================================ */

/* ── CSS VARIABLES ── */
:root {
  --primary:        #7C3AED;
  --primary-dark:   #5B21B6;
  --primary-light:  #A78BFA;
  --primary-xlight: #EDE9FE;
  --accent:         #F59E0B;
  --accent-dark:    #D97706;
  --white:          #FFFFFF;
  --off-white:      #FAFAFF;
  --light-gray:     #F3F4F6;
  --border:         #E5E7EB;
  --text:           #111827;
  --text-gray:      #6B7280;
  --shadow-sm:      0 2px 8px rgba(124,58,237,.07);
  --shadow-md:      0 6px 20px rgba(124,58,237,.10);
  --shadow-lg:      0 12px 40px rgba(124,58,237,.15);
  --shadow-violet:  0 8px 28px rgba(124,58,237,.25);
  --font-head:      Arial, 'Helvetica Neue', Helvetica, sans-serif;
  --font-body:      'DM Sans', Arial, sans-serif;
  --radius-sm:      10px;
  --radius-md:      16px;
  --radius-lg:      24px;
  --radius-full:    50px;
}

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html  { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body  { font-family: var(--font-body); background: #fff; color: var(--text); line-height: 1.7; font-size: 16px; overflow-x: hidden; }
img   { max-width: 100%; height: auto; display: block; }
a     { text-decoration: none; color: inherit; }
ul    { list-style: none; }

/* ── KEYFRAME ANIMATIONS ── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.06); }
}
@keyframes slideIn {
  from { opacity: 0; transform: translateX(-20px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ── LAYOUT ── */
.container   { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section-alt { background: var(--off-white); padding: 4rem 1.5rem; }

/* ── HEADER ── */
.header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: box-shadow .3s;
}
.header.scrolled { box-shadow: var(--shadow-md); }

.nav-container {
  max-width: 1400px; margin: 0 auto;
  padding: .9rem 1.5rem;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}

.logo {
  display: flex; align-items: center; gap: .6rem;
  font-family: var(--font-head); font-size: 1.6rem; font-weight: 800; color: var(--primary);
}
.logo-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; box-shadow: var(--shadow-violet);
}
.logo img { border-radius: 10px; }

.nav-menu { display: flex; gap: 1.75rem; align-items: center; }

.nav-link {
  font-weight: 700; font-size: .95rem; color: var(--text);
  transition: color .25s; position: relative; padding-bottom: 3px;
  font-family: var(--font-head);
}
.nav-link::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px; background: var(--primary);
  border-radius: 2px; transition: width .3s;
}
.nav-link:hover,
.nav-link[aria-current="page"] { color: var(--primary); }
.nav-link:hover::after,
.nav-link[aria-current="page"]::after { width: 100%; }

.cta-btn-nav {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff; padding: .65rem 1.5rem; border-radius: var(--radius-full);
  font-weight: 700; font-size: .95rem; font-family: var(--font-head);
  box-shadow: var(--shadow-violet); transition: all .3s; border: none; cursor: pointer;
}
.cta-btn-nav:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(124,58,237,.35); }

.mobile-toggle {
  display: none; background: none; border: 2px solid var(--primary);
  color: var(--primary); padding: .45rem 1rem; border-radius: 8px;
  font-weight: 700; cursor: pointer; font-family: var(--font-body);
}

/* ── BREADCRUMB (support pages) ── */
.breadcrumb { max-width: 1200px; margin: 1rem auto; padding: 0 1.5rem; font-size: .875rem; color: var(--text-gray); }
.breadcrumb a { color: var(--primary); font-weight: 600; }

/* ── HERO (homepage) ── */
.hero {
  background: linear-gradient(140deg, #fff 0%, #F5F3FF 50%, #EDE9FE 100%);
  padding: 5rem 1.5rem 4rem; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -80px; right: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(124,58,237,.12) 0%, transparent 70%);
  border-radius: 50%; animation: pulse 7s ease-in-out infinite; pointer-events: none;
}
.hero::after {
  content: '🐺'; position: absolute; bottom: -20px; right: 5%;
  font-size: 14rem; opacity: .04; line-height: 1; pointer-events: none; user-select: none;
}
.hero-container { max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }

.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--primary-xlight); color: var(--primary);
  padding: .4rem 1rem; border-radius: var(--radius-full);
  font-size: .875rem; font-weight: 700; font-family: var(--font-head);
  margin-bottom: 1.25rem; animation: slideIn .6s ease;
}

.hero h1 {
  font-family: var(--font-head); font-size: 3.25rem; font-weight: 900;
  line-height: 1.15; margin-bottom: 1.25rem; color: var(--text);
  animation: fadeInUp .8s ease; letter-spacing: -.5px;
}
.hero h1 .highlight { color: var(--primary); position: relative; }
.hero h1 .highlight::after {
  content: ''; position: absolute; bottom: 2px; left: 0;
  width: 100%; height: 10px; background: rgba(124,58,237,.15);
  z-index: -1; border-radius: 4px;
}

.hero-subtitle {
  font-size: 1.15rem; color: var(--text-gray);
  margin-bottom: 2rem; max-width: 660px; line-height: 1.75;
  animation: fadeInUp .8s ease .2s backwards;
}
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; animation: fadeInUp .8s ease .4s backwards; }
.hero-meta { font-size: .85rem; color: var(--text-gray); margin-top: 1.5rem; font-family: var(--font-head); }

/* ── HERO (support pages – smaller padding) ── */
.hero.hero-sub { padding: 4rem 1.5rem 3rem; }

/* ── BUTTONS ── */
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff; padding: 1rem 2.25rem; border-radius: var(--radius-full);
  font-weight: 700; font-family: var(--font-head); font-size: 1.05rem;
  box-shadow: var(--shadow-violet); transition: all .3s; display: inline-block; border: none; cursor: pointer;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(124,58,237,.4); }

.btn-secondary {
  background: #fff; color: var(--primary); padding: 1rem 2.25rem; border-radius: var(--radius-full);
  font-weight: 700; font-family: var(--font-head); font-size: 1.05rem;
  border: 2px solid var(--primary); transition: all .3s; display: inline-block; cursor: pointer;
}
.btn-secondary:hover { background: var(--primary); color: #fff; transform: translateY(-2px); }

.btn-white {
  background: #fff; color: var(--primary); padding: 1.1rem 2.75rem; border-radius: var(--radius-full);
  font-weight: 700; font-family: var(--font-head); font-size: 1.05rem;
  box-shadow: 0 8px 24px rgba(0,0,0,.15); transition: all .3s; display: inline-block; border: none; cursor: pointer;
}
.btn-white:hover { transform: translateY(-3px); box-shadow: 0 16px 32px rgba(0,0,0,.2); }

/* ── STAT STRIP ── */
.stat-strip {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px,1fr));
  gap: 1.5rem; padding: 2.5rem 1.5rem; max-width: 1200px; margin: 0 auto;
}
.stat-badge {
  background: #fff; border-radius: var(--radius-md); padding: 1.75rem 1.5rem;
  text-align: center; box-shadow: var(--shadow-sm); border: 1px solid var(--border);
  transition: transform .3s, box-shadow .3s;
}
.stat-badge:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.stat-number { font-family: var(--font-head); font-size: 2.25rem; font-weight: 900; color: var(--primary); display: block; }
.stat-label  { font-size: .9rem; color: var(--text-gray); font-weight: 600; font-family: var(--font-head); }

/* ── CARDS ── */
.card {
  background: #fff; padding: 2.5rem; border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm); border: 1px solid var(--border); margin-bottom: 2rem;
}

/* ── SECTION HEADERS ── */
.section-header { text-align: center; margin-bottom: 3rem; }
.section-tag {
  display: inline-block; background: var(--primary-xlight); color: var(--primary);
  padding: .45rem 1.25rem; border-radius: var(--radius-full);
  font-weight: 700; font-family: var(--font-head); font-size: .8rem;
  margin-bottom: .9rem; text-transform: uppercase; letter-spacing: .08em;
}
.section-title {
  font-family: var(--font-head); font-size: 2.4rem; font-weight: 900;
  margin-bottom: .9rem; color: var(--text); letter-spacing: -.3px;
}
.section-subtitle {
  font-size: 1.1rem; color: var(--text-gray);
  max-width: 680px; margin: 0 auto; line-height: 1.75;
}

/* ── GAMES GRID ── */
.games-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px,1fr)); gap: 1.75rem; margin-top: 2.5rem; }

.game-card {
  background: #fff; border-radius: var(--radius-md); padding: 2rem;
  border: 2px solid var(--border); transition: all .4s; position: relative; overflow: hidden;
}
.game-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  opacity: 0; transition: opacity .4s; z-index: 0;
}
.game-card:hover::before  { opacity: 1; }
.game-card:hover          { transform: translateY(-8px); border-color: var(--primary); box-shadow: var(--shadow-lg); }
.game-card > *            { position: relative; z-index: 1; }
.game-card:hover h3,
.game-card:hover p        { color: #fff; }
.game-card:hover .game-link { color: var(--accent); }

.game-icon {
  width: 80px; height: 80px; background: var(--primary-xlight);
  border-radius: 20px; display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem; margin-bottom: 1.5rem; transition: background .4s;
}
.game-card:hover .game-icon { background: rgba(255,255,255,.2); }
.game-link { color: var(--primary); font-weight: 700; font-family: var(--font-head); font-size: .9rem; text-decoration: underline; transition: color .3s; }

/* ── INFO / ALERT BOXES ── */
.info-box    { background: #EFF6FF; padding: 1.5rem; border-radius: var(--radius-sm); border-left: 4px solid #3B82F6; margin: 1.5rem 0; }
.author-box  { background: linear-gradient(135deg,#FAF5FF,#F5F3FF); padding: 1.5rem; border-radius: var(--radius-sm); border-left: 4px solid var(--primary); margin: 1.5rem 0; }
.warning-box { background: #FFF5F5; padding: 1.5rem; border-radius: var(--radius-sm); border-left: 4px solid #EF4444; margin: 1.5rem 0; }
.success-box { background: #F0FDF4; padding: 1.5rem; border-radius: var(--radius-sm); border-left: 4px solid #22C55E; margin: 1.5rem 0; }

/* ── IMAGES ── */
.center-image { text-align: center; margin: 2rem 0; }
.pg-img {
  max-width: 100%; display: block; margin: 0 auto;
  border-radius: var(--radius-md); box-shadow: var(--shadow-md);
  transition: transform .3s;
}
.pg-img:hover { transform: scale(1.01); }

/* ── TRUST / BENEFIT GRID ── */
.trust-grid   { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px,1fr)); gap: 1.75rem; }
.benefit-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px,1fr)); gap: 1.5rem; margin-top: 2rem; }

.trust-badge,
.benefit-card {
  text-align: center; padding: 2rem 1.5rem; background: #fff;
  border-radius: var(--radius-md); box-shadow: var(--shadow-sm);
  border: 1px solid var(--border); transition: transform .3s, box-shadow .3s;
}
.trust-badge:hover,
.benefit-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }

.trust-icon,
.benefit-icon { font-size: 2.75rem; display: block; margin-bottom: .9rem; }

.trust-title,
.benefit-title { font-family: var(--font-head); font-size: 1.15rem; font-weight: 800; margin-bottom: .6rem; color: var(--text); }

.trust-desc,
.benefit-desc { color: var(--text-gray); font-size: .9rem; line-height: 1.6; }

/* ── STEPS LIST ── */
.steps-list { display: flex; flex-direction: column; gap: 1.5rem; margin: 1.5rem 0; }
.step-item  { display: flex; gap: 1.25rem; align-items: flex-start; }
.step-num {
  min-width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: .95rem; font-family: var(--font-head);
  flex-shrink: 0; box-shadow: var(--shadow-violet);
}
.step-content strong { display: block; font-family: var(--font-head); font-size: 1rem; font-weight: 800; color: var(--text); margin-bottom: .3rem; }
.step-content p      { color: var(--text-gray); font-size: .95rem; line-height: 1.6; }

/* ── VIP TABLE ── */
.vip-table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; border-radius: var(--radius-sm); overflow: hidden; box-shadow: var(--shadow-sm); }
.vip-table th { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: #fff; padding: 1rem 1.25rem; text-align: left; font-family: var(--font-head); font-size: .9rem; font-weight: 800; }
.vip-table td { padding: .9rem 1.25rem; border-bottom: 1px solid var(--border); font-size: .9rem; color: var(--text-gray); }
.vip-table tr:last-child td { border-bottom: none; }
.vip-table tr:hover td { background: var(--primary-xlight); }

/* ── PROMO GRID (promotions page) ── */
.promo-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); gap: 1.75rem; margin-top: 2rem; }
.promo-card { background: #fff; border-radius: var(--radius-md); padding: 2rem; border: 2px solid var(--border); transition: all .3s; text-align: center; }
.promo-card:hover { border-color: var(--primary); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.promo-icon   { font-size: 2.75rem; margin-bottom: 1rem; display: block; }
.promo-title  { font-family: var(--font-head); font-size: 1.15rem; font-weight: 800; margin-bottom: .5rem; color: var(--text); }
.promo-amount { font-family: var(--font-head); font-size: 1.75rem; font-weight: 900; color: var(--primary); margin: .4rem 0; }
.promo-desc   { color: var(--text-gray); font-size: .875rem; line-height: 1.6; }

/* ── SECURITY CARDS (login page) ── */
.security-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); gap: 1.5rem; }
.security-card { background: #fff; border-radius: var(--radius-md); padding: 1.75rem; border: 1px solid var(--border); box-shadow: var(--shadow-sm); transition: transform .3s, box-shadow .3s; }
.security-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.security-icon { font-size: 2.5rem; margin-bottom: .9rem; display: block; }

/* ── FAQ ── */
.faq-container { max-width: 900px; margin: 0 auto; }
.faq-item { background: #fff; border-radius: var(--radius-md); margin-bottom: 1rem; border: 1px solid var(--border); overflow: hidden; transition: box-shadow .3s; }
.faq-item:hover { box-shadow: var(--shadow-md); }
.faq-question {
  padding: 1.5rem 2rem; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  font-weight: 800; font-size: 1rem; color: var(--text);
  transition: color .3s; user-select: none; font-family: var(--font-head);
}
.faq-question:hover { color: var(--primary); }
.faq-icon { font-size: 1.4rem; color: var(--primary); transition: transform .3s; flex-shrink: 0; margin-left: 1rem; }
.faq-item.active .faq-icon { transform: rotate(180deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height .4s ease, padding .4s ease;
  padding: 0 2rem; color: var(--text-gray); line-height: 1.8; font-size: .95rem;
}
.faq-item.active .faq-answer { max-height: 400px; padding: 0 2rem 1.5rem; }

/* ── PLATFORM TRUST CARD ── */
.platform-card { background: linear-gradient(135deg,#FAF5FF,#F5F3FF); border-radius: var(--radius-md); padding: 2.5rem; border: 1px solid var(--primary-light); }
.platform-icon {
  width: 90px; height: 90px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  display: flex; align-items: center; justify-content: center;
  font-size: 2.25rem; color: #fff; border: 3px solid var(--accent); flex-shrink: 0;
}

/* ── APP FEATURE CARDS ── */
.app-feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px,1fr)); gap: 1.5rem; margin-top: 2rem; }
.app-feature-card {
  background: #fff; border-radius: var(--radius-md); padding: 1.75rem 1.5rem;
  border: 1px solid var(--border); box-shadow: var(--shadow-sm);
  text-align: center; transition: transform .3s, box-shadow .3s;
}
.app-feature-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.app-feature-icon  { font-size: 2.5rem; margin-bottom: .9rem; display: block; }
.app-feature-title { font-family: var(--font-head); font-size: 1.05rem; font-weight: 800; margin-bottom: .5rem; color: var(--text); }
.app-feature-desc  { color: var(--text-gray); font-size: .875rem; line-height: 1.6; }

/* ── SYSTEM REQUIREMENTS TABLE ── */
.req-table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; border-radius: var(--radius-sm); overflow: hidden; box-shadow: var(--shadow-sm); }
.req-table th { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: #fff; padding: .9rem 1.25rem; text-align: left; font-family: var(--font-head); font-size: .875rem; font-weight: 800; }
.req-table td { padding: .8rem 1.25rem; border-bottom: 1px solid var(--border); font-size: .9rem; color: var(--text-gray); }
.req-table tr:last-child td { border-bottom: none; }
.req-table tr:hover td { background: var(--primary-xlight); }

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  padding: 4rem 1.5rem; text-align: center; position: relative; overflow: hidden; margin: 3rem 0;
}
.cta-banner::before { content: '🐺'; position: absolute; left: -40px; top: 50%; transform: translateY(-50%); font-size: 16rem; opacity: .06; pointer-events: none; user-select: none; }
.cta-banner::after  { content: '🐺'; position: absolute; right: -40px; top: 50%; transform: translateY(-50%) scaleX(-1); font-size: 16rem; opacity: .06; pointer-events: none; user-select: none; }

/* ── LINKS ── */
.blue-link { color: var(--primary); font-weight: 600; text-decoration: underline; transition: color .3s; }
.blue-link:hover { color: var(--primary-dark); }

/* ── FOOTER ── */
.footer { background: #1A1A1A; color: rgba(255,255,255,.8); padding: 3rem 1.5rem 1.5rem; }
.footer-container { max-width: 1200px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px,1fr)); gap: 2rem; margin-bottom: 3rem; }
.footer h3 { color: #fff; font-size: 1.25rem; margin-bottom: 1rem; font-family: var(--font-head); font-weight: 800; }
.footer h4 { color: #fff; margin-bottom: 1rem; font-family: var(--font-head); font-weight: 700; }
.footer-links li { margin-bottom: .5rem; }
.footer-links a  { color: rgba(255,255,255,.7); transition: color .3s; font-size: .95rem; }
.footer-links a:hover { color: var(--primary-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 2rem; text-align: center; }

/* ── RESPONSIVE – TABLET (≤1024px) ── */
@media (max-width: 1024px) {
  .hero h1      { font-size: 2.5rem !important; }
  .section-title { font-size: 2rem !important; }
}

/* ── RESPONSIVE – MOBILE (≤768px) ── */
@media (max-width: 768px) {
  .nav-menu {
    display: none; flex-direction: column;
    position: absolute; top: 68px; right: 16px;
    background: #fff; padding: 1rem 1.5rem;
    border-radius: var(--radius-md); box-shadow: var(--shadow-lg);
    z-index: 999; min-width: 220px;
  }
  .nav-menu.active { display: flex; }
  .mobile-toggle   { display: block; }

  .hero     { padding: 3rem 1rem; }
  .hero h1  { font-size: 1.9rem !important; }
  .hero-subtitle { font-size: 1rem; }
  .hero-cta { flex-direction: column; width: 100%; }

  .btn-primary,
  .btn-secondary,
  .btn-white { width: 100%; text-align: center; }

  .section-title { font-size: 1.6rem !important; }
  h3 { font-size: 1.2rem !important; }

  .games-grid,
  .trust-grid,
  .benefit-grid,
  .promo-grid,
  .security-grid,
  .app-feature-grid { grid-template-columns: 1fr; }

  .card  { padding: 1.5rem; }

  .faq-question { padding: 1.2rem 1.5rem; font-size: .95rem; }
  .faq-answer   { padding: 0 1.5rem; }
  .faq-item.active .faq-answer { padding: 0 1.5rem 1.25rem; }

  .stat-strip   { grid-template-columns: repeat(2, 1fr); }

  .vip-table      { font-size: .8rem; }
  .vip-table th,
  .vip-table td   { padding: .7rem .75rem; }

  .req-table      { font-size: .8rem; }
  .req-table th,
  .req-table td   { padding: .6rem .75rem; }

  .step-item { flex-direction: row; }
}

/* ── RESPONSIVE – SMALL MOBILE (≤480px) ── */
@media (max-width: 480px) {
  .hero h1   { font-size: 1.6rem !important; }
  .stat-strip { grid-template-columns: 1fr; }
}

/* ── ACCESSIBILITY – REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ── FOCUS STATES ── */
a:focus,
button:focus { outline: 2px solid var(--primary); outline-offset: 2px; }

/* ── TEXT SELECTION ── */
::selection        { background: var(--primary); color: #fff; }
::-moz-selection   { background: var(--primary); color: #fff; }

/* ── CUSTOM SCROLLBAR (Webkit) ── */
::-webkit-scrollbar         { width: 8px; }
::-webkit-scrollbar-track   { background: var(--light-gray); }
::-webkit-scrollbar-thumb   { background: var(--primary); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary-dark); }

/* ── PRINT STYLES ── */
@media print {
  .header, .mobile-toggle, .hero-cta,
  .cta-banner, .footer, .btn-primary,
  .btn-secondary, .btn-white { display: none; }
  body { font-size: 12pt; color: #000; }
  a    { color: #000; text-decoration: underline; }
  h1, h2, h3 { page-break-after: avoid; }
}

/* ── UTILITY CLASSES ── */
.text-center { text-align: center; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

/* ============================================================
   END OF WOLFJL STYLESHEET
   ============================================================ */
