body {
    margin: 0;
    padding: 0;
    background: url('site/uploads/index.jpg') center center fixed;
    background-size: cover;
    font-family: 'Roboto', sans-serif;
    color: #e98dfa;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.intro-container {
    text-align: center;
    animation: fadeIn 1s ease-in-out forwards;
}

.logo-circle {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    background-color: #ffffff;
    color: #cf8cd6;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.5em;
    font-weight: bold;
    animation: bounce 1.2s ease infinite;
}

.fade-in {
    opacity: 0;
    animation: fadeIn 1.5s ease-in forwards;
}

.fade-in.delay {
    animation-delay: 1s;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}