body {
    margin: 0;
    font-family: "Lato", sans-serif;
    background-image: url('/img/Triskalith_bg.png');
    background-size: cover;
    background-attachment: fixed; /* La imagen de fondo se queda fija */
    background-position: center; /* Centra la imagen de fondo */
}

.sidebar {
    margin: 0;
    padding: 0;
    width: 200px;
    background-color: rgba(43, 43, 46, 0.863);
    position: fixed;
    height: 100%;
    overflow: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Esto empuja el contenido a la parte superior e inferior */
}

.sidebar a {
    display: block;
    color: black;
    padding: 16px;
    text-decoration: none;
    color: white;
}

.sidebar #side-home:hover:not(.active) {
    border-left: 3px solid rgb(135, 206, 250);
    background-color: rgb(0, 51, 102);
}

.sidebar #side-twitch:hover:not(.active) {
    border-left: 3px solid rgb(148, 68, 253);
    background-color: rgb(84, 2, 139);
}

.sidebar #side-tickets:hover:not(.active) {
    border-left: 3px solid rgb(255, 223, 186);
    background-color: rgb(102, 51, 0);
}

.sidebar #side-suggestions:hover:not(.active) {
    border-left: 3px solid rgb(255, 105, 180);
    background-color: rgb(88, 24, 69);
}

.sidebar #side-legal:hover:not(.active) {
    border-left: 3px solid rgb(255, 100, 100);
    background-color: rgb(63, 42, 63);
}

.sidebar #side-discord:hover:not(.active) {
    border-left: 3px solid rgb(88, 101, 242);
    background-color: rgb(32, 32, 88);
}

.sidebar #side-instant:hover:not(.active) {
    border-left: 3px solid rgb(255, 140, 0);
    background-color: rgb(139, 67, 0); /* Amarillo oscuro */
}

.sidebar #side-bisect:hover:not(.active) {
    border-left: 3px solid rgb(95, 95, 255);
    background-color: rgb(39, 39, 94);
}

.sidebar #side-login:hover:not(.active) {
    border-left: 3px solid rgb(0, 255, 34); /* Verde */
    background-color: rgb(0, 82, 0); /* Verde oscuro */
}

.sidebar .links {
    max-height: auto;
    overflow-y: auto;
    flex-grow: 1;
}

.sidebar .footer {
    margin-bottom: 16px; /* Opcional: espacio debajo del enlace */
}

.sidebar #side {
    display: block;
    color: white;
    padding: 16px;
    text-decoration: none;
}

div.content {
    margin-left: 200px;
    padding: 1px 16px;
}

#footer {
    margin-left: 200px;
    background-color: rgba(43, 43, 46, 0.863);
    text-align: center;
    color: white;
    padding: 0 16px;
    height: fit-content;
}

.footer-text {
    vertical-align: middle;
    color: rgb(207, 207, 207);
}

.box {
    background-color: rgba(0, 0, 0, 0.5); /* Fondo negro semitransparente */
    color: white; /* Texto blanco */
    padding: 10px; /* Relleno para separación entre texto y fondo */
    border-radius: 5px; /* Bordes redondeados */
    display: block; /* Mantiene el comportamiento de bloque */
    width: fit-content; /* El ancho del fondo se ajusta al contenido */
    max-width: 100%; /* Asegura que no exceda el ancho del contenedor */
    margin-bottom: 15px; /* Espacio entre los elementos */
}

section{
    position: relative;
}

@media screen and (max-width: 700px) {
    .sidebar {
        width: 100%;
        height: auto;
        position: relative;
    }

    .sidebar #side {
        float: left;
    }

    div.content {
        margin-left: 0;
    }

    #footer {
        margin-left: 0;
        background-color: rgba(43, 43, 46, 0.863);
        text-align: center;
        color: white;
        padding: 0 16px;
        height: fit-content;
    }
}

@media screen and (max-width: 400px) {
    .sidebar #side {
        text-align: center;
        float: none;
    }
}

.avatar {
    vertical-align: middle;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin-left: 10%;
}

#targeta{
    border-radius: 20px;
    width: auto;
    height: 100%;
    margin-left: 1%;
    margin-top: 1%;
    border: 1px solid rgb(224, 181, 253);
}

#targeta-head{
    text-align: center;
    border-bottom: 1px solid rgb(195, 134, 251);
    border-radius: 20px 20px 0px 0px;
}

#span-flecha{
    color: rgb(211, 163, 255);
}

#targetaPremium{
    border-radius: 20px;
    height: 100%;
    width: 90%;
    margin-left: 1%;
    margin-top: 1%;
    border: 1px solid rgb(253, 255, 141);
}

#targetaPremium-head{
    text-align: center;
    border-bottom: 1px solid rgb(253, 255, 141);
    border-radius: 20px 20px 0px 0px;
}

.contacticon {
    vertical-align: middle;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-top: 3%;
}

.remove-btn {
    background: none;
    border: none;
    font-size: 20px; /* Ajusta el tamaño del emoji */
    color: red; /* Color del emoji */
    cursor: pointer;
    padding: 0;
    margin: 0;
    transition: background 0.3s;
}

.remove-btn:hover {
    background: #f0f0f0;
    border-radius: 50%;
}


/* width */
::-webkit-scrollbar {
    width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #555; 
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: rgb(198, 149, 255); 
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: rgb(170, 99, 252);
}

.premium-text {
    height: 50px;
    width: auto;
    display: block;
    border-radius: 10px; /* Aplica un redondeo suave inicialmente */
    transition: all 0.3s ease; /* Transición suave para el efecto hover */
}

.premium-text:hover {
    box-shadow: 0 0 20px 0 rgba(255, 255, 0, 0.6); /* Efecto de brillo alrededor de la imagen */
}

.link2 {
    text-decoration: none;
    color: rgb(195, 134, 251); /* Esto hace que el enlace tome el color del texto normal */
}

.link2:hover {
    color: rgb(195, 134, 251);
}