/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #000000;
    font-family: Arial, sans-serif;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.logo-container {
    text-align: center;
    padding: 20px;
}

.logo {
    width: 400px;
    height: 400px;
    max-width: 80vw;
    max-height: 80vh;
}

/* Responsive design */
@media (max-width: 768px) {
    .logo {
        width: 300px;
        height: 300px;
        max-width: 90vw;
        max-height: 70vh;
    }
}

@media (max-width: 480px) {
    .logo {
        width: 250px;
        height: 250px;
        max-width: 95vw;
        max-height: 60vh;
    }
}

/* Smooth animations */
.logo-container {
    animation: fadeIn 1.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

