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

body {
    background-color: #000000;
    color: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    padding: 20px;
}

/* Brand / Logo */
.brand {
    text-align: center;
    margin-bottom: 20px;
}

.logo {
    font-size: 3.5rem;
    font-weight: bold;
    letter-spacing: -2px;
}

.coming-soon {
    font-size: 1.3rem;
    color: #ffffff;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Countdown */
.countdown {
    display: flex;
    gap: 40px;
    align-items: center;
}

.separator {
    font-size: 3rem;
    font-weight: bold;
    color: #666666;
    line-height: 1;
}

.time-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.number {
    font-size: 4rem;
    font-weight: bold;
    line-height: 1;
    min-width: 80px;
    text-align: center;
}

.label {
    font-size: 1rem;
    font-weight: normal;
    text-transform: uppercase;
    color: #cccccc;
}

/* Bouton Follow */
.follow-button {
    background-color: #ffffff;
    color: #000000;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.15);
}

.follow-button:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 255, 255, 0.25);
}

.follow-button:active {
    transform: translateY(0);
}

/* Responsive design pour mobile */
@media (max-width: 768px) {
    .logo {
        font-size: 2.5rem;
    }

    .coming-soon {
        font-size: 1.1rem;
    }

    .countdown {
        gap: 12px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .separator {
        font-size: 2rem;
    }
    
    .number {
        font-size: 2.5rem;
        min-width: 65px;
    }
    
    .label {
        font-size: 0.7rem;
    }
    
    .follow-button {
        padding: 15px 25px;
        font-size: 0.95rem;
        width: 90%;
        max-width: 300px;
    }
    
    .container {
        gap: 30px;
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 2rem;
    }

    .coming-soon {
        font-size: 1rem;
    }

    .countdown {
        gap: 8px;
        width: 100%;
        max-width: 300px;
    }

    .separator {
        font-size: 1.5rem;
    }
    
    .time-unit {
        flex: 1;
        min-width: 60px;
    }
    
    .number {
        font-size: 2rem;
        min-width: 50px;
        line-height: 1.1;
    }
    
    .label {
        font-size: 0.6rem;
        margin-top: 5px;
    }
    
    .container {
        gap: 25px;
        padding: 15px;
        width: 100%;
    }
    
    .follow-button {
        padding: 12px 20px;
        font-size: 0.85rem;
        width: 95%;
        max-width: 280px;
    }
}

@media (max-width: 360px) {
    .logo {
        font-size: 1.8rem;
    }

    .countdown {
        gap: 6px;
        max-width: 280px;
    }

    .separator {
        font-size: 1.3rem;
    }
    
    .number {
        font-size: 1.7rem;
        min-width: 45px;
    }
    
    .label {
        font-size: 0.55rem;
    }
    
    .follow-button {
        font-size: 0.8rem;
        padding: 10px 18px;
    }
}

/* Orientation paysage sur mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .container {
        gap: 20px;
    }

    .logo {
        font-size: 2rem;
    }
    
    .number {
        font-size: 2.8rem;
    }

    .separator {
        font-size: 2rem;
    }
    
    .label {
        font-size: 0.7rem;
    }
    
    .follow-button {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
}

