
    #logo-container {
  text-align: center;
  padding: 20px 0 10px;  /* üst ve alt boşluk */
  background: rgba(15, 23, 42, 0.8);  /* header ile uyumlu koyu katman */
}

#site-logo {
  max-width: 250px;          /* logo boyutunu ayarla – telefon için küçülür */
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;            /* ortala */
  transition: transform 0.3s ease;
}

#site-logo:hover {
  transform: scale(1.05);    /* hover'da hafif büyüme efekti */
}



    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    /* Instagram linkini kutu haline getirip yan yana diz */
.social-instagram {
  text-align: center;              /* ortala */
  margin: 15px 0 25px;             /* üst-alt boşluk */
  padding: 10px;
}

.insta-link {
  display: inline-flex;            /* yan yana dizmek için */
  align-items: center;             /* dikey ortalama */
  gap: 10px;                       /* logo ile text arası mesafe */
  text-decoration: none;           /* link alt çizgisini kaldır */
  color: white;
  transition: all 0.3s ease;
}

.insta-link:hover {
  color: #e1306c;                  /* Instagram'ın pembe-mor hover rengi */
  transform: scale(1.05);
}

/* Instagram logosu boyutu */
#instalogo {
  width: 28px;                     /* küçücük logo – 25-32px ideal */
  height: 28px;
  object-fit: contain;             /* bozulmasın */
  border-radius: 8px;              /* hafif yuvarlak köşe */
  box-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

/* Instagram text rengi ve stil */
#instatext {
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}



    body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.85)), 
              url('/assets/images/stadium.jpg') no-repeat center center fixed;  /* ← burası önemli! */
  background-size: cover;  /* fotoğrafı tam ekran kaplasın */
  color: #e2e8f0;
  min-height: 100vh;
  line-height: 1.6;
}
    #header-wrapper {
      background: #0f172a;
      border-bottom: 1px solid #334155;
      box-shadow: 0 4px 12px rgba(0,0,0,0.4);
      position: sticky;
      top: 0;
      z-index: 100;
    }

    .MainNavigation {
      display: flex;
      justify-content: center;
      gap: 8px;
      padding: 14px 16px;
      flex-wrap: wrap;
    }

    .MainNavigation button {
      background: #0f172a;
      color: #94a3b8;
      border: 1px solid #334155;
      border-radius: 8px;
      padding: 12px 20px;
      font-size: 1.05rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.22s ease;
      min-width: 160px;
    }

    .MainNavigation button:hover {
      background: #334155;
      color: #e2e8f0;
      border-color: #475569;
      transform: translateY(-1px);
    }

    .MainNavigation button:active {
      transform: translateY(0);
      background: #475569;
    }
    

    #main-page {
      max-width: 960px;
      margin: 40px auto;
      padding: 0 16px;
    }
    #info{
      font-size: 1.6rem;
      text-align: center;
      color: #ca8a04;
      font: bold;
      background-color: #ca8a04;
    }

    #wlecome-msg {
      font-size: 1.6rem;
      font-weight: 700;
      color: #60a5fa;
      text-align: center;
      margin-bottom: 32px;
      padding: 16px;
      background: rgba(30, 41, 59, 0.6);
      border-radius: 12px;
      border: 1px solid #334155;
    }

    table {
      width: 100%;
      border-collapse: separate;
      border-spacing: 0;
      background: #1e293b;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 10px 25px rgba(0,0,0,0.35);
      margin-bottom: 40px;
    }

    td {
      padding: 16px 20px;
      border-bottom: 1px solid #334155;
      border-right: 1px solid #334155;
    }

    td:last-child {
      border-right: none;
    }

    tr:last-child td {
      border-bottom: none;
    }

    tr:first-child td {
      background: #0f172a;
      color: #60a5fa;
      font-weight: bold;
      font-size: 1.18rem;
      text-align: center;
    }

    tr td:nth-child(2) {
      width: 1%;
      color: #475569;
      font-weight: bold;
      padding: 16px 8px;
      text-align: center;
    }

    tr:not(:first-child) td:first-child {
      font-weight: 600;
      color: #cbd5e1;
    }

    tr:not(:first-child) td:last-child {
      color: #fbbf24;
      font-weight: 700;
      text-align: right;
    }

   
    .featured-bet {
  margin: 40px 0 60px;
  padding: 24px;
  background: rgba(30, 41, 59, 0.8);
  border-radius: 16px;
  border: 2px solid #ca8a04;  /* altın sarısı çerçeve – dikkat çeker */
  box-shadow: 0 8px 25px rgba(202, 138, 4, 0.15);
  text-align: center;
}

.featured-title {
  font-size: 2rem;
  color: #fbbf24;
  margin-bottom: 20px;
  text-shadow: 0 2px 8px rgba(251, 191, 36, 0.4);
}

.banko-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #0f172a;
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 20px;
  border: 1px solid #475569;
  flex-wrap: wrap;
  gap: 20px;
}

.match-info {
  flex: 1;
}

.match-info h3 {
  font-size: 1.5rem;
  color: #e2e8f0;
  margin: 8px 0;
}

.match-info .league {
  color: #94a3b8;
  font-weight: bold;
}

.match-info .time {
  color: #60a5fa;
  font-size: 1.1rem;
}

.prediction {
  text-align: right;
  min-width: 180px;
}

.bet-type {
  display: block;
  font-size: 1.3rem;
  font-weight: bold;
  color: #60a5fa;
}

.odds {
  display: block;
  font-size: 2.2rem;
  font-weight: 800;
  color: #fbbf24;
  margin-top: 8px;
}

.reason {
  font-size: 1.1rem;
  color: #cbd5e1;
  line-height: 1.7;
  margin: 0 auto 24px;
  max-width: 700px;
}

.action-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  background: #3b82f6;
  color: white;
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.25s;
}

.btn:hover {
  background: #2563eb;
  transform: translateY(-2px);
}

.btn.telegram {
  background: #0088cc;
}
.btn.agones {
  background: #0088cc;
}

.btn.share {
  background: #10b981;
}

/* Stats summary */
.stats-summary {
  margin-top: 40px;
  padding: 20px;
  background: rgba(15, 23, 42, 0.7);
  border-radius: 12px;
  text-align: center;
}

.stats-summary h3 {
  color: #94a3b8;
  margin-bottom: 16px;
}

.stats-summary ul {
  list-style: none;
  font-size: 1.15rem;
}

.stats-summary li {
  margin: 12px 0;
  color: #e2e8f0;
}

.stats-summary strong {
  color: #fbbf24;
}
#logo-container {
  text-align: center;
  padding: 25px 0 15px;          /* logo'ya nefes alma alanı */
  background: rgba(15, 23, 42, 0.85);  /* koyu katman */
  border-bottom: 1px solid #334155;
}

#main-logo {
  max-width: 320px;              /* boyutunu logona göre ayarla */
  width: 80%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 50%;            /* daire logo için güzel olur */
  box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}

/* Header-wrapper'ı sadece menü için sticky yap */
#header-wrapper {
  position: sticky;              /* yapışkan kalır */
  top: 0;                        /* ekranın tepesine yapışsın */
  z-index: 100;                  /* içerik üstüne binsin */
  background: #0f172a;
  border-bottom: 1px solid #334155;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}


/* Logo sticky olmasın – normal akışta kalsın */
#logo-container {
  position: relative;            /* sticky değil, normal */
}

/* İçerik logo'yu örtmesin diye body'ye padding ekle (opsiyonel ama öneririm) */
body {
  padding-top: 0;                /* logo yüksekliğine göre ayarla eğer gerekirse */
}

/* Tüm mobil ayarlar tek yerde – bakım kolaylaşır */
@media (max-width: 640px) {
  /* Logo bölümü */
  #logo-container {
    padding: 15px 0 10px;  /* son haliyle birleştir */
  }
  #site-logo {
    max-width: 220px;
  }
  #main-logo {
    max-width: 240px;
  }

  /* Instagram */
  #instalogo {
    width: 24px;
    height: 24px;
  }
  #instatext {
    font-size: 1rem;
  }
  .insta-link {
    gap: 8px;
  }

  /* Navigasyon ve tablo */
  .MainNavigation {
    flex-direction: column;
    align-items: center;
  }
  .MainNavigation button {
    width: 100%;
    max-width: 320px;
  }
  #wlecome-msg {
    font-size: 1.35rem;
  }
  td {
    padding: 14px 12px;
    font-size: 0.98rem;
  }

  /* Header */
  #header-wrapper {
    padding: 10px 0;
  }
}
