* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #111;
    font-family: Arial, Helvetica, sans-serif;
    color: #ffffff;

    display: flex;
    justify-content: center;
    align-items: center;

    min-height: 100vh;
    padding: 20px;
}

.player-container {
    width: 100%;
    max-width: 1000px;

    background: #1b1b1b;

    border-radius: 15px;

    overflow: hidden;

    box-shadow:
        0 0 20px rgba(255, 0, 0, 0.4),
        0 0 50px rgba(255, 0, 0, 0.15);
}

.player-header {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 15px 25px;

    background: linear-gradient(
        90deg,
        #111111,
        #2a0000,
        #111111
    );
}

.logo {
    font-size: 22px;
    font-weight: bold;
    letter-spacing: 1px;
}

.status {
    color: #ff3333;
    font-size: 14px;
    font-weight: bold;

    animation: piscar 1.5s infinite;
}

@keyframes piscar {

    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }

    100% {
        opacity: 1;
    }

}

.video-wrapper {
    width: 100%;
    background: #000;
}

video {
    width: 100%;
    display: block;

    aspect-ratio: 16 / 9;

    background: #000;
}

.player-footer {
    text-align: center;

    padding: 25px;
}

.player-footer h2 {
    font-size: 28px;
    margin-bottom: 8px;
}

.player-footer p {
    color: #cccccc;
    margin-bottom: 20px;
}

button {
    border: none;

    padding: 14px 30px;

    font-size: 16px;
    font-weight: bold;

    border-radius: 30px;

    cursor: pointer;

    background: #e60000;
    color: #ffffff;

    transition: 0.3s;
}

button:hover {
    transform: scale(1.05);

    background: #ff3333;

    box-shadow:
        0 0 15px #ff0000;
}

@media (max-width: 600px) {

    .player-header {
        padding: 12px 15px;
    }

    .logo {
        font-size: 17px;
    }

    .player-footer h2 {
        font-size: 22px;
    }

}