/* Genel Stil (Anasayfa ve Arka Plan) */
body {
    margin: 0;
    padding: 0;
    height: 100vh;
    font-family: 'Arial', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(120deg, #1a2a6c, #b21f1f, #fdbb2d); /* Hareketli degrade renkler */
    background-size: 400% 400%; /* Arka plan animasyonu için */
    animation: gradientBackground 6s ease infinite;
    color: white;
    text-align: center;
}

/* Hareketli Degrade Arka Plan */
@keyframes gradientBackground {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Anasayfa Mesaj Kutusu */
.maintenance-message {
    background: rgba(0, 0, 0, 0.7);
    padding: 40px 60px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    width: 90%;
    max-width: 500px;
    text-align: center;
    border: 4px solid white;
}

.maintenance-message img {
    max-width: 150px;
    margin-bottom: 20px;
    border: 3px solid white;
    border-radius: 50%;
    padding: 5px;
    background-color: rgba(255, 255, 255, 0.1);
}

.maintenance-message h1 {
    font-size: 2.5em;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}

.maintenance-message p {
    font-size: 1.2em;
    margin-bottom: 20px;
    color: #e0e0e0;
}

/* İndirme Butonları */
.download-buttons {
    margin-top: 20px;
}

.download-button {
    display: inline-block;
    margin: 10px;
    padding: 10px 20px;
    font-size: 1em;
    color: white;
    text-decoration: none;
    background: linear-gradient(90deg, #1a2a6c, #b21f1f);
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, background 0.3s ease;
}

.download-button:hover {
    transform: scale(1.1);
    background: linear-gradient(90deg, #b21f1f, #fdbb2d);
}