/* Genel Ayarlar */
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Cinzel', serif;
    height: 100%;
    overflow: hidden;
    background-color: var(--bs-body-bg, #000); /* Varsay覺lan arka plan rengi */
    color: white;
}

/* Intro Container */
.intro-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
    position: relative;
    text-align: center;
}

/* Logo Efekt */
.logo {
    position: relative;
    opacity: 0;
    width: 400px;
    filter: blur(20px);
    animation: fadeIn 3s ease-in-out forwards;
}

/* Logo Animasyonu */
@keyframes fadeIn {
    0% {
        opacity: 0;
        filter: blur(20px);
    }
    100% {
        opacity: 1;
        filter: blur(0);
    }
}

/* Responsive Tasar覺m */
@media (max-width: 768px) {
    .logo {
        width: 300px;
    }
}
