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

/* Ana Container (Dinamik Background PHP ile Eklenecek) */
.matadorbet-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ı */
.warning-banner {
    width: 100%;
    overflow: hidden;
    font-weight: bold;
    padding: 10px 0;
    animation: blinkColors 500000s;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2000;
    box-shadow: 0 2px 8px rgba(237,57,3,1.5);
}
.warning-text {
    display: inline-block;
    white-space: nowrap;
    padding-left: 100%;
    animation: marquee 45s linear infinite;
}

@keyframes blinkColors {
    0% { background-color: red; color: white; }
    25% { background-color: orange; color: white; }
    50% { background-color: yellow; color: white; }
    75% { background-color: orange; color: white; }
    100% { background-color: red; color: white; }
}
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* 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: 0 0 20px rgba(255, 215, 0, 0.4);
    animation: slideInRight 1.5s ease-out;
}
th, td {
    padding: 14px;
    font-size: 15px;
    text-align: left;
}
th {
    background: linear-gradient(90deg, #ffd700, #ffae00);
    color: #ED3903;
}
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: 0 0 15px rgba(255, 215, 0, 0.4);
    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 */
.social-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin: 25px 0;
}
.social-button {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(90deg, #ffd700, #ED3903);
    padding: 12px 20px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 15px;
    color: #0f1e28;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(255, 165, 0, 0.6);
    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, #ff8c00, #ffd700);
    box-shadow: 0 6px 16px rgba(255, 165, 0, 0.8);
}
.social-button:hover img {
    transform: rotate(360deg);
}

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

/* Marquee */
.marquee-container {
    width: 100%;
    overflow: hidden;
    background: rgba(237, 57, 3, 1.0);
    color: #ED3903;
    font-weight: bold;
    padding: 10px 0;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 -2px 8px rgba(0,0,0,0.0);
    animation: slideUp 0.5s ease-out;
}
.marquee-text {
    display: inline-block;
    white-space: nowrap;
    padding-left: 100%;
    animation: marquee 12s linear infinite;
}
.marquee-container:hover .marquee-text {
    animation-play-state: paused;
}

@keyframes slideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

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

/* Responsive Tasarım */
@media (max-width: 768px) {
    .matadorbet-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 */
.matadorbet-container * {
    box-sizing: border-box;
}