body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: white;
    color: black;
}

header {
    background: black;
    color: white;
    padding: 15px;
    text-align: center;
    border-bottom: 5px solid red;
}

header h1 {
    margin: 0;
    font-size: 28px;
    letter-spacing: 1px;
}

.container {
    max-width: 1100px;
    margin: auto;
    padding: 20px;
}

.enquete-box {
    background: white;
    border: 3px solid black;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0px 0px 12px rgba(0,0,0,0.2);
}

.videos-area {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.video-card {
    flex: 1;
    text-align: center;
}

.video-frame {
    width: 100%;
    aspect-ratio: 16 / 9;
    border: 4px solid red;
    border-radius: 10px;
}

.separator-x {
    font-size: 90px;
    font-weight: bold;
    color: red;
    text-shadow: 2px 2px 0 black;
    flex-shrink: 0;
}

.vote-area {
    margin-top: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.vote-btn {
    background: red;
    color: white;
    font-size: 18px;
    padding: 10px 18px;
    border: 3px solid black;
    border-radius: 10px;
    cursor: pointer;
    font-weight: bold;
}

.vote-btn:hover {
    background: black;
    border-color: red;
}

.vote-count {
    font-size: 18px;
    font-weight: bold;
}

/* MOBILE VERTICAL: vídeos um embaixo do outro */
@media (max-width: 768px) and (orientation: portrait) {
    .videos-area {
        flex-direction: column;
    }

    .separator-x {
        font-size: 70px;
        margin: 10px 0;
    }
}

/* MOBILE HORIZONTAL: lado a lado (mantém flex-row) */
@media (max-width: 768px) and (orientation: landscape) {
    .separator-x {
        font-size: 70px;
    }
}