
    #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;
          }
          /* Instagram linkini kutu haline getirip yan yana diz */
      .social-instagram {
        text-align: right;              /* 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;
      }
      
      /* Mobil için küçült */
      @media (max-width: 640px) {
        #instalogo {
          width: 24px;
          height: 24px;
        }
        #instatext {
          font-size: 1rem;
        }
        .insta-link {
          gap: 8px;
        }
      }
      
          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;
          }
      
          #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;
          }
          /* 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;
            }
          }
          
      
      
      .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;
      }
      
      
      #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 */
      }
    
    /* Accordion + kartlar için temel stiller */
.history-container {
  max-width: 960px;
  margin: 20px auto;
  padding: 0 15px;
}

.section {
  margin-bottom: 32px;
  background: rgba(30, 41, 59, 0.7);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #475569;
}

.section-header {
  background: #0f172a;
  padding: 16px 20px;
  cursor: pointer;
  font-size: 1.4rem;
  font-weight: 600;
  color: #60a5fa;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.section-header::after {
  content: '▼';
  font-size: 1rem;
  transition: transform 0.3s;
}

.section-header.active::after {
  transform: rotate(180deg);
}

.section-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 20px;
}

.section-content.active {
  max-height: 2000px; /* büyük içerik için yeterli */
  padding: 20px;
}

/* Kazan / Kaybet vurguları – HER YERDE KULLANILIYOR */
.result-win { 
  color: #22c55e !important; 
  font-weight: 700; 
}
.result-lose { 
  color: #ef4444 !important; 
  font-weight: 700; 
}

/* ────────────────────────────────────────────────
   TÜM KARTLAR İÇİN ORTAK YENİ CLASS
───────────────────────────────────────────────── */
.prediction-card {
  background: #0f172a;
  border: 1px solid #475569;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  transition: all 0.18s ease;
}

.prediction-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
  border-color: #60a5fa66; /* hafif mavi kenar vurgusu */
}

.prediction-card h3,
.prediction-card h4 {
  color: #fbbf24;
  margin: 0 0 14px 0;
  font-size: 1.3rem;
}

.prediction-card p {
  margin: 10px 0;
  font-size: 1.05rem;
}

/* Kartları yan yana dizmek için */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

/* Çok küçük ekranlarda tek sütun */
@media (max-width: 480px) {
  .cards-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .prediction-card {
    padding: 16px;
  }
}
      /* 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 */
        }

      
        
      }