/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --bg: #0d0d0d;
  --bg2: #111111;
  --bg3: #1a1a1a;
  --bg4: #1e1e1e;
  --red: #e63946;
  --red-hover: #ff4d5a;
  --text: #f0f0f0;
  --text2: #b0b0b0;
  --text3: #888;
  --border: #2a2a2a;
  --border2: #333;
  --shadow: 0 4px 24px rgba(0,0,0,0.5);
  --radius: 10px;
  --font: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}
html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--text); font-family: var(--font); font-size: 16px; line-height: 1.6; }
a { color: var(--red); text-decoration: none; }
a:hover { color: var(--red-hover); }
img { max-width: 100%; }

/* ===== LAYOUT ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ===== NAVBAR ===== */
.site-nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(13,13,13,0.95); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-container {
  max-width: 1200px; margin: 0 auto; padding: 0 20px;
  display: flex; align-items: center; justify-content: space-between; height: 60px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 18px; color: var(--text); text-decoration: none;
}
.nav-logo:hover { color: var(--text); }
.nav-links { display: flex; list-style: none; gap: 6px; }
.nav-links a {
  color: var(--text2); font-size: 14px; font-weight: 500;
  padding: 6px 14px; border-radius: 8px; transition: all 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); background: var(--bg3); }
.nav-hamburger { display: none; background: none; border: none; cursor: pointer; padding: 8px; flex-direction: column; gap: 5px; }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--text2); border-radius: 2px; transition: 0.3s; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 22px; border-radius: 8px; font-weight: 600; font-size: 14px;
  border: none; cursor: pointer; transition: all 0.2s; text-decoration: none;
}
.btn-primary { background: var(--red); color: #fff; }
.btn-primary:hover { background: var(--red-hover); color: #fff; transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--text); border: 1.5px solid var(--border2); }
.btn-outline:hover { border-color: var(--red); color: var(--red); }
.btn-sm { padding: 6px 14px; font-size: 13px; }
.btn-lg { padding: 14px 28px; font-size: 16px; }
.btn-full { width: 100%; justify-content: center; margin-top: 16px; }

/* ===== HERO ===== */
.hero {
  position: relative; padding: 80px 0; overflow: hidden;
  background: linear-gradient(135deg, #0d0d0d 0%, #1a0505 50%, #0d0d0d 100%);
}
.hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(230,57,70,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 1; max-width: 700px; }
.hero-badge {
  display: inline-block; padding: 6px 14px; border-radius: 20px;
  background: rgba(230,57,70,0.15); border: 1px solid rgba(230,57,70,0.3);
  color: var(--red); font-size: 13px; font-weight: 600; margin-bottom: 20px;
}
.hero-title { font-size: clamp(30px, 5vw, 52px); font-weight: 800; line-height: 1.2; margin-bottom: 16px; }
.text-red { color: var(--red); }
.hero-desc { font-size: 17px; color: var(--text2); margin-bottom: 32px; max-width: 560px; }
.hero-stats { display: flex; flex-wrap: wrap; gap: 32px; margin-bottom: 32px; }
.hero-stat strong { display: block; font-size: 28px; font-weight: 800; color: var(--red); }
.hero-stat span { font-size: 13px; color: var(--text2); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* ===== PAGE HERO ===== */
.page-hero {
  background: var(--bg2); border-bottom: 1px solid var(--border);
  padding: 50px 0 40px;
}
.page-hero h1 { font-size: 32px; font-weight: 800; margin-bottom: 10px; }
.page-hero p { color: var(--text2); max-width: 600px; }

/* ===== SECTION ===== */
.section { padding: 60px 0; }
.section-dark { background: var(--bg2); }
.section-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 32px; }
.section-header h2 { font-size: 22px; font-weight: 700; }
.section-title-sm { font-size: 18px; font-weight: 700; margin-bottom: 20px; }
.see-all { color: var(--red); font-size: 14px; font-weight: 500; }

/* ===== BONUS CARDS ===== */
.bonus-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
.bonus-grid-full { grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); }
.bonus-card {
  background: var(--bg3); border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; transition: transform 0.2s, border-color 0.2s;
}
.bonus-card:hover { transform: translateY(-3px); border-color: var(--border2); }
.bonus-card-img { height: 160px; overflow: hidden; }
.bonus-card-img img { width: 100%; height: 100%; object-fit: cover; }
.bonus-card-body { padding: 16px; }
.bonus-card-top { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; flex-wrap: wrap; }
.site-mini-logo { width: 24px; height: 24px; border-radius: 4px; object-fit: contain; }
.bonus-title { font-size: 15px; font-weight: 600; margin-bottom: 8px; line-height: 1.4; }
.bonus-title a { color: var(--text); }
.bonus-title a:hover { color: var(--red); }
.bonus-title-sm { font-size: 14px; }
.bonus-amount { color: var(--red); font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.bonus-desc { font-size: 13px; color: var(--text2); margin-bottom: 12px; }
.bonus-card-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 12px; }
.site-link { font-size: 12px; color: var(--text3); }

/* ===== BONUS BADGES ===== */
.bonus-type-badge { font-size: 11px; font-weight: 600; padding: 2px 8px; border-radius: 4px; text-transform: uppercase; }
.badge-deneme { background: rgba(230,57,70,0.2); color: #ff6b75; }
.badge-freespin { background: rgba(34,197,94,0.2); color: #4ade80; }
.badge-hosgeldin { background: rgba(59,130,246,0.2); color: #60a5fa; }
.badge-kayip { background: rgba(245,158,11,0.2); color: #fbbf24; }
.badge-genel { background: rgba(139,92,246,0.2); color: #a78bfa; }
.featured-badge { font-size: 11px; font-weight: 600; padding: 2px 8px; border-radius: 4px; background: rgba(251,191,36,0.15); color: #fbbf24; }

/* ===== SITES GRID ===== */
.sites-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); gap: 16px; }
.site-card {
  background: var(--bg3); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 20px 12px; display: flex; flex-direction: column; align-items: center; gap: 10px;
  text-align: center; transition: all 0.2s; text-decoration: none; color: var(--text);
}
.site-card:hover { border-color: var(--red); transform: translateY(-2px); color: var(--text); }
.site-card-logo { width: 56px; height: 56px; object-fit: contain; border-radius: 8px; }
.site-card-placeholder {
  width: 56px; height: 56px; border-radius: 8px; background: var(--red);
  display: flex; align-items: center; justify-content: center; font-size: 24px; font-weight: 700; color: #fff;
}
.site-card-name { font-size: 12px; font-weight: 600; color: var(--text2); }

/* ===== SITES SEARCH ===== */
.sites-search-form { margin-bottom: 24px; }
.search-wrap { display: flex; gap: 10px; flex-wrap: wrap; }
.search-input {
  flex: 1; min-width: 220px; padding: 10px 16px; border-radius: 8px;
  background: var(--bg3); border: 1px solid var(--border2); color: var(--text);
  font-size: 14px; outline: none; transition: border-color 0.2s;
}
.search-input:focus { border-color: var(--red); }
.sites-result-info { font-size: 13px; color: var(--text3); margin-bottom: 20px; }

/* ===== SITES CARDS GRID ===== */
.sites-cards-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 16px; margin-bottom: 32px; }
.site-full-card {
  background: var(--bg3); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 18px; display: flex; flex-direction: column; gap: 12px;
  transition: border-color 0.2s, transform 0.2s;
}
.site-full-card:hover { border-color: var(--border2); transform: translateY(-2px); }
.site-full-card-header { display: flex; align-items: center; gap: 12px; }
.site-full-logo-wrap { width: 48px; height: 48px; flex-shrink: 0; }
.site-full-logo { width: 48px; height: 48px; object-fit: contain; border-radius: 8px; }
.site-full-placeholder {
  width: 48px; height: 48px; border-radius: 8px; background: var(--red);
  display: flex; align-items: center; justify-content: center; font-size: 20px; font-weight: 700; color: #fff;
}
.site-full-meta { flex: 1; min-width: 0; }
.site-full-name { font-size: 15px; font-weight: 700; margin-bottom: 5px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.site-full-badges { display: flex; gap: 6px; flex-wrap: wrap; }
.site-bonus-pill { font-size: 11px; font-weight: 600; padding: 2px 8px; border-radius: 10px; background: rgba(230,57,70,0.15); color: var(--red); }
.site-featured-pill { font-size: 11px; font-weight: 600; padding: 2px 8px; border-radius: 10px; background: rgba(251,191,36,0.15); color: #fbbf24; }
.site-full-desc { font-size: 12px; color: var(--text3); line-height: 1.5; flex: 1; }
.site-full-actions { display: flex; gap: 8px; margin-top: auto; }
.site-full-actions .btn { flex: 1; justify-content: center; }

/* ===== SITE CHIPS GRID (Homepage) ===== */
.site-chips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px;
}
.site-chip-card {
  display: flex; align-items: center; gap: 12px;
  background: var(--bg3); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 14px 16px; text-decoration: none; color: var(--text);
  transition: border-color 0.2s, transform 0.2s, background 0.2s;
}
.site-chip-card:hover { border-color: var(--red); transform: translateY(-2px); background: var(--bg4); color: var(--text); }
.site-chip-logo-wrap { width: 40px; height: 40px; flex-shrink: 0; }
.site-chip-logo { width: 40px; height: 40px; object-fit: contain; border-radius: 8px; }
.site-chip-placeholder {
  width: 40px; height: 40px; border-radius: 8px; background: var(--red);
  display: flex; align-items: center; justify-content: center; font-size: 18px; font-weight: 700; color: #fff;
}
.site-chip-info { flex: 1; min-width: 0; }
.site-chip-name { display: block; font-size: 14px; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.site-chip-bonus { display: block; font-size: 12px; color: var(--text3); margin-top: 2px; }
.site-chip-arrow { color: var(--text3); font-size: 16px; flex-shrink: 0; transition: color 0.2s; }
.site-chip-card:hover .site-chip-arrow { color: var(--red); }

/* ===== SITES LIST ===== */
.sites-list { display: flex; flex-direction: column; gap: 12px; }
.site-row {
  background: var(--bg3); border: 1px solid var(--border); border-radius: var(--radius);
  display: flex; align-items: center; gap: 16px; padding: 16px; transition: border-color 0.2s;
}
.site-row:hover { border-color: var(--border2); }
.site-row-logo { width: 56px; flex-shrink: 0; }
.site-row-logo img { width: 56px; height: 56px; object-fit: contain; border-radius: 8px; }
.site-placeholder-sm {
  width: 56px; height: 56px; border-radius: 8px; background: var(--bg4);
  display: flex; align-items: center; justify-content: center; font-size: 20px; font-weight: 700; color: var(--red);
}
.site-row-info { flex: 1; min-width: 0; }
.site-row-info h3 { font-size: 15px; font-weight: 600; margin-bottom: 4px; }
.site-row-info h3 a { color: var(--text); }
.site-row-info h3 a:hover { color: var(--red); }
.site-row-info p { font-size: 13px; color: var(--text2); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.site-row-meta { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.bonus-count-badge { background: var(--bg4); padding: 3px 10px; border-radius: 12px; font-size: 12px; color: var(--text2); }
.featured-mini { font-size: 16px; }
.site-row-action { flex-shrink: 0; }

/* ===== SITE DETAIL ===== */
.site-detail-header { display: flex; align-items: center; gap: 20px; }
.site-detail-logo { width: 80px; height: 80px; object-fit: contain; border-radius: 12px; background: var(--bg3); padding: 8px; }
.site-detail-header h1 { font-size: 28px; font-weight: 800; margin-bottom: 8px; }
.site-ext-link { color: var(--red); font-size: 14px; font-weight: 500; }
.site-desc-box { background: var(--bg3); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; margin-bottom: 32px; }
.site-desc-box h2 { font-size: 16px; font-weight: 700; margin-bottom: 10px; }
.site-desc-box p { color: var(--text2); }
.site-article { margin-bottom: 40px; }
.site-article h2 { font-size: 20px; font-weight: 700; margin: 28px 0 10px; color: var(--text1); }
.site-article h2:first-child { margin-top: 0; }
.site-article p { color: var(--text2); line-height: 1.75; margin-bottom: 14px; }
.site-article ul.article-bonus-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 8px; margin-bottom: 14px; }
.site-article ul.article-bonus-list li { background: var(--bg3); border: 1px solid var(--border); border-radius: 8px; padding: 10px 14px; color: var(--text2); font-size: 14px; line-height: 1.6; }
.site-social-links { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 32px; }
.social-link { display: inline-flex; align-items: center; gap: 6px; padding: 7px 16px; border-radius: 8px; font-size: 13px; font-weight: 600; text-decoration: none; transition: opacity .2s; }
.social-link:hover { opacity: .8; }
.social-tg { background: #229ED9; color: #fff; }
.social-tw { background: #000; color: #fff; }
.social-ig { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); color: #fff; }

/* ===== BONUS DETAIL ===== */
.bonus-detail-grid { display: grid; grid-template-columns: 1fr 300px; gap: 32px; align-items: start; }
.bonus-detail-card { background: var(--bg3); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.bonus-detail-img { width: 100%; max-height: 280px; object-fit: cover; }
.bonus-detail-body { padding: 24px; }
.bonus-detail-meta { display: flex; gap: 8px; margin-bottom: 12px; flex-wrap: wrap; }
.bonus-detail-title { font-size: 22px; font-weight: 800; margin-bottom: 12px; }
.bonus-detail-amount { font-size: 26px; font-weight: 800; color: var(--red); margin-bottom: 16px; }
.bonus-detail-desc { color: var(--text2); margin-bottom: 16px; border-top: 1px solid var(--border); padding-top: 16px; }
.bonus-code-box {
  background: var(--bg4); border: 1px dashed var(--border2); border-radius: 8px;
  padding: 12px 16px; display: flex; align-items: center; gap: 12px; margin-bottom: 16px; flex-wrap: wrap;
}
.bonus-code-label { font-size: 12px; color: var(--text2); }
.bonus-code-val { font-size: 16px; font-weight: 700; color: var(--red); flex: 1; }
.bonus-terms { margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--border); }
.bonus-terms h4 { font-size: 14px; font-weight: 600; margin-bottom: 8px; }
.bonus-terms p { font-size: 13px; color: var(--text2); }
.site-info-card {
  background: var(--bg3); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 20px; display: flex; gap: 16px; align-items: flex-start; margin-top: 16px;
}
.site-info-logo { width: 48px; height: 48px; object-fit: contain; border-radius: 8px; flex-shrink: 0; }
.site-info-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.site-info-card p { font-size: 13px; color: var(--text2); margin-bottom: 12px; }
.bonus-detail-sidebar { background: var(--bg3); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; }
.bonus-detail-sidebar h3 { font-size: 14px; font-weight: 700; margin-bottom: 16px; }
.related-bonus-card {
  display: flex; gap: 12px; align-items: center; padding: 12px;
  border-radius: 8px; margin-bottom: 8px; background: var(--bg4); text-decoration: none; color: var(--text);
  transition: background 0.2s;
}
.related-bonus-card:hover { background: var(--border); color: var(--text); }
.related-bonus-card img { width: 36px; height: 36px; object-fit: contain; border-radius: 4px; }
.related-title { font-size: 13px; font-weight: 500; }
.related-site { font-size: 12px; color: var(--text3); }

/* ===== SEO CONTENT ===== */
.seo-content {
  background: var(--bg3); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; max-width: 800px;
}
.seo-content h2 { font-size: 20px; font-weight: 700; margin-bottom: 12px; }
.seo-content h3 { font-size: 16px; font-weight: 700; margin: 20px 0 8px; }
.seo-content p { color: var(--text2); margin-bottom: 8px; }

/* ===== PAGINATION ===== */
.pagination { display: flex; gap: 8px; justify-content: center; margin-top: 32px; flex-wrap: wrap; }
.page-btn { padding: 8px 14px; border-radius: 8px; background: var(--bg3); border: 1px solid var(--border); color: var(--text2); font-size: 14px; text-decoration: none; transition: all 0.2s; }
.page-btn:hover, .page-btn.active { background: var(--red); border-color: var(--red); color: #fff; }

/* ===== EMPTY STATE ===== */
.empty-state { text-align: center; padding: 60px 20px; }
.empty-icon { font-size: 48px; margin-bottom: 16px; }
.empty-state h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.empty-state p { color: var(--text2); }

/* ===== FOOTER ===== */
.site-footer { background: var(--bg2); border-top: 1px solid var(--border); padding: 48px 0 24px; }
.footer-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 32px; }
.footer-logo { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 16px; color: var(--text); margin-bottom: 12px; }
.footer-brand p { font-size: 13px; color: var(--text2); max-width: 280px; }
.footer-links h4 { font-size: 13px; font-weight: 700; color: var(--text2); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 14px; }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { font-size: 14px; color: var(--text3); }
.footer-links a:hover { color: var(--text); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 20px; }
.footer-bottom p { font-size: 12px; color: var(--text3); }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  /* Container padding artır → yatay scroll engelle */
  .container { padding: 0 16px; }
  .nav-container { padding: 0 16px; }
  .footer-container { padding: 0 16px; }

  /* Hamburger touch target 48px */
  .nav-hamburger {
    display: flex;
    min-width: 48px; min-height: 48px;
    align-items: center; justify-content: center; padding: 0;
  }
  .nav-links {
    display: none; position: absolute; top: 60px; left: 0; right: 0;
    background: var(--bg2); border-bottom: 1px solid var(--border);
    flex-direction: column; padding: 12px 16px; gap: 4px;
  }
  .nav-links.open { display: flex; }
  /* Nav linkleri touch target 48px */
  .nav-links a { padding: 12px 14px; min-height: 48px; display: flex; align-items: center; }

  /* Hero LCP iyileştirme */
  .hero { padding: 40px 0; }
  .hero-stats { gap: 20px; }
  .hero-stat strong { font-size: 22px; }

  /* Butonlar touch target 48px */
  .btn { min-height: 48px; padding: 12px 22px; }
  .btn-sm { min-height: 40px; padding: 8px 14px; }

  /* Bonus grid yatay scroll fix */
  .bonus-grid { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); }
  .bonus-grid-full { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); }

  /* Sayfa linkleri touch target */
  .page-btn { min-height: 48px; display: inline-flex; align-items: center; justify-content: center; }

  .bonus-detail-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .site-row { flex-wrap: wrap; }
  .site-row-action { width: 100%; }
}

@media (max-width: 480px) {
  .container { padding: 0 12px; }
  .bonus-grid { grid-template-columns: 1fr; }
  .sites-grid { grid-template-columns: repeat(3, 1fr); }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  /* Site chips tek sütun */
  .site-chips-grid { grid-template-columns: 1fr; }
  /* Küçük ekranda sites-cards-grid */
  .sites-cards-grid { grid-template-columns: 1fr; }
}

/* ===== BOTTOM NAVIGATION ===== */
.bottom-nav {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: rgba(17,17,17,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--border);
  z-index: 200;
  padding-bottom: env(safe-area-inset-bottom, 0px);
}
.bottom-nav-item {
  flex: 1;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 3px; padding: 8px 2px; min-height: 56px;
  color: var(--text3); text-decoration: none;
  font-size: 10px; font-weight: 600; letter-spacing: 0.02em;
  transition: color 0.18s;
  position: relative;
}
.bottom-nav-item svg { width: 22px; height: 22px; flex-shrink: 0; transition: transform 0.18s; }
.bottom-nav-item.active { color: var(--red); }
.bottom-nav-item.active svg { transform: scale(1.1); }
.bottom-nav-item.active::before {
  content: '';
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 32px; height: 2px; border-radius: 0 0 3px 3px;
  background: var(--red);
}
.bottom-nav-item:active svg { transform: scale(0.9); }

@media (max-width: 768px) {
  .bottom-nav { display: flex; }
  body { padding-bottom: calc(60px + env(safe-area-inset-bottom, 0px)); }
  .site-footer { margin-bottom: 0; }
}

/* ===== SCREEN READER ONLY ===== */
.sr-only { position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0; }

/* ===== SKIP LINK ===== */
.skip-link {
  position: absolute; top: -100px; left: 0; z-index: 10000;
  background: var(--red); color: #fff; padding: 10px 20px;
  font-weight: 600; border-radius: 0 0 8px 0; transition: top 0.15s;
}
.skip-link:focus { top: 0; color: #fff; }

/* ===== FOCUS & A11Y ===== */
:focus-visible { outline: 2px solid var(--red); outline-offset: 3px; border-radius: 4px; }
a:focus-visible { color: var(--red-hover); }
button:focus-visible { outline: 2px solid var(--red); outline-offset: 3px; }

/* ===== CONTRAST FIX ===== */
.footer-links a { font-size: 14px; color: var(--text2); }
.footer-bottom p { font-size: 12px; color: var(--text2); }
.breadcrumb-item a { color: var(--text2); }

/* ===== CMS PAGES ===== */
.cms-page { max-width: 800px; }
.cms-page h1 { font-size: 28px; font-weight: 800; margin-bottom: 24px; }
.cms-content { color: var(--text2); line-height: 1.8; }
.cms-content h2 { font-size: 20px; font-weight: 700; color: var(--text); margin: 28px 0 10px; }
.cms-content h3 { font-size: 17px; font-weight: 700; color: var(--text); margin: 20px 0 8px; }
.cms-content p { margin-bottom: 14px; }
.cms-content ul, .cms-content ol { margin: 0 0 14px 20px; }
.cms-content li { margin-bottom: 6px; }
.cms-content strong { color: var(--text); }
.cms-content a { color: var(--red); }
.cms-content a:hover { color: var(--red-hover); }

/* ===== BREADCRUMB ===== */
.breadcrumb-nav { background: var(--bg2); border-bottom: 1px solid var(--border); padding: 10px 0; }
.breadcrumb-list { display: flex; align-items: center; flex-wrap: wrap; gap: 4px; list-style: none; font-size: 13px; }
.breadcrumb-item { display: flex; align-items: center; gap: 4px; }
.breadcrumb-item a { color: var(--text3); text-decoration: none; transition: color 0.15s; }
.breadcrumb-item a:hover { color: var(--red); }
.breadcrumb-item span:not(.breadcrumb-sep) { color: var(--text2); font-weight: 500; }
.breadcrumb-sep { color: var(--text3); font-size: 11px; }
