body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background: linear-gradient(to right, #f8f8f8, #dfefff);
    color: #333;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.container {
    max-width: 600px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

.logo {
    width: 400px;
    margin-bottom: 20px;
}

h1 {
    color: #004080;
    font-size: 24px;
    margin-bottom: 15px;
}

p {
    font-size: 16px;
    margin: 10px 0;
}

.redirect {
    margin-top: 15px;
    font-weight: bold;
    color: #cc0000;
}

/* YÃ¼klenme animasyonu */
.spinner {
    margin: 20px auto;
    width: 50px;
    height: 50px;
    border: 5px solid #ccc;
    border-top: 5px solid #004080;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* MaÄŸaza Butonu */
.button {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 25px;
    background-color: #004080;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.button:hover {
    background-color: #0066cc;
}