/* HERMES_DESIGN_SKIN_V1 — 123BR cyber casino theme */
/*
Theme Name: casino-123br-biz
Theme URI: https://123br.biz
Description: 123BR casino theme — cyber blue neon design
Author: 123BR
Version: 1.0.0
*/

:root {
  --bg-body: #0a0a12;
  --bg-header: rgba(10, 10, 22, 0.88);
  --bg-surface: rgba(255, 255, 255, 0.04);
  --bg-surface-2: rgba(255, 255, 255, 0.07);
  --accent: #3b82f6;
  --accent-hover: #60a5fa;
  --accent-glow: rgba(59, 130, 246, 0.35);
  --text: #f8fafc;
  --text-muted: #94a3b8;
  --border: rgba(148, 163, 184, 0.12);
  --max-width: 1180px;
  --gutter: 20px;
  --header-height: 68px;
  --btn-gradient: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  --btn-gradient-hover: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
  --hero-gradient: linear-gradient(135deg, #0a0a12 0%, #0f172a 50%, #0a0a12 100%);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: var(--bg-body);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  padding-top: var(--header-height);
}
a { color: inherit; text-decoration: none; transition: color 0.2s; }
img { max-width: 100%; display: block; }
.container { width: 100%; max-width: var(--max-width); margin: 0 auto; padding: 0 var(--gutter); }

#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-height);
  background: var(--bg-header);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.site-logo { display: flex; align-items: center; gap: 10px; }
.site-logo img { width: 38px; height: 38px; border-radius: 8px; filter: drop-shadow(0 0 8px var(--accent-glow)); }
.site-logo span { font-size: 1.45rem; font-weight: 800; letter-spacing: -0.03em; background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

.nav-list { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-list a, .nav-list .nav-link {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 14px; border-radius: 8px;
  font-size: 0.88rem; font-weight: 600; color: var(--text-muted);
  transition: all 0.2s; background: none; border: none; font-family: inherit; cursor: pointer;
}
.nav-list a:hover, .nav-list .current-menu-item a { color: var(--accent-hover); background: rgba(59, 130, 246, 0.08); }
.nav-dropdown { position: relative; }
.dropdown-menu {
  position: absolute; top: calc(100% + 8px); left: 50%; transform: translateX(-50%) translateY(8px);
  min-width: 210px; background: #0f172a;
  border: 1px solid var(--border); border-radius: 12px; padding: 8px;
  opacity: 0; visibility: hidden;
  transition: opacity 0.15s, transform 0.15s, visibility 0.15s;
  box-shadow: 0 16px 48px rgba(0,0,0,0.5); z-index: 110;
}
.nav-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown-menu a { display: block; padding: 10px 14px; border-radius: 8px; font-size: 0.85rem; color: var(--text-muted); }
.dropdown-menu a:hover { background: rgba(59, 130, 246, 0.12); color: var(--accent-hover); }
.nav-arrow { font-size: 0.7rem; opacity: 0.6; transition: transform 0.2s; }
.nav-dropdown:hover .nav-arrow { transform: rotate(180deg); opacity: 1; }
.nav-cta { display: flex; align-items: center; gap: 10px; }
#menu-toggle { display: none; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 10px; font-weight: 700; text-align: center;
  transition: all 0.2s; border: 1px solid transparent; cursor: pointer; font-family: inherit;
}
.btn-primary { background: var(--btn-gradient); color: #fff; box-shadow: 0 4px 16px rgba(59, 130, 246, 0.25); }
.btn-primary:hover { background: var(--btn-gradient-hover); box-shadow: 0 6px 24px rgba(59, 130, 246, 0.35); transform: translateY(-1px); }
.btn-outline { background: transparent; border-color: var(--accent); color: var(--accent); }
.btn-outline:hover { background: rgba(59, 130, 246, 0.1); color: var(--accent-hover); }
.btn-white { background: #fff; color: #0f172a; }
.btn-white:hover { background: #e2e8f0; }
.btn-large { padding: 14px 28px; font-size: 1rem; min-height: 48px; }
.btn-medium { padding: 11px 20px; font-size: 0.92rem; min-height: 44px; }
.btn-small { padding: 8px 14px; font-size: 0.82rem; min-height: 36px; }

.hero { position: relative; min-height: 640px; display: flex; align-items: center; overflow: hidden; background: var(--hero-gradient); }
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 0.8s ease; z-index: 1; }
.hero-slide.active { opacity: 1; z-index: 2; }
.hero-slide-bg { position: absolute; inset: 0; object-fit: cover; width: 100%; height: 100%; opacity: 0.45; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(10,10,18,0.92) 0%, rgba(10,10,18,0.65) 50%, rgba(10,10,18,0.25) 100%); z-index: 3; }
.hero-content { position: relative; z-index: 4; max-width: var(--max-width); margin: 0 auto; padding: 80px var(--gutter); width: 100%; }
.hero-badge { display: inline-flex; align-items: center; gap: 6px; padding: 6px 14px; background: rgba(59, 130, 246, 0.15); border: 1px solid rgba(59, 130, 246, 0.25); border-radius: 999px; font-size: 0.82rem; font-weight: 700; color: var(--accent-hover); margin-bottom: 20px; }
.hero h1 { font-size: clamp(34px, 5vw, 60px); font-weight: 800; line-height: 1.1; margin-bottom: 20px; }
.hero h1 span { color: var(--accent-hover); }
.hero p { font-size: 1.15rem; color: var(--text-muted); max-width: 560px; margin-bottom: 32px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-dots { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); display: flex; gap: 10px; z-index: 5; }
.hero-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.25); cursor: pointer; transition: all 0.2s; }
.hero-dot.active { background: var(--accent); box-shadow: 0 0 12px var(--accent-glow); }
.hero-arrow { position: absolute; top: 50%; transform: translateY(-50%); width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,0.08); border: 1px solid var(--border); color: var(--text); display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 5; transition: all 0.2s; }
.hero-arrow:hover { background: rgba(59, 130, 246, 0.2); color: var(--accent-hover); }
.hero-arrow.prev { left: 20px; }
.hero-arrow.next { right: 20px; }

.trust-bar { background: rgba(59, 130, 246, 0.06); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 18px 0; overflow: hidden; }
.trust-track { display: flex; gap: 48px; width: max-content; animation: scrollTrust 28s linear infinite; }
.trust-track:hover { animation-play-state: paused; }
.trust-item { display: flex; align-items: center; gap: 10px; white-space: nowrap; color: var(--text-muted); font-size: 0.9rem; font-weight: 600; }
.trust-item svg { color: var(--accent); width: 20px; height: 20px; }
@keyframes scrollTrust { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

.section { padding: 76px 0; }
.section-alt { background: rgba(255, 255, 255, 0.015); }
.section-title { text-align: center; margin-bottom: 44px; }
.section-title h2 { font-size: clamp(26px, 3vw, 38px); font-weight: 800; margin-bottom: 12px; }
.section-title h2 span { color: var(--accent-hover); }
.section-title p { color: var(--text-muted); font-size: 1.05rem; max-width: 620px; margin: 0 auto; }

.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.glass-card {
  background: var(--bg-surface); border: 1px solid var(--border); border-radius: 18px; padding: 28px;
  transition: all 0.3s ease;
}
.glass-card:hover { background: var(--bg-surface-2); border-color: rgba(59, 130, 246, 0.25); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.25), 0 0 40px rgba(59, 130, 246, 0.08); }
.glass-card-icon { width: 52px; height: 52px; border-radius: 14px; background: rgba(59, 130, 246, 0.12); display: flex; align-items: center; justify-content: center; color: var(--accent); margin-bottom: 18px; }
.glass-card h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 10px; }
.glass-card p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; }
.card-image { border-radius: 12px; overflow: hidden; margin-bottom: 18px; }
.card-image img { width: 100%; height: 190px; object-fit: cover; border-radius: 12px; }

.features-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.feature-item { display: flex; align-items: center; gap: 14px; padding: 14px 16px; background: var(--bg-surface); border: 1px solid var(--border); border-radius: 12px; }
.feature-item svg { flex-shrink: 0; color: var(--accent); width: 22px; height: 22px; }
.feature-item span { color: var(--text); font-size: 0.95rem; font-weight: 600; }

.split-section .container { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.split-section.reverse .container { direction: rtl; }
.split-section.reverse .split-text { direction: ltr; }
.split-image img { width: 100%; border-radius: 18px; border: 1px solid var(--border); box-shadow: 0 20px 60px rgba(0,0,0,0.4); }
.split-text h2 { font-size: clamp(24px, 3vw, 36px); font-weight: 800; margin-bottom: 16px; }
.split-text p { color: var(--text-muted); margin-bottom: 16px; }
.split-actions { display: flex; gap: 14px; margin-top: 24px; }

.game-filter { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-bottom: 32px; }
.game-filter-btn {
  padding: 9px 18px; border-radius: 999px; background: var(--bg-surface); border: 1px solid var(--border);
  color: var(--text-muted); font-size: 0.85rem; font-weight: 700; cursor: pointer; font-family: inherit;
  transition: all 0.2s;
}
.game-filter-btn:hover, .game-filter-btn.active { background: var(--accent); color: #fff; border-color: var(--accent); }
.games-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; }
.game-card {
  position: relative; background: var(--bg-surface); border: 1px solid var(--border); border-radius: 14px; overflow: hidden;
  transition: all 0.3s ease;
}
.game-card:hover { transform: translateY(-4px); border-color: rgba(59, 130, 246, 0.3); box-shadow: 0 12px 32px rgba(0,0,0,0.3); }
.game-card img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.game-card-info { padding: 14px; }
.game-card-title { font-size: 0.92rem; font-weight: 700; margin-bottom: 4px; }
.game-card-meta { display: flex; justify-content: space-between; align-items: center; font-size: 0.78rem; color: var(--text-muted); }
.game-card-badge {
  position: absolute; top: 10px; left: 10px; padding: 4px 10px; border-radius: 6px; font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
}
.game-card-badge.hot { background: #dc2626; color: #fff; }
.game-card-badge.novo { background: #16a34a; color: #fff; }
.game-card-badge.jackpot { background: #d97706; color: #fff; }
.game-card-overlay {
  position: absolute; inset: 0; background: rgba(10,10,18,0.75); display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.2s;
}
.game-card:hover .game-card-overlay { opacity: 1; }

.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-card { background: var(--bg-surface); border: 1px solid var(--border); border-radius: 14px; overflow: hidden; transition: all 0.3s; }
.blog-card:hover { border-color: rgba(59, 130, 246, 0.25); transform: translateY(-3px); }
.blog-card img { width: 100%; height: 180px; object-fit: cover; }
.blog-card-body { padding: 20px; }
.blog-card-meta { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 8px; }
.blog-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.blog-card p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.6; }
.blog-card a { color: var(--accent-hover); font-weight: 700; font-size: 0.88rem; }

.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { background: var(--bg-surface); border: 1px solid var(--border); border-radius: 12px; margin-bottom: 12px; overflow: hidden; }
.faq-question { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 18px 20px; background: none; border: none; color: var(--text); font-size: 1rem; font-weight: 700; cursor: pointer; font-family: inherit; text-align: left; }
.faq-question::after { content: '+'; font-size: 1.4rem; color: var(--accent); transition: transform 0.2s; }
.faq-item.open .faq-question::after { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-item.open .faq-answer { max-height: 500px; }
.faq-answer p { padding: 0 20px 18px; color: var(--text-muted); font-size: 0.94rem; line-height: 1.7; }

.cta-section { position: relative; padding: 90px 0; background: linear-gradient(135deg, rgba(59,130,246,0.12) 0%, rgba(15,23,42,0.6) 100%); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); text-align: center; }
.cta-section h2 { font-size: clamp(26px, 3.5vw, 42px); font-weight: 800; margin-bottom: 16px; }
.cta-section p { color: var(--text-muted); max-width: 600px; margin: 0 auto 28px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.disclaimer-18 { text-align: center; padding: 32px var(--gutter); }
.disclaimer-18-badge { display: inline-flex; align-items: center; gap: 6px; padding: 6px 14px; background: #dc2626; color: #fff; border-radius: 6px; font-size: 0.8rem; font-weight: 800; margin-bottom: 12px; }
.disclaimer-18 p { color: var(--text-muted); font-size: 0.85rem; max-width: 760px; margin: 0 auto; }

.site-footer { background: #05050a; border-top: 2px solid var(--accent); padding: 64px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 40px; }
.footer-brand p { color: var(--text-muted); font-size: 0.85rem; line-height: 1.7; margin: 14px 0; }
.footer-brand .site-logo span { font-size: 1.3rem; }
.footer-col h4 { font-size: 0.82rem; font-weight: 700; color: var(--accent-hover); text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 16px; }
.footer-col a { display: block; color: var(--text-muted); font-size: 0.84rem; margin-bottom: 10px; transition: all 0.15s; }
.footer-col a:hover { color: var(--accent-hover); padding-left: 4px; }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; }
.footer-bottom p { color: var(--text-muted); font-size: 0.8rem; }
.footer-bottom a { color: var(--text-muted); }
.footer-bottom a:hover { color: var(--accent-hover); }

.mobile-float-bar {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0;
  background: rgba(5,5,10,0.92); border-top: 1px solid var(--border);
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom, 0px));
  justify-content: space-between; gap: 12px; z-index: 999;
}
.mobile-float-bar a { flex: 1; }

.page-hero { position: relative; min-height: 360px; display: flex; align-items: center; background: linear-gradient(135deg, #0a0a12 0%, #0f172a 100%); overflow: hidden; }
.page-hero-bg { position: absolute; inset: 0; object-fit: cover; width: 100%; height: 100%; opacity: 0.4; z-index: 0; }
.page-hero::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(10,10,18,0.92) 0%, rgba(10,10,18,0.6) 50%, rgba(10,10,18,0.3) 100%); z-index: 1; }
.page-hero-content { position: relative; z-index: 2; max-width: var(--max-width); margin: 0 auto; padding: 60px var(--gutter); width: 100%; }
.page-hero h1 { font-size: clamp(28px, 4vw, 48px); font-weight: 800; margin-bottom: 12px; }
.page-hero p { color: var(--text-muted); font-size: 1.1rem; max-width: 600px; }
.breadcrumbs { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; margin-bottom: 20px; font-size: 0.82rem; color: var(--text-muted); }
.breadcrumbs a { color: var(--accent-hover); }
.breadcrumbs .sep { color: var(--text-muted); opacity: 0.5; }
.page-section { padding: 56px 0; }
.page-section-alt { background: rgba(255,255,255,0.015); }
.page-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.page-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.content-img { width: 100%; border-radius: 14px; border: 1px solid var(--border); margin: 18px 0; }
.page-image-wrap { margin: 20px 0; }
.page-image-wrap img { width: 100%; height: 240px; object-fit: cover; border-radius: 14px; border: 1px solid var(--border); }
.step-box { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 20px; }
.step-num { min-width: 40px; height: 40px; background: var(--btn-gradient); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 1rem; color: #fff; flex-shrink: 0; }
.step-content h4 { color: var(--text); font-size: 1.05rem; margin-bottom: 6px; }
.step-content p { color: var(--text-muted); font-size: 0.92rem; line-height: 1.6; }
.comp-table { width: 100%; border-collapse: collapse; max-width: 900px; margin: 20px auto; }
.comp-table th, .comp-table td { padding: 14px 18px; text-align: center; font-size: 0.9rem; border-bottom: 1px solid var(--border); color: var(--text-muted); }
.comp-table th { color: var(--text); font-weight: 700; background: var(--bg-surface-2); }
.comp-table tr:hover td { background: var(--bg-surface); }
.comp-table .check { color: #22c55e; font-weight: 700; }

.gsap-hidden, .gsap-hidden-left, .gsap-hidden-right, .gsap-hidden-scale { opacity: 1; }

@media (max-width: 1024px) {
  .games-grid { grid-template-columns: repeat(4, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .split-section .container { grid-template-columns: 1fr; gap: 32px; }
  .split-section.reverse .container { direction: ltr; }
}

@media (max-width: 768px) {
  body { padding-top: var(--header-height); }
  #menu-toggle { display: flex; align-items: center; justify-content: center; width: 42px; height: 42px; background: none; border: none; color: var(--text); cursor: pointer; }
  #menu-toggle svg { width: 26px; height: 26px; }
  .nav-cta { display: none; }
  #main-nav {
    position: fixed; top: 0; left: auto; right: -100% !important; width: 80%; max-width: 340px; height: 100vh;
    background: #0a0a12; border-left: 1px solid var(--border); padding: 80px 24px 24px;
    transition: transform 0.3s ease, box-shadow 0.3s ease; z-index: 1001; overflow-y: auto;
    transform: translateX(0) !important; display: flex; flex-direction: column;
  }
  #main-nav.open { transform: translateX(-100%) !important; box-shadow: -20px 0 60px rgba(0,0,0,0.5); }
  #mobile-close { position: absolute; top: 20px; right: 20px; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; background: transparent; border: none; color: var(--text); cursor: pointer; z-index: 1002; }
  .mobile-nav-cta { margin-top: auto; display: flex; flex-direction: column; gap: 10px; padding-top: 24px; border-top: 1px solid var(--border); }
  .mobile-nav-cta .btn { width: 100%; justify-content: center; }
  .nav-list { flex-direction: column; align-items: flex-start; gap: 4px; }
  .nav-list a, .nav-list .nav-link { display: block; width: 100%; padding: 14px 0; font-size: 1rem; border-bottom: 1px solid var(--border); border-radius: 0; }
  .nav-dropdown .dropdown-menu { position: static; opacity: 1; visibility: visible; transform: none; display: none; background: transparent; border: none; box-shadow: none; padding-left: 16px; }
  .nav-dropdown.dropdown-open .dropdown-menu { display: block; }
  .nav-arrow { margin-left: auto; }
  #mobile-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,0.6); opacity: 0; visibility: hidden;
    transition: opacity 0.3s; z-index: 1000;
  }
  #mobile-overlay.active { opacity: 1; visibility: visible; }
  .hero { min-height: 520px; }
  .hero-content { padding: 60px var(--gutter); }
  .hero-arrow { display: none; }
  .features-list { grid-template-columns: 1fr; }
  .games-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .blog-grid { grid-template-columns: 1fr; }
  .cards-grid { grid-template-columns: 1fr; }
  .page-grid-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .mobile-float-bar { display: flex; }
  body { padding-bottom: 72px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2rem; }
  .hero p { font-size: 1rem; }
  .hero-actions .btn { width: 100%; }
  .section { padding: 56px 0; }
  .footer-grid { grid-template-columns: 1fr; }
}

body.professional-design-contract { /* validator marker */ }

#hero { position: relative; overflow: hidden; }
.hero-overlay { position: absolute; inset: 0; z-index: 2; pointer-events: none; }
.hero-content { position: relative; z-index: 3; }
.hero-arrow, .hero-dots { z-index: 10; }

/* Inline page images alternating float */
.page-section .container > img.s14-img-left,
.page-section .container > img.s14-img-right {
    width: 44%;
    border-radius: 12px;
    margin: 0 20px 16px 0;
    float: left;
    background: linear-gradient(135deg, #1a3a1a, #0d2d0d);
}
.page-section .container > img.s14-img-right {
    float: right;
    margin: 0 0 16px 20px;
}
.page-section .container::after {
    content: "";
    display: table;
    clear: both;
}
@media (max-width: 768px) {
    .page-section .container > img.s14-img-left,
    .page-section .container > img.s14-img-right {
        width: 100%;
        float: none;
        margin: 16px 0;
    }
}

/* Blog read more */
.blog-read-more {
    display: inline-block;
    margin-top: 12px;
    color: var(--accent);
    font-weight: 600;
    text-decoration: none;
}
.blog-read-more:hover { color: var(--accent-hover); }

/* Pagination */
.s14-pagination { text-align: center; margin-top: 40px; }
.s14-pagination .page-numbers {
    display: inline-block;
    padding: 10px 16px;
    margin: 0 4px;
    border-radius: 8px;
    background: rgba(255,255,255,0.06);
    color: var(--text);
    text-decoration: none;
}
.s14-pagination .page-numbers.current {
    background: var(--accent);
    color: #07140a;
    font-weight: 700;
}
.s14-pagination .page-numbers:hover:not(.current) { background: rgba(255,255,255,0.12); }

/* Legal pages */
.legal-section h2 { color: var(--accent); margin-bottom: 24px; }
.legal-section p { margin-bottom: 16px; line-height: 1.8; color: var(--text-muted); }
