* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #1e2434;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.logo-container {
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

.logo {
    max-width: 100%;
    height: auto;
    width: 100%;
    max-width: 600px;
    filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.02);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }
    
    .logo {
        max-width: 90%;
    }
}

@media (max-width: 480px) {
    .logo {
        max-width: 95%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .logo {
        transition: none;
    }
    
    .logo:hover {
        transform: none;
    }
    
    .logo-container {
        animation: none;
    }
}