body{
    margin:0;
    font-family:Arial,Helvetica,sans-serif;
    background:#0b0b0b;
    color:#fff;
}

header{
    background:#111;
    padding:20px;
    text-align:center;
    border-bottom:3px solid #00b050;
}

header img{
    max-width:260px;
}

.live{
    display:inline-block;
    margin-top:15px;
    padding:8px 18px;
    background:#d40000;
    border-radius:30px;
    font-weight:bold;
    animation:blink 1s infinite;
}

@keyframes blink{
    50%{opacity:.4;}
}

.container{
    width:95%;
    max-width:1200px;
    margin:30px auto;
}

.player{
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 0 25px rgba(0,176,80,.5);
}

video{
    width:100%;
    display:block;
    background:#000;
}

.info{
    margin-top:20px;
    text-align:center;
}

.info h2{
    color:#00d65a;
}

.buttons{
    margin:30px 0;
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.buttons a{
    text-decoration:none;
    color:#fff;
    padding:14px 28px;
    border-radius:10px;
    font-weight:bold;
}

.youtube{
    background:#ff0000;
}

.facebook{
    background:#1877F2;
}

.whatsapp{
    background:#25D366;
}

footer{
    text-align:center;
    color:#aaa;
    padding:30px;
    border-top:1px solid #333;
}
