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

body{

    background:#0e0e10;

    color:white;

    font-family:Arial,Helvetica,sans-serif;

}

header{

    height:60px;

    background:#18181b;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:0 20px;

    border-bottom:1px solid #303032;

}

.logo{

    font-size:24px;

    font-weight:bold;

}

.estado{

    color:#ff4b4b;

    font-weight:bold;

}

.contenedor{

    display:grid;

    grid-template-columns:1fr 360px;

    height:calc(100vh - 60px);

    overflow:hidden;
}

.video{

    padding:20px;

}

.video video{

    width:100%;

    height:75vh;

    border-radius:12px;

    background:black;

}

.info{

    margin-top:20px;

}

.info h2{

    margin-bottom:10px;

}

aside{
    background:#18181b;
    display:flex;
    flex-direction:column;
    border-left:1px solid #303032;
    padding:15px;
    gap:15px;

    /* IMPORTANTE */
    align-items:stretch;
}

.banner{
    padding:20px;
    background:#202024;
    border-radius:10px;
}

.chat{
    display:flex;
    flex-direction:column;
    flex:1;
    height:100%;
}

.chat-header{
    padding:15px;
    font-weight:bold;
    border-bottom:1px solid #303032;
}

.mensajes{

    flex:1;

    overflow-y:auto;

    padding:15px;

}

.msg{

    margin-bottom:12px;

}

.user{

    color:#9147ff;

    font-weight:bold;

}

.enviar{

    display:flex;

    padding:15px;

    border-top:1px solid #303032;

}

.enviar input{

    flex:1;

    background:#2f2f35;

    color:white;

    border:none;

    padding:12px;

    border-radius:8px;

}

.enviar button{

    margin-left:10px;

    background:#9147ff;

    color:white;

    border:none;

    padding:12px 18px;

    border-radius:8px;

    cursor:pointer;

}

.enviar button:hover{

    background:#772ce8;

}

.twitch-chat{
    width:100%;
    height:100%;
    border:none;
}
.logo{
    display:flex;
    align-items:center;
    gap:12px;
    font-size:22px;
    font-weight:bold;
}

.logo img{
    width:40px;
    height:40px;
    object-fit:cover;
    border-radius:50%;
}

.info{

    margin-top:20px;

    background:#18181b;

    padding:20px;

    border-radius:12px;

}

.info h2{

    margin-bottom:10px;

}

.info p{

    color:#cfcfcf;

    margin-bottom:18px;

}

.sociales{

    display:flex;

    flex-wrap:wrap;

    gap:12px;

}

.sociales a{

    text-decoration:none;

    color:white;

    padding:12px 18px;

    border-radius:10px;

    font-weight:bold;

    transition:.25s;

}

.sociales a:hover{

    transform:translateY(-2px);

}

.twitch{

    background:#9146FF;

}

.kick{

    background:#53FC18;

    color:black !important;

}

.patreon{

    background:#FF424D;

}

.twitter{

    background:#000;

    border:1px solid #444;

}
:root{
    --plyr-color-main: #9146FF;
}
.video{
    overflow:auto;
}

aside{
    overflow:hidden;
}
