/* ============================================
   TradingColosseum.com — Roman Colosseum Theme
   ============================================ */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;900&family=Source+Sans+3:ital,wght@0,300;0,400;0,600;0,700;1,400&display=swap');

/* --- CSS Variables --- */
:root {
  --dark: #0a0806;
  --dark-lighter: #141210;
  --dark-card: #1a1714;
  --primary: #b45309;
  --primary-light: #d97706;
  --primary-dark: #92400e;
  --secondary: #78716c;
  --secondary-light: #a8a29e;
  --accent: #dc2626;
  --accent-dark: #991b1b;
  --text: #e7e5e4;
  --text-muted: #a8a29e;
  --text-heading: #fef3c7;
  --gold: #f59e0b;
  --gold-light: #fbbf24;
  --border: #292524;
  --border-light: #44403c;
  --font-heading: 'Cinzel', 'Times New Roman', serif;
  --font-body: 'Source Sans 3', 'Segoe UI', sans-serif;
  --max-width: 1200px;
  --radius: 6px;
  --shadow: 0 4px 24px rgba(0,0,0,0.5);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.6);
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background-color: var(--dark);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Stone texture background */
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(180,83,9,0.04) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(120,113,108,0.05) 0%, transparent 50%),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 100px,
      rgba(120,113,108,0.02) 100px,
      rgba(120,113,108,0.02) 101px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 100px,
      rgba(120,113,108,0.02) 100px,
      rgba(120,113,108,0.02) 101px
    );
  pointer-events: none;
  z-index: -1;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary-light); text-decoration: none; transition: color 0.3s ease; }
a:hover { color: var(--gold-light); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-heading);
  line-height: 1.3;
  letter-spacing: 0.02em;
}

p { margin-bottom: 1rem; }

/* --- Utility --- */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem; }
.text-center { text-align: center; }
.text-primary { color: var(--primary-light); }
.text-accent { color: var(--accent); }
.text-muted { color: var(--text-muted); }

/* --- Laurel Wreath Decorative Divider --- */
.laurel-divider {
  text-align: center;
  margin: 2rem 0;
  position: relative;
}
.laurel-divider::before {
  content: '';
  display: block;
  width: 120px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  margin: 0 auto 0.5rem;
}
.laurel-divider::after {
  content: '\2766';
  font-size: 1.4rem;
  color: var(--primary);
}

/* --- Column Border Decoration --- */
.column-border {
  border-left: 4px solid var(--border-light);
  border-image: repeating-linear-gradient(
    to bottom,
    var(--primary-dark) 0px,
    var(--primary-dark) 8px,
    transparent 8px,
    transparent 16px
  ) 4;
  padding-left: 1.5rem;
}

/* --- Arch Shape --- */
.arch-top {
  border-radius: 50% 50% var(--radius) var(--radius) / 20% 20% 0 0;
  overflow: hidden;
}

/* --- Header --- */
.site-header {
  background: linear-gradient(180deg, #0d0b09 0%, var(--dark) 100%);
  border-bottom: 2px solid var(--primary-dark);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.6);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 1.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-heading);
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-icon {
  width: 36px;
  height: 36px;
  border: 2px solid var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--primary-light);
  background: rgba(180,83,9,0.1);
}

.logo span { color: var(--primary-light); }

/* Navigation */
.main-nav ul {
  list-style: none;
  display: flex;
  gap: 1.8rem;
  align-items: center;
}

.main-nav a {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: color 0.3s ease;
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--primary-light);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* --- Hero Section --- */
.hero {
  position: relative;
  padding: 5rem 1.5rem;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(10,8,6,0.3) 0%, rgba(10,8,6,0.9) 100%),
    radial-gradient(ellipse at center top, rgba(180,83,9,0.15) 0%, transparent 70%);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  border: 1px solid rgba(180,83,9,0.08);
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  top: 20px; left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 500px;
  border: 1px solid rgba(180,83,9,0.05);
  border-radius: 50%;
  pointer-events: none;
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary-light);
  border: 1px solid var(--primary-dark);
  padding: 0.4rem 1.2rem;
  border-radius: 2px;
  margin-bottom: 1.5rem;
  background: rgba(180,83,9,0.08);
}

.hero h1 {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 1rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.hero h1 .highlight {
  color: var(--primary-light);
  display: block;
}

.hero p {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 2rem;
}

/* --- CTA Button --- */
.cta-button {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border: 1px solid var(--primary-light);
  padding: 0.9rem 2.2rem;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(180,83,9,0.3);
  position: relative;
  overflow: hidden;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  transition: left 0.5s ease;
}

.cta-button:hover {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(180,83,9,0.4);
}

.cta-button:hover::before { left: 100%; }

.cta-button--accent {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  border-color: var(--accent);
  box-shadow: 0 4px 16px rgba(220,38,38,0.3);
}

.cta-button--accent:hover {
  background: linear-gradient(135deg, #ef4444 0%, var(--accent) 100%);
  box-shadow: 0 6px 24px rgba(220,38,38,0.4);
}

/* --- Cards Grid --- */
.cards-section { padding: 4rem 0; }

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

.section-header .decorative-line {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-dark), var(--primary-light), var(--primary-dark));
  margin: 1rem auto 0;
  border-radius: 2px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
}

.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-dark), var(--primary-light), var(--primary-dark));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card:hover {
  border-color: var(--primary-dark);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card:hover::before { opacity: 1; }

.card-image {
  height: 200px;
  background: linear-gradient(135deg, var(--dark-lighter), var(--dark-card));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.card-image .card-icon {
  font-size: 3rem;
  color: var(--primary);
  opacity: 0.6;
}

.card-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary-dark), transparent);
}

.card-body { padding: 1.5rem; }

.card-category {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.6rem;
  display: block;
}

.card-body h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  line-height: 1.4;
}

.card-body h3 a {
  color: var(--text-heading);
  transition: color 0.3s;
}

.card-body h3 a:hover { color: var(--primary-light); }

.card-body p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--secondary-light);
}

.read-more {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary-light);
}

.read-more:hover { color: var(--gold); }

/* --- Broker Table --- */
.broker-table-section { padding: 4rem 0; }

.broker-table-wrapper {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--dark-card);
}

.broker-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.broker-table thead {
  background: linear-gradient(180deg, #1f1b17 0%, #171411 100%);
}

.broker-table th {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary-light);
  padding: 1rem 1.2rem;
  text-align: left;
  border-bottom: 2px solid var(--primary-dark);
  white-space: nowrap;
}

.broker-table td {
  padding: 1rem 1.2rem;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}

.broker-table tbody tr { transition: background 0.2s ease; }
.broker-table tbody tr:hover { background: rgba(180,83,9,0.05); }

.broker-table .broker-name {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--text-heading);
}

.broker-table .badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.2rem 0.5rem;
  border-radius: 2px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.badge--gold { background: rgba(245,158,11,0.15); color: var(--gold); border: 1px solid rgba(245,158,11,0.3); }
.badge--green { background: rgba(34,197,94,0.12); color: #22c55e; border: 1px solid rgba(34,197,94,0.3); }
.badge--blue { background: rgba(59,130,246,0.12); color: #3b82f6; border: 1px solid rgba(59,130,246,0.3); }

.broker-table .cta-button {
  font-size: 0.7rem;
  padding: 0.5rem 1rem;
  letter-spacing: 0.08em;
}

/* Stars */
.stars { color: var(--gold); font-size: 0.9rem; letter-spacing: 2px; }

/* --- Article Layout --- */
.article-page { padding: 3rem 0; }

.article-container {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.breadcrumb {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.breadcrumb a { color: var(--secondary-light); }
.breadcrumb a:hover { color: var(--primary-light); }
.breadcrumb span { margin: 0 0.5rem; color: var(--border-light); }

.article-meta {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.article-container h1 {
  font-size: 2.4rem;
  font-weight: 900;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.article-container h2 {
  font-size: 1.6rem;
  font-weight: 700;
  margin: 2.5rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
  position: relative;
}

.article-container h2::before {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 60px;
  height: 2px;
  background: var(--primary);
}

.article-container h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 2rem 0 0.8rem;
}

.article-container p { font-size: 1.05rem; color: var(--text); line-height: 1.8; }

.article-container ul,
.article-container ol {
  margin: 1rem 0 1.5rem 1.5rem;
  line-height: 1.8;
}

.article-container li { margin-bottom: 0.5rem; font-size: 1.02rem; }

.article-container strong { color: var(--text-heading); }

/* Info box */
.info-box {
  background: rgba(180,83,9,0.06);
  border: 1px solid var(--primary-dark);
  border-left: 4px solid var(--primary);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin: 1.5rem 0;
}

.info-box h4 {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary-light);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.info-box p { font-size: 0.95rem; color: var(--text-muted); margin-bottom: 0; }

/* Warning box */
.warning-box {
  background: rgba(220,38,38,0.06);
  border: 1px solid rgba(220,38,38,0.3);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin: 1.5rem 0;
}

.warning-box h4 {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.warning-box p { font-size: 0.95rem; color: var(--text-muted); margin-bottom: 0; }

/* Comparison table in articles */
.comparison-table-wrapper {
  overflow-x: auto;
  margin: 1.5rem 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
}

.comparison-table th {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary-light);
  background: var(--dark-lighter);
  padding: 0.8rem 1rem;
  text-align: left;
  border-bottom: 2px solid var(--primary-dark);
}

.comparison-table td {
  padding: 0.8rem 1rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}

.comparison-table tbody tr:hover { background: rgba(180,83,9,0.04); }

/* Pros/Cons */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 1.5rem 0;
}

.pros, .cons {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.pros { border-top: 3px solid #22c55e; }
.cons { border-top: 3px solid var(--accent); }

.pros h4 { color: #22c55e; }
.cons h4 { color: var(--accent); }

.pros ul, .cons ul { list-style: none; margin-left: 0; }
.pros li::before { content: '+ '; color: #22c55e; font-weight: 700; }
.cons li::before { content: '- '; color: var(--accent); font-weight: 700; }

/* CTA Banner in articles */
.cta-banner {
  background: linear-gradient(135deg, rgba(180,83,9,0.1) 0%, rgba(10,8,6,0.95) 100%);
  border: 1px solid var(--primary-dark);
  border-radius: var(--radius);
  padding: 2rem;
  margin: 2rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary-light), transparent);
}

.cta-banner h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.cta-banner p {
  color: var(--text-muted);
  margin-bottom: 1.2rem;
}

/* --- Risk Disclaimer --- */
.risk-disclaimer {
  background: rgba(220,38,38,0.04);
  border: 1px solid rgba(220,38,38,0.2);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin: 2rem 0;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.risk-disclaimer strong {
  color: var(--accent);
  display: block;
  margin-bottom: 0.3rem;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* --- Footer --- */
.site-footer {
  background: #080705;
  border-top: 1px solid var(--border);
  padding: 3rem 0 0;
  margin-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-brand .logo {
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 300px;
  line-height: 1.6;
}

.footer-links h4 {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary-light);
  margin-bottom: 1rem;
}

.footer-links ul { list-style: none; }

.footer-links li { margin-bottom: 0.6rem; }

.footer-links a {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color 0.3s;
}

.footer-links a:hover { color: var(--primary-light); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.5rem 0;
  text-align: center;
  font-size: 0.8rem;
  color: var(--secondary);
}

.footer-disclaimer {
  max-width: 800px;
  margin: 0 auto 1rem;
  font-size: 0.78rem;
  color: var(--secondary);
  line-height: 1.6;
}

/* --- Back to Top --- */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  background: var(--primary-dark);
  border: 1px solid var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-heading);
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
}

.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--primary); transform: translateY(-3px); }

/* --- TOC (Table of Contents) --- */
.toc {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin: 1.5rem 0 2rem;
}

.toc h4 {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary-light);
  margin-bottom: 0.8rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}

.toc ol {
  margin: 0;
  padding-left: 1.2rem;
}

.toc li {
  margin-bottom: 0.4rem;
  font-size: 0.95rem;
}

.toc a {
  color: var(--text-muted);
  transition: color 0.3s;
}

.toc a:hover { color: var(--primary-light); }

/* --- Responsive --- */
@media (max-width: 992px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero h1 { font-size: 2.4rem; }
  .article-container h1 { font-size: 2rem; }
}

@media (max-width: 768px) {
  .menu-toggle { display: flex; }

  .main-nav {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: #0d0b09;
    border-bottom: 1px solid var(--border);
    padding: 1rem 1.5rem;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
  }

  .main-nav.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 0;
  }

  .main-nav li {
    border-bottom: 1px solid var(--border);
  }

  .main-nav a {
    display: block;
    padding: 0.8rem 0;
    font-size: 0.9rem;
  }

  .hero { padding: 3rem 1rem; }
  .hero h1 { font-size: 1.8rem; }
  .hero p { font-size: 1rem; }

  .cards-grid { grid-template-columns: 1fr; }

  .pros-cons { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }

  .article-container h1 { font-size: 1.7rem; }
  .article-container h2 { font-size: 1.3rem; }

  .section-header h2 { font-size: 1.6rem; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.5rem; }
  .cta-button { font-size: 0.8rem; padding: 0.7rem 1.5rem; }
  .article-container h1 { font-size: 1.4rem; }
  .broker-table { font-size: 0.85rem; }
}

/* --- Animations --- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-in-up {
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}

.fade-in-up:nth-child(2) { animation-delay: 0.1s; }
.fade-in-up:nth-child(3) { animation-delay: 0.2s; }
.fade-in-up:nth-child(4) { animation-delay: 0.3s; }
.fade-in-up:nth-child(5) { animation-delay: 0.4s; }

/* Arch-shaped section divider */
.arch-divider {
  width: 100%;
  height: 40px;
  background: radial-gradient(ellipse at 50% 0%, var(--dark-card) 0%, transparent 70%);
  position: relative;
}

.arch-divider::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 40px;
  border-bottom: 2px solid var(--primary-dark);
  border-radius: 0 0 50% 50%;
}

/* Rating display */
.rating {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.rating-value {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--gold);
  font-size: 1.1rem;
}

.rating-max {
  font-size: 0.8rem;
  color: var(--secondary);
}

/* Number badge for rankings */
.rank-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  border: 1px solid var(--primary-light);
}
