/* ==========================================================================
   DIGISPOR - Spor Haber Portalı Özel Stilleri
   Tasarım: Modern, dinamik, yüksek kontrastlı spor portalı (Digispor esintili)
   ========================================================================== */

:root {
  --sp-primary: #d04400;
  --sp-primary-hover: #b33900;
  --sp-primary-light: rgba(208, 68, 0, 0.1);
  --sp-dark: #12161a;
  --sp-dark-surface: #1a2027;
  --sp-card-bg: #ffffff;
  --sp-bg: #f4f6f8;
  --sp-text: #1e242b;
  --sp-text-muted: #64748b;
  --sp-border: #e2e8f0;
  --sp-accent-live: #e63946;
  --sp-font-head: 'Montserrat', system-ui, -apple-system, sans-serif;
  --sp-font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --sp-radius: 10px;
  --sp-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
  --sp-shadow-hover: 0 10px 25px rgba(0, 0, 0, 0.12);
  --sp-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-bs-theme="dark"] {
  --sp-bg: #0b0e12;
  --sp-card-bg: #151a21;
  --sp-dark-surface: #1e242d;
  --sp-text: #f1f5f9;
  --sp-text-muted: #94a3b8;
  --sp-border: #27303c;
  --sp-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
  --sp-shadow-hover: 0 10px 28px rgba(0, 0, 0, 0.5);
}

body {
  font-family: var(--sp-font-body);
  background-color: var(--sp-bg);
  color: var(--sp-text);
  line-height: 1.6;
  overflow-x: hidden;
  padding-bottom: 70px; /* Mobil alt bar mesafesi */
}

@media (min-width: 992px) {
  body {
    padding-bottom: 0;
  }
}

h1, h2, h3, h4, h5, h6, .font-head {
  font-family: var(--sp-font-head);
  font-weight: 700;
  letter-spacing: -0.02em;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--sp-transition);
}

/* ==========================================================================
   1. ÜST CANLI SKOR BANDI (LIVE MATCH TICKER)
   ========================================================================== */
.sp-ticker-wrapper {
  background: #0d1117;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 1020;
}

.sp-ticker-header {
  background: var(--sp-primary);
  color: #fff;
  font-family: var(--sp-font-head);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  flex-shrink: 0;
}

.sp-pulse-dot {
  width: 7px;
  height: 7px;
  background-color: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 8px #22c55e;
  animation: pulse-animation 1.5s infinite;
}

@keyframes pulse-animation {
  0% { transform: scale(0.9); opacity: 0.8; }
  50% { transform: scale(1.3); opacity: 1; }
  100% { transform: scale(0.9); opacity: 0.8; }
}

.sp-spin {
  display: inline-block;
  animation: spin-animation 0.8s linear infinite;
}

@keyframes spin-animation {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.sp-ticker-container {
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
  padding: 6px 0;
}

.sp-ticker-container::-webkit-scrollbar {
  display: none;
}

.sp-ticker-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  white-space: nowrap;
  font-size: 0.82rem;
  color: #e2e8f0;
  cursor: pointer;
  transition: var(--sp-transition);
}

.sp-ticker-item:hover {
  background: rgba(255, 255, 255, 0.05);
}

.sp-ticker-team {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
}

.sp-ticker-team img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.sp-ticker-score {
  background: #21262d;
  color: #58a6ff;
  font-family: var(--sp-font-head);
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 4px;
  font-size: 0.85rem;
}

.sp-ticker-status {
  font-size: 0.68rem;
  font-weight: 700;
  color: #8b949e;
  background: rgba(255, 255, 255, 0.05);
  padding: 1px 5px;
  border-radius: 3px;
}

.sp-ticker-nav-btn {
  background: rgba(255, 255, 255, 0.08);
  border: none;
  color: #fff;
  width: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--sp-transition);
}

.sp-ticker-nav-btn:hover {
  background: var(--sp-primary);
}

/* ==========================================================================
   2. TOP BAR & ANA HEADER & MENÜ
   ========================================================================== */
.sp-topbar {
  background: #14181f;
  color: #94a3b8;
  font-size: 0.78rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 5px 0;
}

.sp-breaking-pill {
  background: var(--sp-accent-live);
  color: #fff;
  font-weight: 700;
  font-size: 0.65rem;
  padding: 2px 7px;
  border-radius: 3px;
  letter-spacing: 0.05em;
  margin-right: 8px;
}

.sp-header {
  background: var(--sp-card-bg);
  box-shadow: var(--sp-shadow);
  border-bottom: 2px solid var(--sp-primary);
  position: sticky;
  top: 0;
  z-index: 1010;
  transition: var(--sp-transition);
}

.sp-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sp-font-head);
  font-weight: 900;
  font-size: 1.85rem;
  letter-spacing: -0.04em;
  color: var(--sp-text);
  line-height: 1;
}

.sp-brand span.highlight {
  color: var(--sp-primary);
}

.sp-brand-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--sp-primary), #ff6b35);
  color: #fff;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: 0 4px 12px rgba(208, 68, 0, 0.35);
}

.sp-nav-link {
  font-family: var(--sp-font-head);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: var(--sp-text);
  padding: 18px 12px;
  display: inline-block;
  position: relative;
  text-transform: uppercase;
}

.sp-nav-link:hover, .sp-nav-link.active {
  color: var(--sp-primary);
}

.sp-nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 12px;
  right: 12px;
  height: 3px;
  background: var(--sp-primary);
  transform: scaleX(0);
  transition: var(--sp-transition);
}

.sp-nav-link:hover::after, .sp-nav-link.active::after {
  transform: scaleX(1);
}

.sp-header-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--sp-bg);
  border: 1px solid var(--sp-border);
  color: var(--sp-text);
  cursor: pointer;
  transition: var(--sp-transition);
}

.sp-header-btn:hover {
  background: var(--sp-primary);
  color: #fff;
  border-color: var(--sp-primary);
}

/* ==========================================================================
   3. DİGİSPOR TARZI NUMARALI MANŞET SLİDER (HERO CAROUSEL)
   ========================================================================== */
.sp-manset-card {
  background: #0a0d12;
  border-radius: var(--sp-radius);
  overflow: hidden;
  position: relative;
  box-shadow: var(--sp-shadow-hover);
  border: 1px solid var(--sp-border);
}

.sp-manset-stage {
  position: relative;
  height: 480px;
  width: 100%;
  overflow: hidden;
}

@media (max-width: 768px) {
  .sp-manset-stage {
    height: 340px;
  }
}

.sp-manset-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-in-out, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  transform: scale(1.03);
}

.sp-manset-item.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  z-index: 2;
}

.sp-manset-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sp-manset-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 13, 18, 0.96) 0%, rgba(10, 13, 18, 0.6) 45%, rgba(10, 13, 18, 0.1) 80%, transparent 100%);
  z-index: 1;
}

.sp-manset-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px;
  z-index: 3;
  color: #fff;
}

@media (max-width: 768px) {
  .sp-manset-caption {
    padding: 16px;
  }
}

.sp-badge {
  display: inline-block;
  font-family: var(--sp-font-head);
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  padding: 5px 11px;
  border-radius: 5px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 10px;
}

.sp-manset-title {
  font-size: 1.85rem;
  font-weight: 800;
  line-height: 1.22;
  margin-bottom: 10px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
  color: #fff;
  transition: var(--sp-transition);
}

@media (max-width: 768px) {
  .sp-manset-title {
    font-size: 1.25rem;
    line-height: 1.3;
  }
}

.sp-manset-title:hover {
  color: #ff9e79;
}

.sp-manset-summary {
  font-size: 0.95rem;
  color: #cbd5e1;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  max-width: 850px;
}

@media (max-width: 768px) {
  .sp-manset-summary {
    display: none;
  }
}

.sp-manset-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.8rem;
  color: #94a3b8;
}

/* Digispor Orijinal Numaralı Slider Çubuğu (1, 2, 3... 15) */
.sp-manset-numbers {
  background: #14181f;
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0;
  margin: 0;
  list-style: none;
  user-select: none;
}

.sp-manset-num-item {
  flex: 1 1 0px;
  min-width: 40px;
  text-align: center;
}

.sp-manset-num-btn {
  width: 100%;
  padding: 10px 0;
  background: transparent;
  border: none;
  color: #8b949e;
  font-family: var(--sp-font-head);
  font-weight: 800;
  font-size: 0.95rem;
  cursor: pointer;
  position: relative;
  transition: var(--sp-transition);
}

.sp-manset-num-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.sp-manset-num-btn.active {
  background: var(--sp-primary);
  color: #fff;
}

.sp-manset-num-btn.active::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: #ffb59c;
}

/* Slider Nav Okları */
.sp-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 5;
  transition: var(--sp-transition);
  backdrop-filter: blur(4px);
}

.sp-slider-arrow:hover {
  background: var(--sp-primary);
  border-color: var(--sp-primary);
  transform: translateY(-50%) scale(1.1);
}

.sp-slider-prev { left: 16px; }
.sp-slider-next { right: 16px; }

/* ==========================================================================
   4. ÖNE ÇIKAN HABERLER IZGARASI (HEADLINE GRID)
   ========================================================================== */
.sp-grid-card {
  position: relative;
  border-radius: var(--sp-radius);
  overflow: hidden;
  height: 230px;
  background: #111418;
  display: block;
  box-shadow: var(--sp-shadow);
  border: 1px solid var(--sp-border);
}

.sp-grid-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.sp-grid-card:hover img {
  transform: scale(1.06);
}

.sp-grid-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px;
  color: #fff;
}

.sp-grid-title {
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 6px;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.7);
}

/* ==========================================================================
   5. BÖLÜM BAŞLIĞI (SECTION HEADER)
   ========================================================================== */
.sp-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--sp-border);
  position: relative;
}

.sp-section-header::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 55px;
  height: 2px;
  background: var(--sp-primary);
}

.sp-section-title {
  font-size: 1.3rem;
  font-weight: 800;
  text-transform: uppercase;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.sp-section-title i {
  color: var(--sp-primary);
}

/* ==========================================================================
   6. PUAN DURUMU (STANDINGS TABLE WIDGET)
   ========================================================================== */
.sp-widget-card {
  background: var(--sp-card-bg);
  border-radius: var(--sp-radius);
  border: 1px solid var(--sp-border);
  box-shadow: var(--sp-shadow);
  overflow: hidden;
}

.sp-tabs-nav {
  display: flex;
  background: var(--sp-dark-surface);
  overflow-x: auto;
  scrollbar-width: none;
}

.sp-tabs-nav::-webkit-scrollbar {
  display: none;
}

.sp-tab-btn {
  padding: 10px 14px;
  background: transparent;
  border: none;
  color: #94a3b8;
  font-family: var(--sp-font-head);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
  cursor: pointer;
  transition: var(--sp-transition);
}

.sp-tab-btn:hover {
  color: #fff;
}

.sp-tab-btn.active {
  background: var(--sp-primary);
  color: #fff;
}

.sp-table-wrapper {
  max-height: 480px;
  overflow-y: auto;
}

.sp-table {
  width: 100%;
  margin-bottom: 0;
  font-size: 0.82rem;
  border-collapse: collapse;
}

.sp-table th {
  background: var(--sp-bg);
  color: var(--sp-text-muted);
  font-weight: 700;
  font-size: 0.72rem;
  text-transform: uppercase;
  padding: 8px 10px;
  border-bottom: 1px solid var(--sp-border);
  text-align: center;
}

.sp-table th:first-child, .sp-table td:first-child,
.sp-table th:nth-child(2), .sp-table td:nth-child(2) {
  text-align: left;
}

.sp-table td {
  padding: 8px 10px;
  border-bottom: 1px solid var(--sp-border);
  vertical-align: middle;
  text-align: center;
}

.sp-table tr:hover td {
  background: rgba(208, 68, 0, 0.04);
}

.sp-rank-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 4px;
  font-weight: 800;
  font-size: 0.75rem;
  color: #fff;
  background: #64748b;
}

.sp-rank-ucl { background: #1d4ed8; }
.sp-rank-uel { background: #059669; }
.sp-rank-relegation { background: #dc2626; }

.sp-table-team {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--sp-text);
}

.sp-form-badge {
  display: inline-block;
  width: 15px;
  height: 15px;
  line-height: 15px;
  border-radius: 50%;
  font-size: 0.6rem;
  font-weight: 800;
  text-align: center;
  color: #fff;
  margin: 0 1px;
}

.sp-form-w { background: #16a34a; }
.sp-form-d { background: #ca8a04; }
.sp-form-l { background: #dc2626; }

/* ==========================================================================
   7. SÜPER LİG SON MAÇLAR & FİKSTÜR
   ========================================================================== */
.sp-match-card {
  background: var(--sp-card-bg);
  border: 1px solid var(--sp-border);
  border-radius: var(--sp-radius);
  padding: 14px;
  margin-bottom: 12px;
  box-shadow: var(--sp-shadow);
  transition: var(--sp-transition);
}

.sp-match-card:hover {
  border-color: var(--sp-primary);
  transform: translateY(-2px);
  box-shadow: var(--sp-shadow-hover);
}

.sp-match-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: var(--sp-text-muted);
  margin-bottom: 10px;
}

.sp-match-body {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sp-match-side {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
}

.sp-match-side.away {
  flex-direction: row-reverse;
  text-align: right;
}

.sp-match-team-logo {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.sp-match-team-name {
  font-weight: 700;
  font-size: 0.95rem;
}

.sp-match-center {
  padding: 0 15px;
  text-align: center;
}

.sp-score-badge {
  background: #111418;
  color: #fff;
  font-family: var(--sp-font-head);
  font-weight: 800;
  font-size: 1.15rem;
  padding: 4px 14px;
  border-radius: 6px;
  display: inline-block;
  letter-spacing: 0.05em;
}

.sp-match-scorers {
  font-size: 0.75rem;
  color: var(--sp-text-muted);
  border-top: 1px dashed var(--sp-border);
  margin-top: 10px;
  padding-top: 6px;
}

/* ==========================================================================
   8. DİĞER HABERLER (KATEGORİ FİLTRELİ HABER AKIŞI)
   ========================================================================== */
.sp-filter-btn {
  background: var(--sp-card-bg);
  border: 1px solid var(--sp-border);
  color: var(--sp-text);
  font-family: var(--sp-font-head);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 6px 14px;
  border-radius: 20px;
  cursor: pointer;
  transition: var(--sp-transition);
}

.sp-filter-btn:hover, .sp-filter-btn.active {
  background: var(--sp-primary);
  color: #fff;
  border-color: var(--sp-primary);
}

.sp-news-card {
  background: var(--sp-card-bg);
  border: 1px solid var(--sp-border);
  border-radius: var(--sp-radius);
  overflow: hidden;
  box-shadow: var(--sp-shadow);
  transition: var(--sp-transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

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

.sp-news-img-wrap {
  position: relative;
  height: 190px;
  overflow: hidden;
}

.sp-news-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.sp-news-card:hover .sp-news-img-wrap img {
  transform: scale(1.05);
}

.sp-news-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.sp-news-title {
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 8px;
}

.sp-news-desc {
  font-size: 0.85rem;
  color: var(--sp-text-muted);
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex-grow: 1;
}

.sp-news-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--sp-border);
  padding-top: 12px;
  font-size: 0.78rem;
  color: var(--sp-text-muted);
}

/* ==========================================================================
   9. EK MODÜLLER (TRANSFER BORSASI, TV REHBERİ, YAZARLAR, ANKET)
   ========================================================================== */
/* Transfer Radarı */
.sp-transfer-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px;
  border-bottom: 1px solid var(--sp-border);
  transition: var(--sp-transition);
}

.sp-transfer-item:last-child {
  border-bottom: none;
}

.sp-transfer-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--sp-primary);
}

.sp-transfer-info {
  flex-grow: 1;
}

.sp-transfer-name {
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 2px;
}

.sp-transfer-clubs {
  font-size: 0.75rem;
  color: var(--sp-text-muted);
}

/* Spor Yazarları */
.sp-columnist-card {
  display: flex;
  gap: 12px;
  padding: 12px;
  background: var(--sp-card-bg);
  border: 1px solid var(--sp-border);
  border-radius: var(--sp-radius);
  margin-bottom: 10px;
  transition: var(--sp-transition);
}

.sp-columnist-card:hover {
  border-color: var(--sp-primary);
  transform: translateX(4px);
}

.sp-columnist-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--sp-border);
}

/* TV Rehberi */
.sp-tv-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  border-bottom: 1px solid var(--sp-border);
  font-size: 0.85rem;
}

.sp-tv-time {
  background: var(--sp-dark-surface);
  color: #fff;
  font-weight: 700;
  padding: 3px 7px;
  border-radius: 4px;
  font-size: 0.75rem;
}

.sp-tv-channel {
  background: rgba(208, 68, 0, 0.1);
  color: var(--sp-primary);
  font-weight: 700;
  font-size: 0.75rem;
  padding: 2px 6px;
  border-radius: 4px;
}

/* Anket Bileşeni */
.sp-poll-option {
  padding: 10px 14px;
  border: 1px solid var(--sp-border);
  border-radius: 6px;
  margin-bottom: 8px;
  cursor: pointer;
  transition: var(--sp-transition);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.88rem;
  font-weight: 600;
}

.sp-poll-option:hover {
  background: rgba(208, 68, 0, 0.05);
  border-color: var(--sp-primary);
}

.sp-poll-bar {
  height: 6px;
  background: var(--sp-border);
  border-radius: 3px;
  overflow: hidden;
  margin-top: 6px;
}

.sp-poll-fill {
  height: 100%;
  background: var(--sp-primary);
  width: 0%;
  transition: width 0.8s ease-in-out;
}

/* ==========================================================================
   10. MOBİL ALT GEZİNME BARI (APP-LIKE BOTTOM NAV)
   ========================================================================== */
.sp-mobile-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--sp-card-bg);
  border-top: 1px solid var(--sp-border);
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.08);
  display: flex;
  justify-content: space-around;
  padding: 8px 0;
  z-index: 1050;
}

@media (min-width: 992px) {
  .sp-mobile-nav {
    display: none;
  }
}

.sp-mobile-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  color: var(--sp-text-muted);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
}

.sp-mobile-nav-item i {
  font-size: 1.25rem;
}

.sp-mobile-nav-item.active, .sp-mobile-nav-item:hover {
  color: var(--sp-primary);
}

/* ==========================================================================
   11. FOOTER
   ========================================================================== */
.sp-footer {
  background: #0d1117;
  color: #94a3b8;
  border-top: 3px solid var(--sp-primary);
  padding: 50px 0 25px;
  margin-top: 60px;
}

.sp-footer-title {
  color: #fff;
  font-family: var(--sp-font-head);
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 18px;
  letter-spacing: 0.05em;
}

.sp-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sp-footer-links li {
  margin-bottom: 9px;
}

.sp-footer-links a {
  color: #94a3b8;
  font-size: 0.88rem;
  transition: var(--sp-transition);
}

.sp-footer-links a:hover {
  color: #fff;
  padding-left: 4px;
}

.sp-social-btn {
  width: 36px;
  height: 36px;
  background: #1c222b;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 8px;
  transition: var(--sp-transition);
}

.sp-social-btn:hover {
  background: var(--sp-primary);
  color: #fff;
  transform: translateY(-2px);
}
/* ==========================================================================
   12. MOBİL YERLEŞİM: PUAN DURUMU SLIDER'IN ALTINDA
   (Masaüstünde sağ kolonda kalır, mobilde manşet slider'ının hemen altına gelir)
   ========================================================================== */
@media (max-width: 991.98px) {
  /* Bootstrap kolonlarını tam genişliğe alıp sıralamayı serbest bırak */
  .sp-main-layout > [class*="col-"] {
    width: 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .sp-main-layout {
    display: flex !important;
    flex-direction: column;
  }

  /* Puan durumu slider'ın altına taşınır */
  .sp-main-layout > .sp-sidebar-col {
    order: -1;
  }
}
