/* =============================================
   GLOBAL POKER — Main Stylesheet
   Brand: Dark Green #0f3d1e | Gold #c8a951
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Open+Sans:wght@400;500;600&display=swap');

/* ---- CSS Variables ---- */
:root {
  --green-dark:   #0a2112;
  --green-main:   #0f3d1e;
  --green-mid:    #1a5c2e;
  --green-light:  #2a8048;
  --gold:         #c8a951;
  --gold-light:   #e8c96a;
  --gold-dark:    #9a7d34;
  --white:        #ffffff;
  --off-white:    #f0ede4;
  --text-light:   #d4cfc0;
  --text-muted:   #8a8a7a;
  --card-bg:      #122b1a;
  --card-border:  #1e4829;
  --overlay:      rgba(10,33,18,0.85);
  --shadow:       0 8px 32px rgba(0,0,0,0.45);
  --radius:       12px;
  --radius-sm:    6px;
  --radius-lg:    20px;
  --transition:   0.3s ease;
  --font-head:    'Montserrat', sans-serif;
  --font-body:    'Open Sans', sans-serif;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body {
  font-family: var(--font-body);
  background: var(--green-dark);
  color: var(--text-light);
  line-height: 1.7;
  overflow-x: hidden;
  max-width: 100vw;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-light); }
ul { list-style: none; }

/* ---- Typography ---- */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-head);
  color: var(--white);
  line-height: 1.25;
  font-weight: 700;
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 900; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }
p  { margin-bottom: 1rem; }

.gold-text    { color: var(--gold); }
.green-text   { color: var(--green-light); }
.muted        { color: var(--text-muted); font-size: 0.9rem; }

/* ---- Layout ---- */
.container    { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.container-sm { max-width: 900px;  margin: 0 auto; padding: 0 20px; }
.section      { padding: 80px 0; }
.section-sm   { padding: 50px 0; }
.section-title {
  text-align: center;
  margin-bottom: 50px;
}
.section-title h2 { margin-bottom: 12px; }
.section-title p  { color: var(--text-muted); font-size: 1.1rem; max-width: 650px; margin: 0 auto; }
.divider {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--green-light));
  margin: 14px auto 0;
  border-radius: 2px;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--green-dark);
  box-shadow: 0 4px 16px rgba(200,169,81,0.35);
}
.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200,169,81,0.5);
}
.btn-outline {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--green-dark);
  transform: translateY(-2px);
}
.btn-green {
  background: linear-gradient(135deg, var(--green-light), var(--green-mid));
  color: var(--white);
  box-shadow: 0 4px 16px rgba(42,128,72,0.35);
}
.btn-green:hover {
  background: linear-gradient(135deg, #33a05a, var(--green-light));
  transform: translateY(-2px);
}
.btn-sm { padding: 9px 20px; font-size: 0.85rem; }
.btn-lg { padding: 17px 40px; font-size: 1.05rem; }

/* ============================================
   HEADER / NAV
   ============================================ */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10,33,18,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--card-border);
  transition: background var(--transition), box-shadow var(--transition);
}
#site-header.scrolled {
  background: rgba(10,33,18,0.99);
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.logo-wrap img {
  height: 48px;
  width: auto;
}
.logo-text {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.3rem;
  color: var(--white);
  line-height: 1.1;
}
.logo-text span { color: var(--gold); display: block; font-size: 0.65rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; }

/* Tracker link — мобильный хедер */
.header-tracker {
  display: none;
}

/* Desktop nav */
.main-nav { display: flex; align-items: center; gap: 6px; }
.main-nav a {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--text-light);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all var(--transition);
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--gold);
  background: rgba(200,169,81,0.1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: var(--green-dark);
  border-bottom: 1px solid var(--card-border);
  padding: 20px;
  z-index: 999;
  flex-direction: column;
  gap: 8px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-light);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border-left: 3px solid transparent;
  transition: all var(--transition);
}
.mobile-menu a:hover { color: var(--gold); border-left-color: var(--gold); background: rgba(200,169,81,0.07); }
.mobile-menu .mobile-tracker {
  margin-top: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--card-border);
}
.mobile-menu .mobile-tracker a {
  display: block;
  text-align: center;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--green-dark);
  font-weight: 800;
  border-left: none;
  border-radius: var(--radius-sm);
}

/* Page padding for fixed header */
.page-top { padding-top: 72px; }

/* ============================================
   FOOTER
   ============================================ */
#site-footer {
  background: var(--green-dark);
  border-top: 1px solid var(--card-border);
  padding: 60px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand .logo-wrap { margin-bottom: 16px; }
.footer-brand p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; max-width: 280px; }
.footer-col h4 {
  font-family: var(--font-head);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid var(--card-border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p { font-size: 0.82rem; color: var(--text-muted); }
.footer-badges { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.badge-item {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  padding: 6px 12px;
  font-size: 0.75rem;
  color: var(--text-muted);
  font-family: var(--font-head);
  font-weight: 600;
  letter-spacing: 0.5px;
}
.age-badge {
  background: var(--gold);
  color: var(--green-dark);
  font-weight: 800;
  border-color: var(--gold);
}
.footer-legal {
  margin-top: 20px;
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.6;
  border-top: 1px solid var(--card-border);
  padding-top: 20px;
}

/* ============================================
   CARDS
   ============================================ */
.card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 28px;
  transition: all var(--transition);
}
.card:hover {
  border-color: var(--gold-dark);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}
.card-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
  display: block;
}
.card h3 { margin-bottom: 12px; font-size: 1.2rem; }
.card p  { color: var(--text-muted); font-size: 0.92rem; margin: 0; }

/* Grid layouts */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 85vh;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,33,18,0.92) 0%, rgba(15,61,30,0.75) 50%, rgba(10,33,18,0.88) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200,169,81,0.15);
  border: 1px solid rgba(200,169,81,0.4);
  border-radius: 30px;
  padding: 6px 16px;
  font-size: 0.82rem;
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero h1 { margin-bottom: 20px; }
.hero p   { font-size: 1.15rem; color: var(--text-light); max-width: 580px; margin-bottom: 32px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

/* Stats strip */
.stats-strip {
  background: var(--card-bg);
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
  padding: 28px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.stat-item { padding: 10px; }
.stat-num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label { font-size: 0.82rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }

/* ============================================
   TABLES
   ============================================ */
.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--card-border);
}
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.data-table thead {
  background: linear-gradient(135deg, var(--green-mid), var(--green-main));
}
.data-table thead th {
  padding: 14px 18px;
  text-align: left;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--white);
  white-space: nowrap;
}
.data-table tbody tr {
  background: var(--card-bg);
  border-bottom: 1px solid var(--card-border);
  transition: background var(--transition);
}
.data-table tbody tr:hover { background: rgba(42,128,72,0.1); }
.data-table tbody td {
  padding: 13px 18px;
  color: var(--text-light);
  vertical-align: middle;
}
.data-table .highlight-row { background: rgba(200,169,81,0.06); }
.data-table .highlight-row td { color: var(--white); }
.tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  font-family: var(--font-head);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.tag-gold    { background: rgba(200,169,81,0.2); color: var(--gold); }
.tag-green   { background: rgba(42,128,72,0.2); color: #4ade80; }
.tag-blue    { background: rgba(59,130,246,0.2); color: #93c5fd; }
.tag-red     { background: rgba(239,68,68,0.2); color: #fca5a5; }

/* ============================================
   CHARTS (CSS-based)
   ============================================ */
.chart-container {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 28px;
  overflow: hidden;
}
.chart-title {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.4;
  overflow-wrap: anywhere;
}
.chart-container canvas {
  display: block;
  width: 100% !important;
  max-width: 100%;
}
/* Bar chart */
.bar-chart { display: flex; flex-direction: column; gap: 14px; }
.bar-row { display: flex; align-items: center; gap: 14px; }
.bar-label { width: 140px; font-size: 0.82rem; color: var(--text-muted); flex-shrink: 0; text-align: right; }
.bar-track { flex: 1; height: 24px; background: rgba(255,255,255,0.06); border-radius: 12px; overflow: hidden; position: relative; }
.bar-fill {
  height: 100%;
  border-radius: 12px;
  background: linear-gradient(90deg, var(--green-mid), var(--green-light));
  position: relative;
  transition: width 1s ease;
}
.bar-fill.gold { background: linear-gradient(90deg, var(--gold-dark), var(--gold)); }
.bar-value {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.75rem;
  font-weight: 700;
  font-family: var(--font-head);
  color: var(--white);
}
/* Donut chart placeholder */
.donut-wrap {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.donut-svg { flex-shrink: 0; }
.donut-legend { display: flex; flex-direction: column; gap: 12px; }
.legend-item { display: flex; align-items: center; gap: 10px; font-size: 0.88rem; color: var(--text-light); }
.legend-dot { width: 12px; height: 12px; border-radius: 50%; flex-shrink: 0; }

/* ============================================
   FEATURE SECTIONS
   ============================================ */
.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.feature-split.reverse { direction: rtl; }
.feature-split.reverse > * { direction: ltr; }
.feature-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.feature-img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}
.feature-text h2 { margin-bottom: 16px; }
.feature-text p  { color: var(--text-muted); margin-bottom: 20px; }
.check-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.check-item { display: flex; align-items: flex-start; gap: 12px; }
.check-icon { color: var(--green-light); font-size: 1.1rem; flex-shrink: 0; margin-top: 2px; }
.check-item p { margin: 0; font-size: 0.93rem; color: var(--text-light); }

/* ============================================
   BREADCRUMB
   ============================================ */
.breadcrumb {
  background: var(--card-bg);
  border-bottom: 1px solid var(--card-border);
  padding: 12px 0;
}
.breadcrumb ol {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 0.82rem;
}
.breadcrumb li { display: flex; align-items: center; gap: 8px; }
.breadcrumb li::after { content: '›'; color: var(--text-muted); }
.breadcrumb li:last-child::after { display: none; }
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .current { color: var(--gold); }

/* ============================================
   FORMS
   ============================================ */
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.form-control {
  width: 100%;
  padding: 13px 16px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-size: 0.95rem;
  font-family: var(--font-body);
  transition: all var(--transition);
}
.form-control:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(200,169,81,0.04);
  box-shadow: 0 0 0 3px rgba(200,169,81,0.12);
}
.form-control::placeholder { color: var(--text-muted); }

/* ============================================
   NOTIFICATION STRIP
   ============================================ */
.promo-strip {
  background: linear-gradient(90deg, var(--green-mid), var(--green-light), var(--green-mid));
  padding: 10px 0;
  text-align: center;
  font-size: 0.85rem;
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.5px;
}
.promo-strip a { color: var(--gold-light); border-bottom: 1px solid var(--gold-light); }

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-main) 100%);
  padding: 70px 0 60px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--card-border);
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(200,169,81,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero h1 { margin-bottom: 14px; }
.page-hero .lead { font-size: 1.1rem; color: var(--text-light); max-width: 600px; margin-bottom: 0; }

/* ============================================
   ACCORDION / FAQ
   ============================================ */
.faq-item {
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 10px;
}
.faq-question {
  width: 100%;
  background: var(--card-bg);
  border: none;
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-head);
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--white);
  text-align: left;
  transition: background var(--transition);
}
.faq-question:hover { background: rgba(42,128,72,0.15); }
.faq-question.open { border-bottom: 1px solid var(--card-border); }
.faq-icon { color: var(--gold); font-size: 1.2rem; flex-shrink: 0; }
.faq-answer {
  background: var(--card-bg);
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-answer.open { max-height: 300px; padding: 18px 24px; }
.faq-answer p { color: var(--text-muted); font-size: 0.92rem; margin: 0; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-split { gap: 40px; }
}

@media (max-width: 768px) {
  .main-nav  { display: none; }
  .header-actions .btn { display: none; }
  .hamburger { display: flex; }
  .header-tracker { display: flex; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-split { grid-template-columns: 1fr; }
  .feature-split.reverse { direction: ltr; }
  .feature-img img { height: 260px; }

  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }

  .hero { min-height: 70vh; }
  .hero p { font-size: 1rem; }

  .card {
    padding: 22px;
  }
  .card-icon {
    font-size: 2rem;
    margin-bottom: 12px;
  }

  .chart-container {
    padding: 20px;
    border-radius: 18px;
  }
  .chart-title {
    font-size: 0.95rem;
    margin-bottom: 16px;
  }
  .chart-container canvas {
    height: auto !important;
  }

  .bar-row {
    align-items: stretch;
    gap: 10px;
  }
  .bar-label {
    width: 100px;
  }
  .donut-wrap { flex-direction: column; }

  .card[style*="grid-template-columns:80px 1fr auto"] {
    grid-template-columns: 64px 1fr !important;
    gap: 18px !important;
    padding: 22px !important;
  }
  .card[style*="grid-template-columns:80px 1fr auto"] > :last-child {
    grid-column: 1 / -1;
    text-align: left !important;
  }

  .section { padding: 50px 0; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .stat-num { font-size: 1.6rem; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; justify-content: center; }

  .card {
    padding: 18px;
  }

  .chart-container {
    padding: 16px;
  }
  .chart-title {
    font-size: 0.9rem;
  }

  .bar-row {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }
  .bar-label {
    width: auto;
    text-align: left;
    font-size: 0.78rem;
  }
  .bar-track {
    width: 100%;
    height: 22px;
  }
  .bar-value {
    right: 8px;
    font-size: 0.7rem;
  }

  .card[style*="grid-template-columns:80px 1fr auto"] {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
    padding: 18px !important;
  }
  .card[style*="grid-template-columns:80px 1fr auto"] > :first-child {
    text-align: left !important;
    font-size: 2rem !important;
  }
  .card[style*="grid-template-columns:80px 1fr auto"] > :last-child {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

/* ============================================
   UTILITIES
   ============================================ */
.text-center { text-align: center; }
.text-right  { text-align: right; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }

/* Gold gradient line */
.gold-line {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 40px 0;
  border: none;
}

/* Scroll animations */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible { opacity: 1; transform: none; }

/* SVG favicon inline fallback */
.favicon-placeholder {
  width: 32px; height: 32px;
  background: var(--gold);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-family: var(--font-head);
  color: var(--green-dark); font-size: 14px;
}
