#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 */
  }
  
  /* Mobil için logo küçült */
  @media (max-width: 640px) {
    #logo-container {
      padding: 15px 0 8px;
    }
    #site-logo {
      max-width: 220px;
    }
  }
      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }
  
      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;
      }
  
      #prwtominima {
        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) {
        background: #0f172a;
        color: #60a5fa;
        font-weight: bold;
        font-size: 1.18rem;
        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;
      }
  
      /* Mobil uyum */
      @media (max-width: 640px) {
        .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;
        }
      }
      .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;
  }
  
  #top-facts-section {
    margin: 20px 0;
    padding: 15px;
    background: #0f1c3a;
    border-radius: 8px;
  }
  
  #facts-title {
    text-align: center;
    margin-bottom: 15px;
    color: #fcfcfc;
  }
  
  .facts-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  
  .fact-item {
    background: 
    #2a3b5a;
    border-left: 4px solid #334466;
    padding: 12px 16px;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.08);
  }
  
  .fact-text {
    font-weight: bold;
    margin-bottom: 6px;
    color: #ffffff;
  }
  
  .fact-match {
    color: #ffffff;
    font-size: 0.95em;
  }
  
  .fact-odds {
    color: #ffcc00;
    font-weight: bold;
    margin-left: 8px;
  }
  .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 */
  }
  
  /* Mobil ayarlar */
  @media (max-width: 640px) {
    #logo-container {
      padding: 15px 0 10px;
    }
    #main-logo {
      max-width: 240px;
    }
    #header-wrapper {
      padding: 10px 0;             /* menü daha kompakt olsun */
    }
  }
  