/* ============================================================
   HellSpin Casino Canada — styles.css
   Mobile-first, fully responsive
   ============================================================ */

/* ---------- CSS Variables ---------- */
:root {
  --color-bg:         #0d0619;
  --color-bg-2:       #1a0a2e;
  --color-bg-3:       #240f3e;
  --color-surface:    #2a1248;
  --color-surface-2:  #341660;
  --color-primary:    #ff3c3c;
  --color-primary-dk: #cc1f1f;
  --color-accent:     #b388ff;
  --color-accent-2:   #7c4dff;
  --color-gold:       #ffd740;
  --color-text:       #e8e0f0;
  --color-text-muted: #a090c0;
  --color-border:     #3d1f70;
  --color-white:      #ffffff;
  --font-main:        'Segoe UI', Arial, sans-serif;
  --radius:           10px;
  --radius-lg:        16px;
  --shadow:           0 4px 24px rgba(0,0,0,0.45);
  --shadow-glow:      0 0 24px rgba(255,60,60,0.25);
  --transition:       0.2s ease;
  --max-width:        1280px;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--color-accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--color-gold); }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

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

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
  transition: all var(--transition);
  white-space: nowrap;
  letter-spacing: 0.3px;
}
.btn--primary {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}
.btn--primary:hover { background: var(--color-primary-dk); border-color: var(--color-primary-dk); color: #fff; }

.btn--accent {
  background: linear-gradient(135deg, var(--color-primary) 0%, #ff6b35 100%);
  color: #fff;
  border-color: var(--color-primary);
  box-shadow: 0 4px 20px rgba(255,60,60,0.4);
}
.btn--accent:hover {
  background: linear-gradient(135deg, #ff5050 0%, #ff8c55 100%);
  box-shadow: 0 6px 28px rgba(255,60,60,0.6);
  transform: translateY(-1px);
  color: #fff;
}
.btn--outline {
  background: transparent;
  color: var(--color-accent);
  border-color: var(--color-accent);
}
.btn--outline:hover { background: var(--color-accent); color: var(--color-bg); }

.btn--white {
  background: #fff;
  color: var(--color-primary);
  border-color: #fff;
  font-weight: 800;
}
.btn--white:hover { background: var(--color-gold); border-color: var(--color-gold); color: var(--color-bg); }

.btn--lg  { padding: 14px 32px; font-size: 16px; }
.btn--xl  { padding: 18px 44px; font-size: 18px; border-radius: 12px; }
.btn--full { width: 100%; }

/* ---------- BONUS BANNER TOP ---------- */
.bonus-banner-top {
  background: linear-gradient(90deg, #1a0a2e 0%, #3d0d0d 50%, #1a0a2e 100%);
  border-bottom: 2px solid var(--color-primary);
  padding: 10px 16px;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.bonus-banner-top__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  text-align: center;
}
.bonus-banner-top__text {
  font-size: 14px;
  color: var(--color-text);
}
.bonus-banner-top__text strong { color: var(--color-gold); }
.bonus-banner-top .btn { padding: 8px 20px; font-size: 13px; }

/* ---------- SITE HEADER ---------- */
.site-header {
  background: var(--color-bg-2);
  border-bottom: 1px solid var(--color-border);
  padding: 12px 0;
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.logo { display: flex; align-items: center; text-decoration: none; order: 1; }
.logo__svg { width: 180px; height: 52px; }
.logo__svg--small { width: 150px; height: 42px; }

/* Header right-side actions (Play Now + hamburger) */
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  order: 2;
}

/* Hamburger toggle — shown on mobile, hidden on desktop */
.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 11px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  cursor: pointer;
  flex-shrink: 0;
}
.nav-toggle__bar {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.nav-toggle.is-open .nav-toggle__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open .nav-toggle__bar:nth-child(2) { opacity: 0; }
.nav-toggle.is-open .nav-toggle__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile: nav is a full-width collapsible panel, hidden until toggled */
.main-nav {
  order: 3;
  flex-basis: 100%;
  display: none;
}
.main-nav.is-open { display: block; }
.main-nav__list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 8px 0 4px;
}
.main-nav__list li a {
  display: block;
  padding: 12px 12px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text-muted);
  transition: all var(--transition);
}
.main-nav__list li a:hover {
  color: var(--color-accent);
  background: rgba(179,136,255,0.08);
}
.header-cta { padding: 9px 18px; font-size: 14px; }

/* ---------- HERO ---------- */
.hero {
  background: linear-gradient(135deg, #0d0619 0%, #1a0a2e 40%, #2d0a0a 100%);
  padding: 60px 0 50px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,60,60,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
.hero__content, .hero__card { min-width: 0; }
.hero__title {
  font-size: clamp(32px, 6vw, 60px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1.1;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero__subtitle {
  font-size: 18px;
  color: var(--color-accent);
  font-weight: 600;
  margin: 8px 0 16px;
}
.hero__desc {
  color: var(--color-text-muted);
  font-size: 15px;
  margin-bottom: 28px;
  max-width: 520px;
}
.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.hero__badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.badge {
  background: rgba(179,136,255,0.1);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 12px;
  color: var(--color-accent);
  font-weight: 600;
}

/* Welcome Card */
.welcome-card {
  background: linear-gradient(135deg, var(--color-bg-2) 0%, var(--color-surface) 100%);
  border: 2px solid var(--color-primary);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: center;
  box-shadow: var(--shadow-glow), var(--shadow);
  position: relative;
  overflow: hidden;
}
.welcome-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-gold));
}
.welcome-card__label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-text-muted);
  margin-bottom: 8px;
}
.welcome-card__amount {
  font-size: 52px;
  font-weight: 900;
  color: var(--color-gold);
  line-height: 1;
  margin-bottom: 8px;
  text-shadow: 0 0 30px rgba(255,215,64,0.4);
}
.welcome-card__detail {
  font-size: 14px;
  color: var(--color-accent);
  margin-bottom: 8px;
}
.welcome-card__sub {
  font-size: 11px;
  color: var(--color-text-muted);
  margin-bottom: 20px;
}

/* ---------- STRIPE BANNER ---------- */
.stripe-banner {
  background: linear-gradient(90deg, var(--color-primary-dk) 0%, #8b0000 50%, var(--color-primary-dk) 100%);
  padding: 14px 16px;
  border-top: 2px solid var(--color-gold);
  border-bottom: 2px solid var(--color-gold);
}
.stripe-banner__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  text-align: center;
}
.stripe-banner__text { font-size: 14px; color: #fff; }
.stripe-banner__text strong { color: var(--color-gold); }

/* ---------- LAYOUT ---------- */
.main-content { padding: 40px 0 60px; }
.layout-two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  min-width: 0;
}
/* min-width:0 lets grid items shrink below their content's intrinsic
   size — without it the 640px-wide payments table stretches the whole
   two-column layout and forces horizontal page scroll on phones. */
.layout-two-col > *,
.article,
.sidebar { min-width: 0; }

/* ---------- SECTIONS ---------- */
.section {
  margin-bottom: 56px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(61,31,112,0.5);
}
.section:last-child { border-bottom: none; }
.section__title {
  font-size: clamp(22px, 3.5vw, 32px);
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}
.section__title::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 48px; height: 3px;
  background: linear-gradient(90deg, var(--color-primary), transparent);
  border-radius: 2px;
}
.section h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-accent);
  margin: 28px 0 12px;
}
.section p {
  margin-bottom: 16px;
  color: var(--color-text);
  font-size: 15px;
}
.section strong { color: var(--color-gold); }

/* ---------- RATINGS GRID ---------- */
.ratings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(155px, 1fr));
  gap: 16px;
}
.rating-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 20px 16px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}
.rating-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.rating-card__icon { font-size: 28px; margin-bottom: 8px; }
.rating-card__label { font-size: 12px; text-transform: uppercase; letter-spacing: 1px; color: var(--color-text-muted); margin-bottom: 6px; }
.rating-card__score { font-size: 26px; font-weight: 900; color: var(--color-gold); line-height: 1; margin-bottom: 8px; }
.rating-card__score span { font-size: 14px; color: var(--color-text-muted); }
.rating-card p { font-size: 12px; color: var(--color-text-muted); margin: 0; }

/* ---------- BONUS BOXES ---------- */
.bonus-boxes {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
  margin: 20px 0;
}
.bonus-box {
  background: linear-gradient(135deg, var(--color-bg-2) 0%, var(--color-surface) 100%);
  border: 1px solid var(--color-border);
  border-top: 3px solid var(--color-primary);
  border-radius: var(--radius);
  padding: 20px 16px;
  text-align: center;
}
.bonus-box__num {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-text-muted);
  margin-bottom: 8px;
}
.bonus-box__amount {
  font-size: 22px;
  font-weight: 900;
  color: var(--color-gold);
  margin-bottom: 4px;
}
.bonus-box__spins {
  font-size: 14px;
  color: var(--color-accent);
  font-weight: 600;
  margin-bottom: 10px;
}
.bonus-box p { font-size: 12px; color: var(--color-text-muted); margin: 0; }

/* ---------- PROVIDERS GRID ---------- */
.providers-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}
.provider-pill {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-accent);
  transition: all var(--transition);
}
.provider-pill:hover {
  background: var(--color-accent-2);
  color: #fff;
  border-color: var(--color-accent-2);
}

/* ---------- STEPS ---------- */
.steps { display: flex; flex-direction: column; gap: 16px; margin: 20px 0 28px; }
.step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 18px 16px;
  transition: border-color var(--transition);
}
.step:hover { border-color: var(--color-primary); }
.step__num {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 900;
}
.step__content strong { display: block; font-size: 15px; color: var(--color-white); margin-bottom: 4px; }
.step__content p { font-size: 13px; color: var(--color-text-muted); margin: 0; }
.cta-block { text-align: center; margin-top: 24px; }

/* ---------- TABLE ---------- */
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: var(--radius); }
.payments-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  font-size: 13px;
}
.payments-table thead tr {
  background: var(--color-surface-2);
}
.payments-table th {
  padding: 12px 14px;
  text-align: left;
  color: var(--color-accent);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
  border-bottom: 2px solid var(--color-border);
}
.payments-table td {
  padding: 11px 14px;
  border-bottom: 1px solid rgba(61,31,112,0.4);
  color: var(--color-text);
  vertical-align: middle;
}
.payments-table tbody tr:nth-child(even) { background: rgba(42,18,72,0.4); }
.payments-table tbody tr:hover { background: rgba(179,136,255,0.06); }
.table-note {
  font-size: 11px;
  color: var(--color-text-muted);
  margin-top: 10px;
  font-style: italic;
}

/* ---------- PROS / CONS ---------- */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.pros, .cons {
  border-radius: var(--radius);
  padding: 24px 20px;
}
.pros { background: rgba(0,200,100,0.06); border: 1px solid rgba(0,200,100,0.2); }
.cons { background: rgba(255,60,60,0.06); border: 1px solid rgba(255,60,60,0.2); }
.pros h3, .cons h3 { margin-top: 0; margin-bottom: 14px; font-size: 16px; }
.pros h3 { color: #4caf82; }
.cons h3 { color: var(--color-primary); }
.pros ul li, .cons ul li {
  padding: 6px 0;
  font-size: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding-left: 16px;
  position: relative;
  color: var(--color-text);
}
.pros ul li:last-child, .cons ul li:last-child { border-bottom: none; }
.pros ul li::before { content: '✓ '; color: #4caf82; position: absolute; left: 0; font-weight: 700; }
.cons ul li::before { content: '✗ '; color: var(--color-primary); position: absolute; left: 0; font-weight: 700; }

/* ---------- FAQ ---------- */
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--color-surface);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 16px 20px;
  text-align: left;
  font-size: 15px;
  font-weight: 600;
  color: var(--color-white);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: background var(--transition);
}
.faq-question:hover { background: rgba(179,136,255,0.06); }
.faq-icon {
  flex-shrink: 0;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 1;
  transition: transform var(--transition);
}
.faq-answer {
  display: none;
  padding: 0 20px 16px;
  border-top: 1px solid var(--color-border);
}
.faq-answer.open { display: block; }
.faq-answer p {
  font-size: 14px;
  color: var(--color-text-muted);
  margin: 12px 0 0;
}

/* ---------- CTA SECTION ---------- */
.section--cta {
  background: linear-gradient(135deg, var(--color-surface) 0%, var(--color-bg-2) 100%);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  border: 1px solid var(--color-border);
}
.cta-group { margin-top: 24px; }
.cta-disclaimer {
  font-size: 11px;
  color: var(--color-text-muted);
  margin-top: 12px;
  line-height: 1.5;
}

/* ---------- SIDEBAR ---------- */
.sidebar { display: flex; flex-direction: column; gap: 20px; }
.sidebar__card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 20px;
}
.sidebar__card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--color-border);
}
.sidebar__card--bonus {
  background: linear-gradient(135deg, #2d0a0a 0%, var(--color-surface) 100%);
  border-top: 3px solid var(--color-primary);
  text-align: center;
}
.sidebar__amount {
  font-size: 36px;
  font-weight: 900;
  color: var(--color-gold);
  line-height: 1;
  margin-bottom: 4px;
}
.sidebar__sub {
  font-size: 14px;
  color: var(--color-accent);
  font-weight: 600;
  margin-bottom: 10px;
}
.sidebar__card--bonus p {
  font-size: 12px;
  color: var(--color-text-muted);
  margin-bottom: 16px;
}
.quick-facts li {
  display: flex;
  justify-content: space-between;
  padding: 7px 0;
  border-bottom: 1px solid rgba(61,31,112,0.4);
  font-size: 13px;
  color: var(--color-text-muted);
}
.quick-facts li:last-child { border-bottom: none; }
.quick-facts li strong { color: var(--color-text); }
.top-games li, .payment-list li {
  padding: 7px 0;
  border-bottom: 1px solid rgba(61,31,112,0.3);
  font-size: 13px;
  color: var(--color-text);
}
.top-games li:last-child, .payment-list li:last-child { border-bottom: none; }
.sidebar__card--safety {}
.safety-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  font-size: 13px;
  color: var(--color-text);
  border-bottom: 1px solid rgba(61,31,112,0.3);
}
.safety-item:last-child { border-bottom: none; }
.safety-tick { font-size: 14px; }

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--color-bg-2);
  border-top: 2px solid var(--color-border);
  padding: 48px 0 24px;
}
.footer__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 32px;
}
.footer__brand .footer__tagline {
  font-size: 13px;
  color: var(--color-text-muted);
  margin-top: 10px;
}
.footer__links h3, .footer__responsible h3 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-accent);
  margin-bottom: 12px;
}
.footer__links ul li a {
  font-size: 13px;
  color: var(--color-text-muted);
  display: block;
  padding: 4px 0;
}
.footer__links ul li a:hover { color: var(--color-white); }
.footer__responsible p {
  font-size: 13px;
  color: var(--color-text-muted);
  margin-bottom: 10px;
}
.footer__responsible ul li {
  font-size: 13px;
  color: var(--color-text-muted);
  padding: 3px 0;
}
.footer__responsible ul li a { color: var(--color-accent); }
.age-badge {
  display: inline-block;
  background: var(--color-primary);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  padding: 4px 10px;
  border-radius: 6px;
  margin-top: 10px;
  letter-spacing: 1px;
}
.footer__bottom {
  border-top: 1px solid var(--color-border);
  padding-top: 20px;
}
.footer__disclaimer {
  font-size: 11px;
  color: var(--color-text-muted);
  line-height: 1.6;
  text-align: center;
}

/* ============================================================
   RESPONSIVE — Small phones (≤600px) polish
   ============================================================ */
@media (max-width: 600px) {
  .container { padding: 0 14px; }
  .hero { padding: 36px 0 32px; }
  .section { margin-bottom: 40px; padding-bottom: 28px; }
  .section--cta { padding: 28px 18px; }
  .welcome-card { padding: 24px 18px; }
  .welcome-card__amount { font-size: 42px; }
  .bonus-banner-top__text, .stripe-banner__text { font-size: 13px; }
  .logo__svg { width: 142px; height: 41px; }
  .header-cta { padding: 8px 14px; font-size: 13px; }
}

/* ============================================================
   RESPONSIVE — Header nav becomes horizontal (≥768px)
   ============================================================ */
@media (min-width: 768px) {
  .nav-toggle { display: none; }
  .main-nav {
    order: 2;
    flex-basis: auto;
    display: block;
  }
  .header-actions { order: 3; }
  .main-nav__list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 4px;
    padding: 0;
  }
  .main-nav__list li a {
    display: inline-block;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 13px;
  }
}

/* ============================================================
   RESPONSIVE — Tablet (≥640px)
   ============================================================ */
@media (min-width: 640px) {
  .hero__inner { grid-template-columns: 1fr 1fr; }
  .pros-cons { grid-template-columns: 1fr 1fr; }
  .footer__top { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   RESPONSIVE — Desktop (≥960px)
   ============================================================ */
@media (min-width: 960px) {
  .layout-two-col { grid-template-columns: 1fr 340px; }
  .sidebar {
    position: sticky;
    top: 60px;
    align-self: start;
    max-height: calc(100vh - 80px);
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--color-border) transparent;
  }
  .footer__top { grid-template-columns: 2fr 1fr 1.5fr; }
}

@media (min-width: 1024px) {
  .container { padding: 0 32px; }
  .main-nav__list li a { font-size: 14px; padding: 7px 12px; }
}

/* ============================================================
   RESPONSIVE — Wide (≥1200px)
   ============================================================ */
@media (min-width: 1200px) {
  .hero { padding: 80px 0 70px; }
  .layout-two-col { grid-template-columns: 1fr 360px; gap: 56px; }
}

/* ---------- Scrollbar for sidebar ---------- */
.sidebar::-webkit-scrollbar { width: 4px; }
.sidebar::-webkit-scrollbar-thumb { background: var(--color-border); border-radius: 2px; }

/* ---------- Accessibility ---------- */
:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}
.btn:focus-visible { outline: 2px solid var(--color-gold); outline-offset: 3px; }