@font-face {
    font-family: 'BricolageGrotesque';
    src: url('BricolageGrotesque_24pt-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    background-color: #00bf63;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'BricolageGrotesque', sans-serif;
    overflow: hidden;
}

.container {
    text-align: center;
}

.logo {
    color: black;
    font-size: 8vw;
    margin: 0;
    display: inline-block;
    cursor: default;
    user-select: none;
    /* Minimal premium reveal */
    animation: 
        minimalReveal 2s cubic-bezier(0.16, 1, 0.3, 1) forwards,
        subtleFloat 6s ease-in-out 2s infinite alternate;
    opacity: 0;
}

@keyframes minimalReveal {
    0% { 
        opacity: 0; 
        transform: translateY(20px) scale(0.95);
        filter: blur(10px);
        letter-spacing: -4px;
    }
    100% { 
        opacity: 1; 
        transform: translateY(0) scale(1);
        filter: blur(0px);
        letter-spacing: normal;
    }
}

@keyframes subtleFloat {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}

@media (max-width: 768px) {
    .logo {
        font-size: 15vw;
    }
}

.coming-soon {
    color: black;
    font-size: 2vw;
    margin-top: 1rem;
    font-weight: 500;
    opacity: 0.8;
    letter-spacing: 4px;
    text-transform: uppercase;
    animation: fadeFloat 3s ease-in-out infinite alternate;
}

@keyframes fadeFloat {
    0% { opacity: 0.3; transform: translateY(5px); }
    100% { opacity: 0.9; transform: translateY(0px); }
}

@media (max-width: 768px) {
    .coming-soon {
        font-size: 5vw;
    }
}
