/* ==========================================================================
   1. GENEL SIFIRLAMA & SAYFA DÜZENİ
   ========================================================================== */
html {
  overflow-y: scroll;
  overflow-x: hidden;
}

body {
  margin: 0 !important;
  padding: 0 !important;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background-color: #f4f6f9;
  color: #333333;
}

.container { 
  max-width: 900px; 
  margin: 20px auto 40px auto; 
  width: 100%; 
  padding: 0 15px; 
  box-sizing: border-box; 
}

/* ==========================================================================
   2. FULL-WIDTH HEADER DÜZENİ
   ========================================================================== */
.site-header-wrapper {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  background: #0b0f19 !important;
  border-bottom: 1px solid #1e293b;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  box-sizing: border-box;
}

.site-nav {
  max-width: 900px !important;
  margin: 0 auto !important;
  width: 100% !important;
  padding: 12px 15px !important;
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
  position: relative;
}

.site-nav .logo {
  font-size: 19px;
  font-weight: 800;
  color: #38bdf8;
  text-decoration: none;
  letter-spacing: -0.5px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  position: relative !important;
}
.site-nav .logo:hover {
  color: #10b981;
}

.site-nav .nav-links {
  display: flex;
  gap: 6px;
  align-items: center;
}

.site-nav .social-group {
  display: flex;
  gap: 6px;
  align-items: center;
}

.site-nav .nav-link {
  background: #111827;
  color: #94a3b8;
  padding: 6px 10px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
  border: 1px solid #1f2937;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.site-nav .nav-link:hover {
  background: #1e293b;
  color: #f8fafc;
  border-color: #38bdf8;
}

.site-nav .nav-link.insights-link {
  color: #38bdf8;
  font-weight: 700;
  position: relative;
}

.site-nav .nav-link.roi-btn,
.site-nav .nav-link.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.site-nav .nav-link.social-icon-btn {
  background: #1e293b;
  color: #ffffff;
  padding: 6px 10px;
  font-weight: 900;
  font-size: 14px;
  border: 1px solid #334155;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 31px;
  box-sizing: border-box;
}
.site-nav .nav-link.social-icon-btn:hover {
  background: #0f172a;
  border-color: #38bdf8;
  color: #38bdf8;
  box-shadow: 0 0 10px rgba(56, 189, 248, 0.25);
}
.site-nav .nav-link.social-icon-btn svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.site-nav .nav-link.bonus-btn {
  position: relative;
  background: #065f46;
  border-color: #059669;
  color: #ffffff;
  font-weight: 700;
  height: 31px;
  display: inline-flex;
  align-items: center;
  box-sizing: border-box;
}
.site-nav .nav-link.bonus-btn:hover {
  background: #047857;
  border-color: #10b981;
}

.site-nav .nav-link.subscribe-btn {
  background: #0369a1;
  border-color: #0284c7;
  color: #ffffff;
  font-weight: 700;
  height: 31px;
  display: inline-flex;
  align-items: center;
  box-sizing: border-box;
}
.site-nav .nav-link.subscribe-btn:hover {
  background: #0284c7;
  border-color: #38bdf8;
}

.pick-badge-top {
  position: absolute;
  top: -9px;
  right: -12px;
  background-color: #10b981;
  color: #ffffff;
  font-size: 8px;
  font-weight: 800;
  padding: 1px 4px;
  border-radius: 3px;
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
  box-shadow: 0 1px 4px rgba(16, 185, 129, 0.4);
  pointer-events: none;
  animation: badgePulse 1.8s infinite ease-in-out;
}

@keyframes badgePulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.18); }
  100% { transform: scale(1); }
}

.hot-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: #ef4444;
  color: white;
  font-size: 8px;
  padding: 1px 5px;
  border-radius: 10px;
  font-weight: bold;
  box-shadow: 0 2px 6px rgba(239, 68, 68, 0.4);
  animation: pulse-hot 1.5s infinite;
}
@keyframes pulse-hot {
  0% { transform: scale(1); }
  50% { transform: scale(1.12); }
  100% { transform: scale(1); }
}

.mobile-menu-toggle {
  display: none;
  background: #1e293b;
  color: #f8fafc;
  border: 1px solid #334155;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  align-items: center;
  gap: 6px;
}
.mobile-menu-toggle:hover {
  background: #334155;
  color: #38bdf8;
}

/* ==========================================================================
   3. HERO BANNER & STATS (INDEX)
   ========================================================================== */
.hero-banner {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 15px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  box-sizing: border-box;
}
.hero-banner h1 {
  font-size: 24px;
  font-weight: 800;
  color: #0284c7;
  margin: 0 0 10px 0;
}
.hero-banner p {
  color: #475569;
  font-size: 15px;
  line-height: 1.6;
  margin: 0 0 12px 0;
}
.hero-highlights {
  display: flex;
  gap: 20px;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #f1f5f9;
  font-size: 13px;
  font-weight: 600;
  color: #0f172a;
  align-items: center;
  flex-wrap: wrap;
}
.hero-highlights span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.hero-stats-bar {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 15px 20px;
  margin-bottom: 25px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.02);
  box-sizing: border-box;
}
.hero-stat-item { text-align: center; }
.hero-stat-label {
  font-size: 11px;
  color: #64748b;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 3px;
}
.hero-stat-val {
  font-size: 17px;
  font-weight: 800;
  color: #0f172a;
}
.val-pos { color: #059669; }
.val-neg { color: #dc2626; }

.hero-stat-divider {
  border-left: 1px solid #e2e8f0;
  padding-left: 15px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
}
.hero-stat-link {
  font-size: 11px;
  font-weight: bold;
  color: #0284c7;
  text-decoration: none;
}
.hero-link-styled {
  color: #0284c7;
  text-decoration: underline;
  font-weight: 600;
}

.season-active-banner {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #ffffff;
  padding: 30px;
  border-radius: 12px;
  border-left: 5px solid #0284c7;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  margin-bottom: 30px;
  box-sizing: border-box;
}

.season-badge {
  display: inline-block;
  background: #0284c7;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.season-active-banner h2 {
  color: #ffffff;
  font-size: 22px;
  font-weight: 800;
  margin: 0 0 10px 0;
}

.season-active-banner p {
  color: #cbd5e1;
  font-size: 15px;
  line-height: 1.6;
  margin: 0 0 20px 0;
}

.season-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.btn-primary {
  background: #0284c7;
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  transition: background 0.2s;
}
.btn-primary:hover {
  background: #0369a1;
  color: #ffffff;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #e2e8f0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.2s;
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

/* ==========================================================================
   4. MAÇ KARTLARI & SSS
   ========================================================================== */
.index-faq-section {
  margin-bottom: 25px;
  padding: 22px 25px;
  background: #fbf7ee;
  border: 1px solid #fde68a;
  border-left: 4px solid #b45309;
  border-radius: 6px;
}
.index-faq-section h2 {
  font-size: 18px;
  font-weight: 800;
  color: #78350f;
  margin-top: 0;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px dashed #d97706;
}
.index-faq-item {
  background: transparent;
  border: none;
  border-bottom: 1px dashed #fcd34d;
  padding: 12px 0;
  margin-bottom: 0;
}
.index-faq-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
h3.index-faq-question {
  font-size: 14px;
  font-weight: 700;
  color: #92400e;
  margin: 0 0 5px 0;
  line-height: 1.4;
}
.index-faq-answer {
  font-size: 13.5px;
  color: #451a03;
  line-height: 1.5;
  margin: 0;
}

.blogabet-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #f0fdf4;
  color: #15803d;
  border: 1px solid #bbf7d0;
  padding: 5px 10px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
}
.blogabet-badge:hover {
  background: #dcfce7;
  border-color: #86efac;
}

.match-card { 
  background: #fff; 
  padding: 20px; 
  border-radius: 8px; 
  box-shadow: 0 2px 5px rgba(0,0,0,0.05); 
  margin-bottom: 15px; 
  display: flex; 
  justify-content: space-between; 
  align-items: center; 
  flex-wrap: wrap; 
  text-decoration: none; 
  color: inherit; 
  transition: transform 0.1s ease, box-shadow 0.1s ease; 
  border-left: 5px solid #ccc; 
  position: relative; 
  box-sizing: border-box;
}
.match-card:hover { transform: translateY(-2px); box-shadow: 0 4px 10px rgba(0,0,0,0.08); }

.match-card.pending { border-left-color: #0077cc; }
.match-card.won { border-left-color: #28a745; background: #fcfdfc; }
.match-card.half-won { border-left-color: #28a745; background: #fcfdfc; }
.match-card.lost { border-left-color: #dc3545; opacity: 0.85; }
.match-card.half-lost { border-left-color: #dc3545; opacity: 0.85; }
.match-card.void { border-left-color: #ffc107; }

.match-info { flex: 1; min-width: 250px; }
.league-title { font-size: 13px; color: #666; font-weight: bold; text-transform: uppercase; margin-bottom: 5px; }
.teams { font-size: 18px; font-weight: bold; color: #111; margin-bottom: 8px; }
.match-date { font-size: 12px; color: #888; }

.right-side { display: flex; align-items: center; gap: 15px; }
.prediction-box { background: #e8f4fd; color: #005fa3; padding: 10px 15px; border-radius: 6px; font-weight: bold; text-align: center; }

.score-badge { padding: 8px 12px; border-radius: 6px; font-weight: bold; font-size: 14px; text-align: center; display: inline-block; }
.score-badge.won { background: #d4edda; color: #155724; }
.score-badge.lost { background: #f8d7da; color: #721c24; }
.score-badge.pending { background: #cce5ff; color: #004085; }
.score-badge.void { background: #fff3cd; color: #856404; }

.no-match { text-align: center; background: #fff; padding: 40px; border-radius: 8px; color: #666; font-size: 16px; }

/* ==========================================================================
   5. BREADCRUMB & FOOTER
   ========================================================================== */
.global-breadcrumb-wrapper {
  max-width: 900px;
  margin: 15px auto 20px auto;
  width: 100%;
  padding: 0 15px;
  box-sizing: border-box;
}
.global-breadcrumb {
  font-size: 13px;
  color: #64748b;
  padding-bottom: 10px;
  border-bottom: 1px solid #cbd5e1;
  display: flex;
  align-items: center;
  gap: 8px;
}
.global-breadcrumb a { color: #0077cc; text-decoration: none; font-weight: 600; }
.global-breadcrumb a:hover { text-decoration: underline; }
.global-breadcrumb .separator { color: #94a3b8; }
.global-breadcrumb .current { color: #0f172a; font-weight: 600; }

.site-footer-wrapper {
  max-width: 900px;
  width: 100%;
  margin: 40px auto 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}

.site-footer {
  background: #0b0f19;
  color: #cbd5e1;
  text-align: center;
  padding: 25px 20px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  border: 1px solid #1e293b;
  font-size: 13px;
  line-height: 1.6;
  box-sizing: border-box;
}

.site-footer .footer-links {
  margin-bottom: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.site-footer .footer-links a {
  color: #38bdf8;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.site-footer .footer-links a:hover {
  text-decoration: underline;
  color: #10b981;
}

.site-footer .footer-links a.insights-footer-link {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.site-footer .footer-links a.footer-subscribe-link {
  color: #38bdf8;
  background: rgba(3, 105, 161, 0.2);
  border: 1px solid rgba(56, 189, 248, 0.3);
  padding: 3px 8px;
  border-radius: 4px;
}

.site-footer .footer-links a.footer-subscribe-link:hover {
  background: rgba(3, 105, 161, 0.4);
  color: #ffffff;
  text-decoration: none;
}

.site-footer .footer-links a.social-icon-btn {
  background: #1e293b;
  color: #ffffff;
  padding: 4px 8px;
  border-radius: 6px;
  font-weight: 900;
  font-size: 13px;
  border: 1px solid #334155;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 27px;
  box-sizing: border-box;
  text-decoration: none;
}

.site-footer .footer-links a.social-icon-btn:hover {
  background: #0f172a;
  border-color: #38bdf8;
  color: #38bdf8;
  text-decoration: none;
  box-shadow: 0 0 10px rgba(56, 189, 248, 0.25);
}

.site-footer .footer-links a.social-icon-btn svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.footer-hot-badge {
  background: #ef4444;
  color: #ffffff;
  font-size: 9px;
  padding: 1px 4px;
  border-radius: 4px;
  font-weight: bold;
  margin-left: 2px;
  animation: pulse-hot 1.5s infinite;
}

.site-footer .footer-copy {
  color: #f1f5f9;
}

.site-footer .disclaimer {
  color: #94a3b8;
  font-size: 11px;
  max-width: 600px;
  margin: 10px auto 0 auto;
}

/* ==========================================================================
   6. MOBİL UYUM (RESPONSIVE)
   ========================================================================== */
@media (max-width: 768px) {
  .container {
    padding: 0 10px;
    margin-top: 15px;
  }
  .site-header-wrapper {
    padding: 0;
    margin-top: 0;
  }
  .global-breadcrumb-wrapper {
    padding: 0 10px;
    margin: 12px auto 15px auto;
  }
  .site-nav {
    flex-wrap: wrap;
    padding: 10px 15px !important;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .site-nav .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #1e293b;
  }
  .site-nav .nav-links.active {
    display: flex;
  }
  .site-nav .nav-link {
    text-align: center;
    padding: 10px;
    font-size: 14px;
    justify-content: center;
  }
  .site-nav .social-group {
    display: flex;
    gap: 8px;
    justify-content: center;
    width: 100%;
  }
  .site-nav .social-group .nav-link {
    flex: 1;
  }
  .hot-badge {
    top: 2px;
    right: 10px;
  }
  .hero-banner {
    padding: 20px 15px;
  }
  .hero-banner h1 {
    font-size: 20px;
  }
  .season-active-banner {
    padding: 20px 15px;
  }
  .season-active-banner h2 {
    font-size: 19px;
  }
  .season-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .btn-primary, .btn-secondary {
    text-align: center;
  }
  .match-card {
    padding: 15px;
    gap: 12px;
  }
  .right-side {
    width: 100%;
    justify-content: space-between;
  }
  .site-footer-wrapper {
    padding: 0 10px;
    margin-top: 30px;
  }
  .site-footer {
    padding: 20px 15px;
  }
  .site-footer .footer-links {
    gap: 10px;
  }
}