
/* ===================================================
   EnergiainArmonia.it — Casina Casino Review
   Theme: Deep Navy + Electric Gold
   =================================================== */

:root {
  --bg: #05091a;
  --surface: #0c1528;
  --surface2: #13203a;
  --surface3: #1a2d4d;
  --border: #1e3058;
  --gold: #d4aa40;
  --gold-light: #f0cc58;
  --gold-dim: rgba(212,170,64,0.15);
  --text: #edf0f7;
  --text-muted: #7c8fa8;
  --text-dim: #4a5e78;
  --green: #22d37a;
  --red: #f04060;
  --radius: 10px;
  --radius-lg: 16px;
  --shadow: 0 4px 24px rgba(0,0,0,0.4);
  --shadow-gold: 0 4px 20px rgba(212,170,64,0.2);
  --transition: 0.22s ease;
  --max-w: 1100px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: system-ui, -apple-system, 'Segoe UI', sans-serif;
  line-height: 1.7;
  min-height: 100vh;
}

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; }

/* ===== CONTAINER ===== */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 20px; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { line-height: 1.3; font-weight: 700; }
h1 { font-size: clamp(1.7rem, 4vw, 2.6rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); }
h4 { font-size: 1.05rem; }
p { margin-bottom: 1rem; }

.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-dim);
  background: var(--gold-dim);
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 0.75rem;
}

.section-title {
  margin-bottom: 0.5rem;
  color: var(--text);
}
.section-title span { color: var(--gold); }
.section-intro { color: var(--text-muted); margin-bottom: 2rem; max-width: 680px; }

/* ===== HEADER ===== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(5,9,26,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 20px;
}
.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 20px;
}
.site-logo {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.site-logo span { color: var(--gold); }

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.site-nav a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
}
.site-nav a:hover { color: var(--gold); }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--gold), #b8912a);
  color: #05091a;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 12px 24px;
  border-radius: var(--radius);
  transition: all var(--transition);
  box-shadow: var(--shadow-gold);
  white-space: nowrap;
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #05091a;
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(212,170,64,0.35);
}
.btn-primary.large { padding: 16px 32px; font-size: 1.05rem; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--gold);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 11px 22px;
  border: 1.5px solid var(--gold);
  border-radius: var(--radius);
  transition: all var(--transition);
}
.btn-secondary:hover {
  background: var(--gold-dim);
  color: var(--gold-light);
}

/* ===== HERO ===== */
.hero {
  background:
    radial-gradient(ellipse at 70% 0%, rgba(212,170,64,0.07) 0%, transparent 60%),
    radial-gradient(ellipse at 0% 100%, rgba(34,211,122,0.04) 0%, transparent 50%),
    var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 64px 20px 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 400px; height: 400px;
  border-radius: 50%;
  border: 1px solid rgba(212,170,64,0.08);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  top: -30px; right: -30px;
  width: 250px; height: 250px;
  border-radius: 50%;
  border: 1px solid rgba(212,170,64,0.05);
  pointer-events: none;
}
.hero-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green);
  background: rgba(34,211,122,0.08);
  border: 1px solid rgba(34,211,122,0.2);
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 18px;
}
.hero h1 { color: var(--text); margin-bottom: 20px; }
.hero h1 em { color: var(--gold); font-style: normal; }
.hero-intro { font-size: 1.05rem; color: var(--text-muted); margin-bottom: 28px; max-width: 580px; }
.hero-ctas { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; margin-bottom: 20px; }
.hero-note { font-size: 0.72rem; color: var(--text-dim); }
.hero-note a { color: var(--text-dim); text-decoration: underline; }

/* Bonus Card */
.bonus-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.bonus-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.bonus-card-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.bonus-amount {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 4px;
}
.bonus-amount span { color: var(--gold); }
.bonus-sub { font-size: 1rem; color: var(--gold-light); font-weight: 600; margin-bottom: 20px; }
.bonus-divider { border: none; border-top: 1px solid var(--border); margin: 20px 0; }

.stars { display: flex; align-items: center; gap: 4px; margin-bottom: 8px; }
.stars .star { color: var(--gold); font-size: 1.2rem; }
.stars .star-half { color: var(--gold); font-size: 1.2rem; opacity: 0.6; }
.rating-text { font-size: 0.85rem; color: var(--text-muted); }
.rating-num { font-size: 1.5rem; font-weight: 800; color: var(--text); }

.bonus-facts { margin: 16px 0; }
.bonus-fact { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 0.85rem; }
.bonus-fact:last-child { border-bottom: none; }
.bonus-fact-key { color: var(--text-muted); }
.bonus-fact-val { color: var(--text); font-weight: 600; }

/* ===== STATS BAR ===== */
.stats-bar { background: var(--surface); border-bottom: 1px solid var(--border); }
.stats-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
  divide-x: 1px solid var(--border);
}
.stat-item {
  padding: 20px 24px;
  text-align: center;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-value { font-size: 1.6rem; font-weight: 800; color: var(--gold); }
.stat-label { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; margin-top: 2px; }

/* ===== PROMOS SECTION ===== */
.promos-section { padding: 64px 20px; }
.promos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  margin-top: 32px;
}
.promo-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: border-color var(--transition), transform var(--transition);
  position: relative;
  overflow: hidden;
}
.promo-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.promo-card.featured {
  background: linear-gradient(135deg, #0f1d38, #142548);
  border-color: var(--gold);
}
.promo-card.featured::after {
  content: 'MIGLIORE';
  position: absolute; top: 16px; right: 16px;
  font-size: 0.65rem; font-weight: 800; letter-spacing: 0.1em;
  color: #05091a; background: var(--gold);
  padding: 3px 8px; border-radius: 4px;
}
.promo-icon { font-size: 2rem; margin-bottom: 16px; }
.promo-type { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.promo-value { font-size: 1.5rem; font-weight: 800; color: var(--text); margin-bottom: 8px; }
.promo-desc { font-size: 0.87rem; color: var(--text-muted); margin-bottom: 0; }
.promo-strip { height: 3px; background: linear-gradient(90deg, var(--gold), transparent); margin-bottom: 20px; border-radius: 2px; }

/* ===== INFO TABLE ===== */
.info-table-section { padding: 0 20px 64px; }
.info-table {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  width: 100%;
  border-collapse: collapse;
}
.info-table thead tr { background: var(--surface2); }
.info-table th {
  padding: 16px 24px;
  text-align: left;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}
.info-table td {
  padding: 14px 24px;
  font-size: 0.9rem;
  border-top: 1px solid var(--border);
  vertical-align: middle;
}
.info-table tr:hover td { background: rgba(212,170,64,0.03); }
.info-table td:first-child { color: var(--text-muted); width: 40%; }
.info-table td:last-child { color: var(--text); font-weight: 500; }
.info-table .tag {
  display: inline-block;
  font-size: 0.75rem; font-weight: 600;
  background: var(--gold-dim); color: var(--gold);
  padding: 2px 10px; border-radius: 50px;
}

/* ===== CONTENT SECTIONS ===== */
.content-section { padding: 56px 20px; border-top: 1px solid var(--border); }
.content-section:nth-child(even) { background: linear-gradient(180deg, transparent, rgba(13,21,40,0.5), transparent); }
.content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.content-grid.reverse { }

.check-list { margin: 16px 0; }
.check-list li { display: flex; align-items: flex-start; gap: 10px; padding: 6px 0; font-size: 0.92rem; color: var(--text-muted); }
.check-list li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; margin-top: 2px; }

.info-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 24px;
  margin: 20px 0;
}
.info-box strong { display: block; color: var(--gold); margin-bottom: 6px; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.06em; }

/* VIP Levels */
.vip-levels { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin: 24px 0; }
.vip-level {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
}
.vip-level-name { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 4px; }
.vip-level-name.bronze { color: #cd7f32; }
.vip-level-name.silver { color: #c0c0c0; }
.vip-level-name.gold { color: var(--gold); }
.vip-level-name.platinum { color: #9f9fff; }
.vip-level-name.diamond { color: #b9f2ff; }
.vip-level-perk { font-size: 0.85rem; color: var(--text-muted); }

/* Providers */
.providers-grid { display: flex; flex-wrap: wrap; gap: 10px; margin: 20px 0; }
.provider-badge {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 8px 16px;
  font-size: 0.82rem; font-weight: 600;
  color: var(--text-muted);
  transition: all var(--transition);
}
.provider-badge:hover { border-color: var(--gold); color: var(--gold); }

/* ===== PAYMENT TABLE ===== */
.payment-table-wrap { overflow-x: auto; margin: 24px 0; }
.payment-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.payment-table th {
  background: var(--surface2);
  padding: 14px 20px;
  text-align: left;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}
.payment-table td {
  padding: 12px 20px;
  border-top: 1px solid var(--border);
  font-size: 0.88rem;
  color: var(--text);
}
.payment-table tr:hover td { background: rgba(212,170,64,0.03); }
.check { color: var(--green); font-weight: 700; }
.cross { color: var(--red); font-weight: 700; }

/* ===== EXPERIENCE SECTION ===== */
.experience-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin: 24px 0; }
.exp-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
}
.exp-card-title { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gold); margin-bottom: 6px; }
.exp-card-value { font-size: 1.3rem; font-weight: 800; color: var(--text); margin-bottom: 4px; }
.exp-card-note { font-size: 0.82rem; color: var(--text-muted); }

.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 24px 0; }
.pros, .cons {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}
.pros { border-top: 2px solid var(--green); }
.cons { border-top: 2px solid var(--red); }
.pros h4, .cons h4 { margin-bottom: 12px; }
.pros h4 { color: var(--green); }
.cons h4 { color: var(--red); }
.pros li, .cons li {
  display: flex; align-items: flex-start; gap: 8px;
  padding: 5px 0; font-size: 0.87rem; color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}
.pros li:last-child, .cons li:last-child { border-bottom: none; }
.pros li::before { content: '+'; color: var(--green); font-weight: 700; flex-shrink: 0; }
.cons li::before { content: '−'; color: var(--red); font-weight: 700; flex-shrink: 0; }

/* ===== COMPARISON TABLE ===== */
.comparison-table-wrap { overflow-x: auto; margin: 24px 0; }
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.comparison-table th {
  background: var(--surface2);
  padding: 16px 20px;
  text-align: left;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.comparison-table th.highlight { color: var(--gold); background: linear-gradient(180deg, #142040, var(--surface2)); }
.comparison-table td {
  padding: 14px 20px;
  border-top: 1px solid var(--border);
  font-size: 0.88rem;
  color: var(--text);
}
.comparison-table td.highlight { background: rgba(212,170,64,0.04); font-weight: 600; }
.comparison-table tr:hover td { background: rgba(255,255,255,0.02); }
.comparison-table tr:hover td.highlight { background: rgba(212,170,64,0.07); }

/* ===== FAQ ===== */
.faq-section { padding: 64px 20px; background: linear-gradient(180deg, transparent, rgba(13,21,40,0.6), transparent); }
.faq-list { margin: 32px 0; }
details.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 10px;
  transition: border-color var(--transition);
}
details.faq-item[open] { border-color: var(--gold); }
summary.faq-q {
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.97rem;
  color: var(--text);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
summary.faq-q::-webkit-details-marker { display: none; }
summary.faq-q::after {
  content: '+';
  color: var(--gold);
  font-size: 1.4rem;
  font-weight: 300;
  flex-shrink: 0;
  transition: transform var(--transition);
}
details.faq-item[open] summary.faq-q::after { content: '−'; }
.faq-a {
  padding: 0 24px 20px;
  font-size: 0.9rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

/* ===== SCORE CARD ===== */
.score-card {
  background: linear-gradient(135deg, #0e1d3a, #13203a);
  border: 1px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
  margin: 28px 0;
  box-shadow: var(--shadow-gold);
}
.score-num { font-size: 4rem; font-weight: 900; color: var(--gold); line-height: 1; }
.score-label { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); margin-top: 4px; }
.score-verdict { font-size: 1.1rem; font-weight: 600; color: var(--text); margin-top: 12px; }

.score-breakdown { margin-top: 20px; }
.score-row { display: flex; align-items: center; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--border); }
.score-row:last-child { border-bottom: none; }
.score-row-label { font-size: 0.85rem; color: var(--text-muted); }
.score-bar-wrap { flex: 1; margin: 0 16px; background: var(--surface2); border-radius: 50px; height: 6px; }
.score-bar { height: 6px; border-radius: 50px; background: linear-gradient(90deg, var(--gold), var(--gold-light)); }
.score-row-val { font-size: 0.85rem; font-weight: 700; color: var(--gold); min-width: 32px; text-align: right; }

/* ===== CTA STRIP ===== */
.cta-strip {
  background: linear-gradient(135deg, #0f1d38, #1a2d50);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  text-align: center;
  margin: 32px 0;
}
.cta-strip h3 { color: var(--text); margin-bottom: 8px; }
.cta-strip p { color: var(--text-muted); margin-bottom: 24px; }
.cta-strip .disclaimer { font-size: 0.72rem; color: var(--text-dim); margin-top: 12px; }

/* ===== MOBILE STICKY CTA ===== */
.mobile-cta {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0;
  background: linear-gradient(180deg, transparent, rgba(5,9,26,0.98));
  padding: 12px 20px 20px;
  z-index: 90;
  backdrop-filter: blur(10px);
}
.mobile-cta .btn-primary { width: 100%; justify-content: center; }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 48px 20px 24px;
}
.footer-grid {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}
.footer-brand p { font-size: 0.87rem; color: var(--text-muted); margin-top: 10px; max-width: 280px; }
.footer-col h5 { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); margin-bottom: 14px; }
.footer-col li { margin-bottom: 8px; }
.footer-col li a { font-size: 0.87rem; color: var(--text-dim); }
.footer-col li a:hover { color: var(--gold); }
.footer-bottom {
  max-width: var(--max-w); margin: 24px auto 0;
  font-size: 0.78rem; color: var(--text-dim); text-align: center; line-height: 1.7;
}
.footer-bottom a { color: var(--text-dim); text-decoration: underline; }
.footer-bottom .responsible-bar {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 16px;
  background: var(--surface2); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 12px 20px; margin-bottom: 16px;
  font-weight: 600;
}
.badge-18 {
  display: inline-flex; align-items: center; justify-content: center;
  width: 30px; height: 30px;
  background: var(--red); color: white;
  font-size: 0.78rem; font-weight: 800;
  border-radius: 50%;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero { padding: 40px 20px 56px; }
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .bonus-card { order: -1; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .promos-grid { grid-template-columns: 1fr; }
  .content-grid { grid-template-columns: 1fr; gap: 24px; }
  .experience-grid { grid-template-columns: 1fr 1fr; }
  .pros-cons { grid-template-columns: 1fr; }
  .vip-levels { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-brand { grid-column: 1 / -1; }
  .site-nav { display: none; }
  .mobile-cta { display: block; }
  body { padding-bottom: 80px; }
  .cta-strip { padding: 24px 20px; }
}

@media (max-width: 480px) {
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .experience-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-ctas .btn-secondary { display: none; }
}

/* ===== UTILS ===== */
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mt-8 { margin-top: 8px; }
.mb-8 { margin-bottom: 8px; }
.mt-16 { margin-top: 16px; }
.mb-16 { margin-bottom: 16px; }
.mt-24 { margin-top: 24px; }
.mb-24 { margin-bottom: 24px; }
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-muted { color: var(--text-muted); }
.text-green { color: var(--green); }
.text-red { color: var(--red); }
.bold { font-weight: 700; }

/* Last update notice */
.update-notice {
  font-size: 0.75rem; color: var(--text-dim);
  border-top: 1px solid var(--border);
  padding-top: 12px; margin-top: 16px;
  display: flex; align-items: center; gap: 6px;
}
.update-notice::before { content: '🕐'; font-size: 0.7rem; }

/* Breadcrumb */
.breadcrumb {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.78rem; color: var(--text-dim);
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}
.breadcrumb a { color: var(--text-dim); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { color: var(--text-dim); opacity: 0.4; }
