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

body, html {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: #000;
    font-family: 'Outfit', sans-serif;
}

.container {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    /* Precise radial gradient to match the logo background */
    background: radial-gradient(circle at center, #222222 0%, #000000 100%);
    position: relative;
}

/* Add a very subtle light effect that follows the mouse or just pulses */
.container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.4) 100%);
    pointer-events: none;
}

.logo-wrapper {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80%;
    max-width: 600px;
}

.premium-logo {
    width: 100%;
    height: auto;
    display: block;
    /* Blending the logo edges if there's any slight mismatch */
    mask-image: radial-gradient(circle, black 60%, transparent 100%);
    -webkit-mask-image: radial-gradient(circle, black 60%, transparent 100%);
    filter: drop-shadow(0 0 30px rgba(209, 42, 32, 0.1));
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .logo-wrapper {
        width: 90%;
    }
}
