@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --navy: #1c2e4a;
  --navy-deep: #0f1e32;
  --navy-mid: #2a4266;
  --burgundy: #7a1f3d;
  --burgundy-light: #9e2d51;
  --burgundy-pale: #f5eaee;
  --silver-blue: #dde4ed;
  --cream: #f6f4f1;
  --cream-dark: #ece9e4;
  --white: #ffffff;
  --text-dark: #181818;
  --text-mid: #383838;
  --text-light: #6a6a6a;
  --border: #cdd4de;
  --gold-star: #d4a017;
  --shadow: 0 2px 14px rgba(15,30,50,0.10);
  --shadow-lg: 0 6px 30px rgba(15,30,50,0.16);
  --radius: 8px;
  --radius-lg: 14px;
  --ff-head: 'DM Serif Display', Georgia, serif;
  --ff-body: 'Inter', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--ff-body); background: var(--cream); color: var(--text-dark); line-height: 1.75; }
img { max-width: 100%; height: auto; display: block; border-radius: var(--radius); }
a { color: var(--burgundy); text-decoration: none; }
a:hover { color: var(--burgundy-light); }
.container { max-width: 1080px; margin: 0 auto; padding: 0 20px; }

/* Header */
.site-header {
  background: var(--navy-deep);
  border-bottom: 3px solid var(--burgundy);
  position: sticky; top: 0; z-index: 100;
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 13px 20px; max-width: 1080px; margin: 0 auto; gap: 16px;
}
.site-logo img { height: 44px; width: auto; }
.site-nav { display: flex; align-items: center; gap: 4px; flex-wrap: wrap; }
.site-nav a {
  color: rgba(255,255,255,0.80); font-family: var(--ff-body); font-size: 0.8rem;
  font-weight: 500; padding: 6px 11px; border-radius: 5px;
  transition: background 0.2s, color 0.2s;
}
.site-nav a:hover, .site-nav a.active { background: rgba(255,255,255,0.10); color: var(--white); }
.btn-cta-nav {
  background: var(--burgundy) !important; color: var(--white) !important;
  font-weight: 600 !important; padding: 7px 16px !important;
  border-radius: 5px !important; white-space: nowrap;
}
.btn-cta-nav:hover { background: var(--burgundy-light) !important; }

/* Breadcrumb */
.breadcrumb { background: var(--cream-dark); padding: 10px 0; font-size: 0.8rem; color: var(--text-light); border-bottom: 1px solid var(--border); }
.breadcrumb a { color: var(--burgundy); }
.breadcrumb span { margin: 0 6px; }

/* Hero */
.page-hero {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 55%, var(--navy-mid) 100%);
  padding: 54px 20px 44px; text-align: center; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='10' y='10' width='80' height='80' rx='4' fill='none' stroke='%237a1f3d' stroke-width='0.6' stroke-opacity='0.12'/%3E%3Crect x='25' y='25' width='50' height='50' rx='2' fill='none' stroke='%237a1f3d' stroke-width='0.4' stroke-opacity='0.08'/%3E%3C/svg%3E");
  pointer-events: none;
}
.page-hero h1 {
  font-family: var(--ff-head); font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 400; color: var(--white); line-height: 1.2;
  margin-bottom: 14px; position: relative; letter-spacing: 0.01em;
}
.page-hero .subtitle { color: rgba(255,255,255,0.72); font-size: 0.98rem; max-width: 600px; margin: 0 auto 22px; font-style: italic; }
.rating-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(122,31,61,0.5);
  border-radius: 50px; padding: 8px 20px; color: rgba(255,255,255,0.88);
  font-size: 0.85rem; font-weight: 600; font-family: var(--ff-body);
}
.stars { color: var(--gold-star); letter-spacing: 2px; }

/* Layout */
.page-layout { display: grid; grid-template-columns: 1fr 300px; gap: 36px; padding: 40px 20px; max-width: 1080px; margin: 0 auto; align-items: start; }
.page-content { min-width: 0; }
.sidebar { position: sticky; top: 80px; display: flex; flex-direction: column; gap: 22px; }

/* Typography */
.page-content h2 {
  font-family: var(--ff-head); font-size: 1.6rem; font-weight: 400;
  color: var(--navy-deep); margin: 40px 0 14px;
  padding-bottom: 10px; border-bottom: 2px solid var(--burgundy);
  line-height: 1.25; font-style: italic;
}
.page-content h2:first-child { margin-top: 0; }
.page-content h3 { font-family: var(--ff-body); font-size: 1rem; font-weight: 700; color: var(--navy-mid); margin: 26px 0 10px; text-transform: uppercase; letter-spacing: 0.05em; font-size: 0.88rem; }
.page-content p { margin-bottom: 18px; color: var(--text-mid); font-size: 0.95rem; line-height: 1.8; font-weight: 300; }
.page-content ul, .page-content ol { margin: 0 0 18px 22px; color: var(--text-mid); font-size: 0.95rem; font-weight: 300; }
.page-content li { margin-bottom: 7px; }
.page-content strong { color: var(--text-dark); font-weight: 600; }

/* Verdict Box */
.verdict-box { background: var(--white); border: 2px solid var(--navy); border-radius: var(--radius-lg); padding: 26px; margin-bottom: 30px; box-shadow: var(--shadow); }
.verdict-box .verdict-title { font-family: var(--ff-head); font-size: 1.2rem; font-style: italic; color: var(--navy-deep); margin-bottom: 18px; display: flex; align-items: center; gap: 10px; }
.verdict-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 20px; }
.verdict-item .label { color: var(--text-light); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 3px; font-weight: 600; }
.verdict-item .value { color: var(--text-dark); font-weight: 500; font-size: 0.92rem; }
.verdict-rating { display: flex; align-items: center; gap: 14px; padding-top: 16px; border-top: 1px solid var(--border); }
.rating-number { font-family: var(--ff-head); font-size: 2.8rem; color: var(--navy-deep); line-height: 1; font-style: italic; }
.rating-stars-lg { font-size: 1.4rem; color: var(--gold-star); }
.rating-label { font-size: 0.8rem; color: var(--text-light); }

/* Offer Cards */
.offer-cards { display: flex; flex-direction: column; gap: 16px; margin: 24px 0; }
.offer-card { background: var(--white); border-radius: var(--radius-lg); border: 1px solid var(--border); padding: 22px 24px; box-shadow: var(--shadow); display: grid; grid-template-columns: 1fr auto; gap: 16px; align-items: center; transition: box-shadow 0.2s; position: relative; }
.offer-card:hover { box-shadow: var(--shadow-lg); }
.offer-card.featured { border-color: var(--burgundy); border-width: 2px; }
.offer-badge { position: absolute; top: -11px; left: 20px; background: var(--burgundy); color: var(--white); font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.07em; padding: 3px 12px; border-radius: 50px; }
.offer-card-label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-light); margin-bottom: 5px; font-weight: 600; }
.offer-amount { font-family: var(--ff-head); font-size: 1.1rem; color: var(--navy-deep); line-height: 1.3; margin-bottom: 6px; font-style: italic; }
.offer-note { font-size: 0.82rem; color: var(--text-light); }

/* Buttons */
.btn { display: inline-block; padding: 11px 24px; border-radius: 6px; font-weight: 600; font-family: var(--ff-body); font-size: 0.88rem; text-align: center; white-space: nowrap; cursor: pointer; transition: all 0.2s; }
.btn-primary { background: var(--burgundy); color: var(--white); border: 2px solid var(--burgundy); }
.btn-primary:hover { background: var(--burgundy-light); border-color: var(--burgundy-light); color: var(--white); transform: translateY(-1px); box-shadow: 0 4px 14px rgba(122,31,61,0.35); }
.btn-secondary { background: transparent; color: var(--navy-deep); border: 2px solid var(--navy); }
.btn-secondary:hover { background: var(--navy); color: var(--white); }
.btn-full { width: 100%; display: block; text-align: center; }
.btn-group { display: flex; gap: 12px; flex-wrap: wrap; margin: 20px 0; }

/* Info Box */
.info-box { background: #eef1f7; border-left: 4px solid var(--navy-mid); border-radius: 0 var(--radius) var(--radius) 0; padding: 18px 22px; margin: 24px 0; }
.info-box-title { font-family: var(--ff-body); font-size: 0.88rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--navy-deep); margin-bottom: 10px; }

/* Table */
.coins-table { width: 100%; border-collapse: collapse; margin: 24px 0; font-size: 0.9rem; background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.coins-table th { background: var(--navy-deep); color: var(--white); padding: 13px 18px; text-align: left; font-weight: 600; font-size: 0.84rem; letter-spacing: 0.04em; }
.coins-table td { padding: 11px 18px; border-bottom: 1px solid var(--cream-dark); color: var(--text-mid); font-weight: 300; }
.coins-table tr:last-child td { border-bottom: none; }
.coins-table tr:nth-child(even) td { background: var(--cream); }

/* Pros Cons */
.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin: 24px 0; }
.pros-box, .cons-box { background: var(--white); border-radius: var(--radius-lg); padding: 20px; box-shadow: var(--shadow); }
.pros-box { border-top: 3px solid #2d7a4e; }
.cons-box { border-top: 3px solid var(--burgundy); }
.pros-box h3, .cons-box h3 { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 14px; font-weight: 700; border: none; padding: 0; margin-top: 0; }
.pros-box h3 { color: #2d7a4e; }
.cons-box h3 { color: var(--burgundy); }
.pros-box ul, .cons-box ul { list-style: none; margin: 0; padding: 0; }
.pros-box li::before { content: '✓  '; color: #2d7a4e; font-weight: 700; }
.cons-box li::before { content: '✗  '; color: var(--burgundy); font-weight: 700; }
.pros-box li, .cons-box li { font-size: 0.875rem; color: var(--text-mid); margin-bottom: 9px; font-weight: 300; }

/* Steps */
.steps { margin: 24px 0; }
.step { display: flex; gap: 20px; margin-bottom: 24px; align-items: flex-start; }
.step-num { min-width: 42px; height: 42px; background: var(--burgundy); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--ff-head); font-size: 1.1rem; font-style: italic; flex-shrink: 0; }
.step-body h3 { color: var(--navy-deep); margin-top: 0; }

/* FAQ */
.faq-section { background: var(--white); border-radius: var(--radius-lg); padding: 30px 28px; margin: 40px 0; box-shadow: var(--shadow); }
.faq-section h2 { border-bottom: none; margin-top: 0; margin-bottom: 22px; }
.faq-item { border-bottom: 1px solid var(--cream-dark); padding: 16px 0; }
.faq-item:last-child { border-bottom: none; padding-bottom: 0; }
.faq-q { font-family: var(--ff-head); font-size: 1rem; font-style: italic; color: var(--navy-deep); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 10px; }
.faq-q::after { content: '+'; font-size: 1.3rem; color: var(--burgundy); flex-shrink: 0; font-family: sans-serif; font-weight: 300; font-style: normal; }
.faq-a { font-size: 0.9rem; color: var(--text-mid); margin-top: 10px; line-height: 1.75; font-weight: 300; }

/* Related */
.related-pages { background: var(--navy-deep); border-radius: var(--radius-lg); padding: 26px; margin: 40px 0; }
.related-pages h3 { color: rgba(255,255,255,0.85); font-family: var(--ff-body); font-size: 0.78rem; font-weight: 700; margin: 0 0 14px; text-transform: uppercase; letter-spacing: 0.07em; }
.related-pages a { display: block; color: rgba(255,255,255,0.62); font-size: 0.88rem; padding: 7px 0; border-bottom: 1px solid rgba(255,255,255,0.07); transition: color 0.2s; font-weight: 300; }
.related-pages a:hover { color: rgba(255,255,255,0.92); }
.related-pages a:last-child { border-bottom: none; }
.related-pages a::before { content: '→  '; color: var(--burgundy-light); }

/* Content Images */
.content-img { margin: 28px 0; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid var(--border); }
.content-img img { border-radius: 0; width: 100%; }
.content-img figcaption { background: var(--cream-dark); padding: 9px 16px; font-size: 0.78rem; color: var(--text-light); font-style: italic; text-align: center; font-weight: 300; }

/* Highlight Strip */
.highlight-strip { background: linear-gradient(135deg, var(--navy-deep), var(--navy-mid)); color: var(--white); padding: 34px 28px; border-radius: var(--radius-lg); margin: 32px 0; text-align: center; position: relative; overflow: hidden; }
.highlight-strip::after { content: ''; position: absolute; top: -30px; right: -30px; width: 160px; height: 160px; background: radial-gradient(circle, rgba(122,31,61,0.25) 0%, transparent 70%); pointer-events: none; }
.highlight-strip h3 { font-family: var(--ff-head); font-size: 1.5rem; font-style: italic; color: var(--white); margin: 0 0 8px; }
.highlight-strip p { color: rgba(255,255,255,0.72); font-size: 0.9rem; margin-bottom: 20px; font-weight: 300; }

/* Disclaimer */
.disclaimer-banner { background: var(--burgundy-pale); border: 1px solid #d4a0b0; border-radius: var(--radius); padding: 14px 18px; font-size: 0.8rem; color: #5a1030; margin: 24px 0; line-height: 1.6; font-weight: 300; }

/* Sidebar */
.sidebar-widget { background: var(--white); border-radius: var(--radius-lg); padding: 22px; box-shadow: var(--shadow); border: 1px solid var(--border); }
.sidebar-widget h3 { font-family: var(--ff-body); font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: var(--navy-deep); margin: 0 0 16px; padding-bottom: 10px; border-bottom: 2px solid var(--burgundy); }
.sidebar-widget p { font-size: 0.875rem; margin-bottom: 14px; font-weight: 300; }
.sidebar-widget .mini-offer { background: var(--cream); border-radius: var(--radius); padding: 12px 14px; margin-bottom: 10px; font-size: 0.85rem; font-weight: 300; }
.sidebar-widget .mini-offer strong { display: block; color: var(--navy-deep); font-size: 0.88rem; margin-bottom: 3px; font-weight: 600; }
.quick-facts { list-style: none; padding: 0; margin: 0; }
.quick-facts li { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; border-bottom: 1px solid var(--cream-dark); font-size: 0.83rem; }
.quick-facts li:last-child { border-bottom: none; }
.quick-facts .fact-label { color: var(--text-light); font-weight: 300; }
.quick-facts .fact-val { color: var(--text-dark); font-weight: 600; }
.sidebar-widget.banner-widget { padding: 0; overflow: hidden; border: none; background: transparent; box-shadow: none; }
.sidebar-widget.banner-widget a { display: block; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); transition: transform 0.2s; }
.sidebar-widget.banner-widget a:hover { transform: translateY(-2px); }
.sidebar-widget.banner-widget img { width: 100%; height: auto; display: block; border-radius: var(--radius-lg); }

/* Footer */
.site-footer { background: var(--navy-deep); color: rgba(255,255,255,0.68); padding: 48px 20px 28px; margin-top: 60px; }
.footer-inner { max-width: 1080px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 36px; padding-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,0.10); margin-bottom: 28px; }
.footer-col h4 { color: rgba(255,255,255,0.88); font-family: var(--ff-body); font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 14px; }
.footer-col a { display: block; color: rgba(255,255,255,0.52); font-size: 0.83rem; margin-bottom: 7px; transition: color 0.2s; font-weight: 300; }
.footer-col a:hover { color: rgba(255,255,255,0.88); }
.footer-disclaimer { font-size: 0.75rem; color: rgba(255,255,255,0.42); line-height: 1.7; margin-bottom: 18px; font-weight: 300; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.08); }
.footer-bottom .copyright { font-size: 0.78rem; color: rgba(255,255,255,0.38); }
.age-badge { background: rgba(122,31,61,0.2); border: 1px solid var(--burgundy-light); border-radius: 50%; width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; font-size: 0.72rem; font-weight: 700; color: #c86080; flex-shrink: 0; }

@media (max-width: 860px) {
  .page-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .verdict-grid { grid-template-columns: 1fr; }
  .pros-cons { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .header-inner { flex-direction: column; align-items: flex-start; }
  .site-nav { gap: 3px; }
  .site-nav a { font-size: 0.73rem; padding: 5px 8px; }
  .footer-top { grid-template-columns: 1fr; gap: 24px; }
  .offer-card { grid-template-columns: 1fr; }
  .btn-group { flex-direction: column; }
  .page-hero { padding: 38px 20px 30px; }
}
