/* ==========================================
   PALETA PREMIUM BLACK & ORANGE (#ff7a00)
   ========================================== */

body {
    background-color: #000000; /* Fundo puro preto */
    color: #ffffff; /* Texto branco para alto contraste */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
}

.container {
    width: 100%;
    max-width: 650px;
    margin-top: 50px;
    padding: 20px;
    box-sizing: border-box;
}

/* HEADER */
.top-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    border-bottom: 2px solid #ff7a00; /* Destaque Laranja */
    padding-bottom: 20px;
    margin-bottom: 35px;
}

.logo {
    height: 50px;
    object-fit: contain;
    filter: drop-shadow(0px 0px 8px rgba(255, 122, 0, 0.3));
}

h1 {
    margin: 0;
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #ffffff;
}

/* CARD CENTRAL PRETO */
.card {
    background-color: #0a0a0a;
    border: 1px solid #1a1a1a;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.9);
}

.card h2 {
    margin-top: 0;
    color: #ff7a00;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.description {
    color: #888888;
    margin-bottom: 30px;
    font-size: 14px;
    line-height: 1.5;
}

/* ZONA DE UPLOAD */
.upload-area {
    border: 2px dashed #ff7a00;
    padding: 40px 20px;
    border-radius: 6px;
    cursor: pointer;
    background-color: #030303;
    transition: all 0.2s ease;
}

.upload-area:hover {
    background-color: #0d0d0d;
    border-color: #ff9533;
    box-shadow: inset 0 0 10px rgba(255, 122, 0, 0.1);
}

input[type="file"] {
    display: none;
}

.upload-label {
    font-size: 15px;
    color: #aaaaaa;
    font-weight: 500;
    cursor: pointer;
    display: block;
}

/* BOTÃO INTERATIVO LARANJA (#ff7a00) */
.action-btn {
    background: #ff7a00;
    border: 1px solid #ff7a00;
    color: #000000; /* Texto preto para alto contraste */
    font-size: 15px;
    font-weight: bold;
    padding: 14px 28px;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    margin-top: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.2s ease;
}

.action-btn:hover:not(:disabled) {
    background: #e06c00;
    border-color: #e06c00;
    box-shadow: 0 0 15px rgba(255, 122, 0, 0.4);
}

.action-btn:disabled {
    background: #1a1a1a;
    border-color: #222222;
    color: #555555;
    cursor: not-allowed;
}

/* MONITORAMENTO & TELEMETRIA */
.status-container {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid #1a1a1a;
    display: none;
}

#statusText {
    font-weight: 600;
    font-size: 15px;
    color: #ffffff;
    margin-bottom: 15px;
}

/* BARRA DE PROGRESSO LARANJA */
.progress-bar {
    width: 100%;
    background-color: #141414;
    border: 1px solid #222222;
    border-radius: 20px;
    overflow: hidden;
    height: 10px;
    margin-bottom: 25px;
}

.progress-fill {
    width: 0%;
    height: 100%;
    background-color: #ff7a00;
    box-shadow: 0 0 8px #ff7a00;
    transition: width 0.2s ease;
}

/* CONTADOR IMPOSITIVO */
.counter-title {
    font-size: 12px; 
    color: #666666; 
    text-transform: uppercase; 
    letter-spacing: 1px;
}

.counter-badge {
    font-size: 54px;
    font-weight: 800;
    color: #ff7a00;
    margin: 10px 0 20px 0;
    text-shadow: 0 0 15px rgba(255, 122, 0, 0.2);
}

/* TEASER PLAYER PRETO */
.teaser-video {
    width: 100%;
    max-height: 320px;
    border-radius: 6px;
    border: 1px solid #ff7a00;
    background-color: #000000;
    margin-top: 20px;
    box-shadow: 0 5px 20px rgba(255, 122, 0, 0.1);
}

footer {
    margin-top: auto;
    padding: 30px;
    font-size: 11px;
    color: #444444;
    text-align: center;
    letter-spacing: 0.5px;
}