@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500;800&display=swap');

/* Microgramma D Extended - usando alternativa similar (Orbitron) */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@700;900&display=swap');

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

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #0a0a0a;
    color: #ffffff;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

/* Cor padrão para texto - usando branco para contraste no fundo escuro */

.container {
    width: 100%;
    max-width: 800px;
}

.card {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border: 1px solid rgba(255, 107, 53, 0.4);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.warning-icon {
    font-size: 32px;
    filter: drop-shadow(0 0 8px rgba(255, 107, 53, 0.5));
}

.title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 24px;
    color: #ff0000;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
}

.intro-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #ffffff;
}

.highlight-yellow {
    color: #FF6B35;
    font-weight: 800;
}

.info-box {
    border: 2px solid #FF6B35;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
    background: rgba(255, 107, 53, 0.08);
}

.info-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 15px;
}

.info-list {
    list-style: none;
    padding: 0;
}

.info-list li {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 12px;
    color: #ffffff;
    padding-left: 5px;
}

.timer-section {
    text-align: center;
    margin-bottom: 30px;
}

.timer {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 28px;
    color: #FF6B35;
}

#countdown {
    font-size: 32px;
    color: #FF6B35;
    font-weight: 800;
}

.final-warning {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 15px;
    line-height: 1.7;
    color: #ffffff;
    text-align: center;
}

.final-warning strong {
    color: #FF6B35;
    font-weight: 800;
}

/* Responsividade */
@media (max-width: 768px) {
    .card {
        padding: 25px;
    }
    
    .title {
        font-size: 20px;
    }
    
    .timer {
        font-size: 24px;
    }
    
    #countdown {
        font-size: 28px;
    }
    
    .intro-text,
    .info-list li,
    .final-warning {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .title {
        font-size: 18px;
    }
    
    .card {
        padding: 20px;
    }
}

