/* fixbet Dinamik Giriş Sayfası CSS'i - WordPress Uyumlu */

/* Ana Container (Dinamik Background PHP ile Eklenecek) */
.fixbet-container {
    position: relative;
    min-height: 100vh;
    width: 100%;
    margin: 0 auto;
    max-width: 100%;
    overflow-x: hidden;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    /* Background dinamik: PHP ile eklenecek */
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
    padding-bottom: 60px;
}

@keyframes subtleShift {
    0% { background-position: center top; }
    100% { background-position: center bottom; }
}

/* Üst Uyarı Alanı - Sabit Arkaplan + Kayar Yazı Versiyonu */
.warning-banner {
    width: 100%;
    overflow: hidden;
    font-weight: bold;
    padding: 10px 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2000;
    box-shadow: none !important;
    background-color: #08120A !important; /* Sabit arkaplan rengi: Koyu ton */
    color: #FFFFFF !important; /* Yazı rengi: Beyaz */
    animation: none !important; /* Blink animasyonunu tamamen kapat (sabit tut) */
    text-align: left; /* Kayar yazı için sola hizala */
}
.warning-text {
    display: inline-block;
    white-space: nowrap;
    padding-left: 100%; /* Kayar yazı için sol padding (soldan başla) */
    animation: marquee 45s linear infinite; /* Kayar yazı animasyonu: 45 saniyede bir tur, sonsuz döngü */
    color: #FFFFFF !important; /* Yazı rengini beyaz yap (güvenli) */
}
/* Hover ile Kaymayı Durdur (Opsiyonel - Kullanıcı durdursun diye) */
.warning-banner:hover .warning-text {
    animation-play-state: paused; /* Mouse üzerine gelince kayma durur */
}

/* Logo */
.logo {
    max-width: 180px;
    margin-top: 60px;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
    animation: pulse 2s infinite;
}
.logo:hover {
    transform: scale(1.05) rotate(5deg);
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}

/* Başlık */
h1 {
    font-size: 28px;
    text-align: center;
    margin-bottom: 10px;
    text-shadow: 0 0 12px rgba(255, 215, 0, 0.9);
    animation: glow 3s ease-in-out infinite alternate;
}

@keyframes glow {
    from { text-shadow: 0 0 12px rgba(255, 215, 0, 0.9), 0 0 20px rgba(255, 215, 0, 0.7); }
    to { text-shadow: 0 0 20px rgba(255, 215, 0, 1), 0 0 30px rgba(255, 215, 0, 0.8); }
}

.subtext {
    font-size: 16px;
    text-align: center;
    color: #ddd;
    margin-bottom: 20px;
    text-shadow: 0 0 6px rgba(0,0,0,0.6);
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Tablo */
table {
    width: 100%;
    max-width: 650px;
    border-collapse: collapse;
    background: rgba(24, 40, 55, 0.85);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: none !important;
    animation: slideInRight 1.5s ease-out;
}
th, td {
    padding: 14px;
    font-size: 15px;
    text-align: left;
}
th {
    background: linear-gradient(90deg, #ffd700, #ffae00);
    color: #FFFFFF;
}
tr:nth-child(even) {
    background-color: rgba(255, 255, 255, 0.05);
}
tr:hover {
    background-color: rgba(255, 215, 0, 0.15);
    transform: scale(1.01);
    transition: 0.3s ease;
}
.status {
    font-weight: bold;
}
.aktif {
    color: #00ff88;
}
.pasif {
    color: #ff4d4d;
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Info Box */
.info-box {
    max-width: 650px;
    font-size: 14px;
    color: #eee;
    line-height: 1.6;
    text-align: center;
    margin: 25px auto;
    background: rgba(15, 30, 40, 0.8);
    padding: 18px 24px;
    border-radius: 12px;
    box-shadow: none !important;
    animation: bounceIn 1s ease-out;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

@keyframes bounceIn {
    0% { transform: scale(0.3); opacity: 0; }
    50% { transform: scale(1.05); }
    70% { transform: scale(0.9); }
    100% { transform: scale(1); opacity: 1; }
}

/* Sosyal Butonlar - Yazı Rengi Değiştirme Versiyonu */
.social-button {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(90deg, #08120A, #08120A); /* Arkaplan gradient korunur (altın) */
    padding: 12px 20px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 15px;
    color: #FFFFFF !important; /* Yazı rengini beyaz yap (orijinal #08120A koyu kalktı) */
    text-decoration: none;
    box-shadow: none !important;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.3s ease;
    animation: fadeIn 2s ease-out forwards;
}
.social-button:nth-child(1) { animation-delay: 0.1s; }
.social-button:nth-child(2) { animation-delay: 0.2s; }
.social-button:nth-child(3) { animation-delay: 0.3s; }
.social-button:nth-child(4) { animation-delay: 0.4s; }
.social-button:nth-child(5) { animation-delay: 0.5s; }
.social-button img {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}
.social-button:hover {
    transform: scale(1.1) rotate(2deg);
    background: linear-gradient(90deg, #08120A, #08120A); /* Hover arkaplan korunur */
    box-shadow: none !important;
    color: #FFFFFF !important; /* Hover'da da yazı rengini beyaz tut (değişmesin) */
}


/* Kayar Yazı Animasyonu Keyframes'i (Zaten Varsa Silme, Yoksa Ekle) */
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}
/* Yukarı Kayma Animasyonu (Opsiyonel - Banner'ı yavaşça yukarı getir, sabit tut) */
@keyframes slideUp {
    0% { transform: translateY(100%); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}
/* Alt Banner - Sabit Arkaplan + Kayar Yazı Versiyonu */
.marquee-container {
    width: 100%;
    overflow: hidden;
    background: #08120A !important; /* Sabit arkaplan rengi: Koyu ton (orijinal sarı kalktı) */
    color: #FFFFFF !important; /* Yazı rengi: Beyaz */
    font-weight: bold;
    padding: 10px 0;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 1000;
    box-shadow: none !important;
    animation: slideUp 0.5s ease-out; /* Yukarı kayma animasyonunu koru (sabit arkaplanla uyumlu) */
    text-align: left; /* Kayar yazı için sola hizala */
}
.marquee-text {
    display: inline-block;
    white-space: nowrap;
    padding-left: 100%; /* Kayar yazı için sol padding (soldan başla) */
    animation: marquee 12s linear infinite; /* Kayar yazı animasyonu: 12 saniyede bir tur, sonsuz döngü (orijinal hız) */
    color: #FFFFFF !important; /* Yazı rengini beyaz yap (güvenli) */

}

/* WordPress Tema Override (Header/Footer Gizle İçin - Opsiyonel) */
.fixbet-container ~ * {
    display: none !important;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .fixbet-container {
        padding: 10px;
        padding-bottom: 80px; /* Marquee için yer aç */
    }
    h1 {
        font-size: 24px;
    }
    table {
        font-size: 14px;
    }
    .social-buttons {
        flex-direction: column;
        align-items: center;
    }
    .social-button {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    .info-box {
        padding: 12px 16px;
        font-size: 13px;
    }
    .logo {
        max-width: 150px;
    }
}

/* Ek Animasyonlar ve Düzeltmeler */
.fixbet-container * {
    box-sizing: border-box;
}
