/* ssports — Türk haber sitesi tarzı tasarım sistemi
   Referans: Hürriyet, Sabah, NTV, Milliyet — beyaz zemin, kırmızı SON DAKİKA bandı,
   serif manşetler, sans-serif gövde, BossSports markası: lacivert + altın */

:root {
  /* Ana paleti */
  --bg: #ffffff;
  --bg-soft: #f5f7fa;
  --bg-card: #ffffff;
  --bg-section: #fafbfc;
  --border: #e5e7eb;
  --border-strong: #d1d5db;

  /* Metin */
  --text: #0f172a;
  --text-2: #1f2937;
  --text-dim: #4b5563;
  --text-muted: #6b7280;

  /* Haber sitesi kırmızısı (Hürriyet/Sabah tonu) */
  --news-red: #dc2626;
  --news-red-dark: #b91c1c;

  /* BossSports marka — lacivert + altın (logoya uygun) */
  --brand-blue: #1e3a8a;
  --brand-blue-dark: #1e2f6e;
  --brand-blue-deep: #0f1d4f;
  --brand-gold: #d4af37;
  --brand-gold-dark: #b8941f;
  --brand-gold-light: #f5d77b;

  /* Durum */
  --success: #059669;
  --success-soft: #d1fae5;
  --danger: #dc2626;
  --danger-soft: #fee2e2;
  --warning: #f59e0b;

  --radius: 8px;
  --radius-lg: 12px;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.05);
  --shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 10px 30px rgba(15, 23, 42, 0.12);

  --maxw: 980px;
  --serif: Georgia, "Times New Roman", "Noto Serif", serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

img, svg { max-width: 100%; display: block; }
a { color: var(--brand-blue); text-decoration: none; }
a:hover { text-decoration: underline; }

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 20px;
}

main { padding-bottom: 80px; }
section { padding: 28px 0; }

/* ============== ÜST KIRMIZI BANT (SON DAKİKA) ============== */
.alert-banner {
  background: var(--news-red);
  color: #fff;
  padding: 9px 16px;
  font-weight: 700;
  font-size: 14px;
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  box-shadow: 0 2px 6px rgba(220, 38, 38, 0.25);
}

.alert-banner .pulse {
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
  animation: pulse 1.4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.5); }
}

.alert-banner .badge {
  background: #fff;
  color: var(--news-red);
  padding: 2px 9px;
  border-radius: 3px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
}

.alert-banner time {
  font-variant-numeric: tabular-nums;
  opacity: 0.95;
  font-weight: 600;
  font-size: 13px;
}

/* ============== HEADER ============== */
.site-header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: relative;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand:hover { text-decoration: none; }

.brand-mark {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-text .name {
  font-weight: 900;
  font-size: 20px;
  color: var(--brand-blue);
  letter-spacing: 0.3px;
}

.brand-text .tagline {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 2px;
}

.nav {
  display: none;
  gap: 22px;
  font-size: 14px;
  font-weight: 600;
}

.nav a {
  color: var(--text-2);
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}
.nav a:hover { color: var(--news-red); border-bottom-color: var(--news-red); text-decoration: none; }
.nav a.active { color: var(--news-red); border-bottom-color: var(--news-red); }

@media (min-width: 720px) {
  .nav { display: flex; }
}

/* ============== KATEGORİ BANDI ============== */
.cat-bar {
  background: #fff;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.cat-bar .container {
  display: flex;
  gap: 4px;
  white-space: nowrap;
  padding-top: 0;
  padding-bottom: 0;
}

.cat-bar a {
  padding: 12px 14px;
  color: var(--text-2);
  font-weight: 600;
  border-bottom: 3px solid transparent;
}

.cat-bar a:hover { color: var(--news-red); border-bottom-color: var(--news-red); text-decoration: none; }
.cat-bar a.active { color: var(--news-red); border-bottom-color: var(--news-red); }

/* ============== ARTICLE / HERO ============== */
.breadcrumb {
  font-size: 12px;
  color: var(--text-muted);
  margin: 18px 0 8px;
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb .sep { margin: 0 6px; opacity: 0.6; }

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--news-red);
  color: #fff;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 1.2px;
  padding: 5px 10px;
  border-radius: 3px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.hero { padding: 12px 0 18px; }

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(28px, 5vw, 44px);
  line-height: 1.18;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}

.hero h1 .accent { color: var(--news-red); }

.hero .lead {
  font-size: 18px;
  color: var(--text-2);
  max-width: 820px;
  margin: 14px 0 18px;
  line-height: 1.6;
  border-left: 4px solid var(--brand-gold);
  padding-left: 14px;
  font-weight: 500;
}

.byline {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 13px;
  color: var(--text-muted);
  margin: 12px 0 22px;
  padding: 12px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.byline .author { color: var(--text-2); font-weight: 700; }
.byline .dot { opacity: 0.4; }

/* ============== CTA BUTON (Marka mavi+altın) ============== */
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--brand-blue);
  color: #fff;
  font-weight: 800;
  font-size: 16px;
  padding: 14px 26px;
  border-radius: var(--radius);
  border: 2px solid var(--brand-blue);
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(30, 58, 138, 0.25);
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
  min-height: 50px;
  position: relative;
  overflow: hidden;
}

.cta-btn::before {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--brand-gold);
}

.cta-btn:hover, .cta-btn:focus-visible {
  background: var(--brand-blue-dark);
  border-color: var(--brand-blue-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(30, 58, 138, 0.35);
  outline: none;
  text-decoration: none;
  color: #fff;
}

.cta-btn:active { transform: translateY(0); }

.cta-btn.large {
  font-size: 18px;
  padding: 18px 34px;
  min-height: 58px;
  width: 100%;
  max-width: 440px;
}

.cta-btn .arrow {
  font-size: 1.2em;
  transition: transform 0.2s ease;
  color: var(--brand-gold-light);
}

.cta-btn:hover .arrow { transform: translateX(4px); }

/* ============== KARTLAR / KUTULAR ============== */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  margin-bottom: 18px;
  box-shadow: var(--shadow-sm);
}

.card h2 { font-family: var(--serif); font-size: 22px; margin-bottom: 12px; color: var(--text); }
.card h3 { font-size: 17px; margin-bottom: 8px; color: var(--text-2); }
.card p { color: var(--text-2); margin-bottom: 8px; }

/* Bilgi kutusu (V1 risk, V3 duyuru) */
.risk-box {
  background: var(--danger-soft);
  border: 1px solid #fecaca;
  border-left: 5px solid var(--news-red);
  padding: 18px 22px;
  border-radius: var(--radius);
  margin: 24px 0;
}

.risk-box h3 {
  color: var(--news-red-dark);
  font-size: 17px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-weight: 800;
}

.risk-box p, .risk-box li { color: #7f1d1d; font-size: 15px; }
.risk-box ul { margin-top: 8px; padding-left: 22px; }
.risk-box ul li { margin-bottom: 4px; }

.notice-box {
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-left: 5px solid var(--brand-blue);
  padding: 22px 24px;
  border-radius: var(--radius);
  margin: 26px 0;
}

.notice-box .label {
  display: inline-block;
  background: var(--brand-blue);
  color: #fff;
  font-size: 11px;
  letter-spacing: 1.2px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 3px;
  margin-bottom: 12px;
}

.notice-box h2 { font-family: var(--serif); font-size: 24px; margin-bottom: 10px; color: #1e3a8a; }
.notice-box p { color: #1e3a8a; font-size: 16px; line-height: 1.7; }

/* ============== TIMELINE ============== */
.timeline {
  list-style: none;
  border-left: 3px solid var(--border-strong);
  padding: 4px 0 4px 24px;
  margin: 24px 0 24px 8px;
}

.timeline li {
  position: relative;
  padding: 14px 0;
}

.timeline li::before {
  content: "";
  position: absolute;
  left: -34px;
  top: 22px;
  width: 14px;
  height: 14px;
  background: var(--brand-blue);
  border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: 0 0 0 1px var(--border-strong);
}

.timeline li.latest::before {
  background: var(--news-red);
  box-shadow: 0 0 0 1px var(--news-red), 0 0 0 5px rgba(220, 38, 38, 0.18);
}

.timeline .date {
  font-size: 12px;
  color: var(--news-red);
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 4px;
}

.timeline .text {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.6;
}

/* ============== KARŞILAŞTIRMA TABLOSU (V2) ============== */
.compare-wrapper { overflow-x: auto; -webkit-overflow-scrolling: touch; }

.compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin: 20px 0;
  font-size: 15px;
  min-width: 500px;
  box-shadow: var(--shadow-sm);
}

.compare-table th, .compare-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  text-align: left;
}

.compare-table thead th {
  background: var(--bg-soft);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.3px;
  color: var(--text);
}

.compare-table thead th.boss { color: var(--brand-blue); position: relative; }
.compare-table thead th.boss::after {
  content: "";
  position: absolute;
  bottom: 0; left: 16px; right: 16px;
  height: 3px;
  background: var(--brand-gold);
}
.compare-table thead th.old { color: var(--text-muted); }

.compare-table tbody td:first-child { color: var(--text-2); font-weight: 600; font-size: 14px; }
.compare-table tbody tr:hover { background: var(--bg-soft); }
.compare-table .yes { color: var(--success); font-weight: 700; }
.compare-table .no { color: var(--news-red); }
.compare-table tr:last-child td { border-bottom: none; }

/* ============== 3-SÜTUN AVANTAJ ============== */
.three-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin: 20px 0;
}

@media (min-width: 720px) {
  .three-col { grid-template-columns: repeat(3, 1fr); }
}

.feat {
  background: #fff;
  border: 1px solid var(--border);
  padding: 22px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--brand-gold);
}

.feat .icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 12px;
  color: var(--brand-blue);
}

.feat h3 { font-size: 17px; margin-bottom: 6px; color: var(--text); }
.feat p { font-size: 14px; color: var(--text-dim); }

/* ============== TESTIMONIAL ============== */
.testimonials {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin: 20px 0;
}

@media (min-width: 720px) {
  .testimonials { grid-template-columns: repeat(3, 1fr); }
}

.tcard {
  background: var(--bg-section);
  border: 1px solid var(--border);
  padding: 18px;
  border-radius: var(--radius);
  font-size: 14px;
}

.tcard .stars { color: var(--brand-gold); margin-bottom: 8px; letter-spacing: 2px; font-size: 16px; }
.tcard p { color: var(--text-2); margin-bottom: 10px; line-height: 1.55; font-style: italic; }
.tcard .who { color: var(--text-muted); font-size: 12px; font-weight: 600; }

/* ============== FAQ ============== */
.faq details {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 18px;
  margin-bottom: 10px;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}

.faq summary {
  font-weight: 700;
  font-size: 15px;
  color: var(--text);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-size: 22px;
  font-weight: 300;
  color: var(--brand-blue);
  transition: transform 0.2s;
}
.faq details[open] { border-color: var(--brand-blue); }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p {
  margin-top: 12px;
  color: var(--text-dim);
  font-size: 14px;
  line-height: 1.6;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

/* ============== CTA SECTION (BossSports geçiş kartı) ============== */
.cta-section {
  background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-blue-deep) 100%);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  margin: 32px 0;
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--brand-gold);
}

.cta-section h2 {
  font-family: var(--serif);
  font-size: 28px;
  margin-bottom: 10px;
  color: #fff;
}

.cta-section .sub {
  color: var(--brand-gold-light);
  font-size: 15px;
  margin-bottom: 18px;
}

.cta-section .checks {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin: 16px 0 24px;
  font-size: 14px;
  color: #e0e7ff;
}

.cta-section .checks li::before {
  content: "✓";
  margin-right: 6px;
  color: var(--brand-gold);
  font-weight: 800;
}

.cta-section .cta-btn {
  background: var(--brand-gold);
  border-color: var(--brand-gold);
  color: #0f1d4f;
}
.cta-section .cta-btn::before { background: #0f1d4f; }
.cta-section .cta-btn .arrow { color: #0f1d4f; }
.cta-section .cta-btn:hover {
  background: var(--brand-gold-dark);
  border-color: var(--brand-gold-dark);
  color: #0f1d4f;
}

/* ============== GEÇİŞ HARITASI (V3) ============== */
.migration-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin: 24px 0;
}

@media (min-width: 720px) {
  .migration-grid { grid-template-columns: 1fr 1fr; }
}

.mig-col {
  background: #fff;
  border: 1px solid var(--border);
  padding: 22px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.mig-col.old { background: var(--bg-section); border-color: #fecaca; }
.mig-col.old h3 {
  color: var(--news-red-dark);
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  font-family: var(--serif);
  font-size: 22px;
}

.mig-col.new {
  border-color: var(--brand-blue);
  border-top: 4px solid var(--brand-gold);
}
.mig-col.new h3 { color: var(--brand-blue); font-family: var(--serif); font-size: 22px; }

.mig-col ul { list-style: none; padding: 0; margin-top: 12px; }
.mig-col ul li {
  padding: 9px 0;
  border-bottom: 1px dashed var(--border);
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.5;
}
.mig-col ul li:last-child { border-bottom: none; }
.mig-col.new ul li { color: var(--text-2); }

/* ============== GERİ SAYIM (V3) ============== */
.countdown {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 22px 0;
  flex-wrap: wrap;
}

.cd-cell {
  background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-blue-deep) 100%);
  color: #fff;
  border-radius: var(--radius);
  padding: 16px 20px;
  min-width: 84px;
  text-align: center;
  border-top: 3px solid var(--brand-gold);
  box-shadow: var(--shadow);
}

.cd-cell strong {
  display: block;
  font-size: 32px;
  font-weight: 800;
  color: var(--brand-gold);
  font-variant-numeric: tabular-nums;
  line-height: 1;
  font-family: var(--serif);
}

.cd-cell span {
  display: block;
  font-size: 11px;
  color: #c7d2fe;
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-weight: 600;
}

/* ============== STICKY MOBILE CTA ============== */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  display: flex;
  gap: 10px;
  align-items: center;
  z-index: 50;
  transform: translateY(110%);
  transition: transform 0.25s ease;
  box-shadow: 0 -4px 18px rgba(15, 23, 42, 0.08);
}

.sticky-cta.show { transform: translateY(0); }
.sticky-cta .label { flex: 1; font-size: 13px; color: var(--text-2); }
.sticky-cta .label strong { color: var(--brand-blue); }
.sticky-cta .cta-btn { padding: 11px 18px; font-size: 14px; min-height: 44px; }

@media (min-width: 720px) { .sticky-cta { display: none; } }

/* ============== FOOTER ============== */
.site-footer {
  background: var(--bg-section);
  border-top: 1px solid var(--border);
  padding: 32px 0 24px;
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 40px;
}

.site-footer .footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.site-footer .footer-brand img { width: 36px; height: 36px; }
.site-footer .footer-brand strong { color: var(--brand-blue); font-size: 16px; }

.site-footer p { margin-bottom: 6px; }

.disclaimer {
  font-size: 11px;
  color: var(--text-muted);
  max-width: 760px;
  margin: 14px auto 0;
  line-height: 1.6;
  padding: 0 16px;
}

/* ============== UTILITY ============== */
.center { text-align: center; }
.section-title {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--brand-gold);
}

.section-title .icon {
  width: 22px;
  height: 22px;
  color: var(--news-red);
}

.muted { color: var(--text-muted); font-size: 13px; }

/* Manşet üstü "Yazı Spor / Son Dakika" şerit */
.tag-pill {
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 3px;
  background: var(--bg-soft);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
}

/* ============== SOSYAL MEDYA BUTONLARI ============== */
.social-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 14px 0;
  align-items: center;
}

.social-row .label {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 600;
  margin-right: 4px;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
  border: 1.5px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}

.social-btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow);
  text-decoration: none;
}

.social-btn svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.social-btn.telegram {
  background: #229ED9;
  color: #fff;
}
.social-btn.telegram:hover { background: #1a87b8; color: #fff; }

.social-btn.twitter {
  background: #000;
  color: #fff;
}
.social-btn.twitter:hover { background: #1a1a1a; color: #fff; }

.social-btn.web {
  background: var(--brand-gold);
  color: var(--brand-blue-deep);
}
.social-btn.web:hover { background: var(--brand-gold-dark); color: var(--brand-blue-deep); }

/* Sosyal kart bölümü (büyük) */
.social-section {
  background: linear-gradient(135deg, #fafbfc 0%, #f1f5f9 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px 24px;
  margin: 28px 0;
  text-align: center;
  border-top: 3px solid var(--brand-gold);
}

.social-section h3 {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--brand-blue);
  margin-bottom: 6px;
}

.social-section p {
  color: var(--text-dim);
  font-size: 14px;
  margin-bottom: 16px;
}

.social-section .social-row {
  justify-content: center;
  gap: 12px;
}

.social-section .social-btn {
  padding: 12px 20px;
  font-size: 14px;
}

.social-section .social-btn svg {
  width: 18px;
  height: 18px;
}

/* Footer sosyal ikonlar */
.footer-social {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 14px 0;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-2);
  transition: all 0.15s;
}

.footer-social a:hover {
  background: var(--brand-blue);
  color: #fff;
  border-color: var(--brand-blue);
  text-decoration: none;
  transform: translateY(-1px);
}

.footer-social svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}
