/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    overflow: hidden;
    font-family: 'Montserrat', sans-serif;
    background: radial-gradient(ellipse at center, #1c2435 0%, #000000 100%);
    min-height: 100vh;
    color: white;
}

/* Canvas fullscreen */
#canvas1 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

/* Container central */
.center-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    pointer-events: none;
    text-align: center;
}

/* Animação Float Otimizada */
@keyframes floating {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.center-container img,
.agency-text,
.agency-subtitle,
.countdown-container {
    will-change: transform;
}

.float {
    animation: floating 3s ease-in-out infinite;
}

.float-delayed {
    animation: floating 3s ease-in-out infinite;
    animation-delay: 0.5s;
}

/* Texto AGENCY */
.agency-text {
    font-weight: 800;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.625rem;
    margin-top: -2rem;
    text-transform: uppercase;
}

.agency-subtitle {
    font-weight: 400;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.75rem;
}

/* Countdown */
.countdown-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 10rem;
    animation: floating 3s ease-in-out infinite;
    animation-delay: 1s;
}

.countdown-label {
    font-size: 0.6rem;
    font-weight: 400;
    letter-spacing: 0.3em;
    color: rgba(100, 200, 255, 0.6);
    margin-bottom: 0.25rem;
}

.countdown-timer {
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.7);
    font-variant-numeric: tabular-nums;
    /* Otimiza números para não "pularem" */
}