*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    background-color: rgb(15, 8, 8);
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

nav{
    position: relative;
    overflow: visible;
    padding: 15px 0;
    background-color: rgb(25, 10, 10);
    border-bottom: 2px solid rgb(220, 100, 50);
}

#video-fondo{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.3;
}

.menu{
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    list-style: none;
    align-items: center;
}

.menu li{
    margin: 0 20px;
    position: relative;
}

.menu a{
    text-decoration: none;
    color: rgb(240, 160, 80);
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-weight: bold;
    letter-spacing: 1px;
}

.menu a:hover{
    color: white;
}


.dropdown-menu{
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: rgb(30, 15, 10);
    border: 1px solid rgb(200, 80, 30);
    border-radius: 8px;
    list-style: none;
    min-width: 180px;
    z-index: 100;
    padding: 0.5em 0;
    box-shadow: 0px 5px 20px rgba(200, 80, 30, 0.4);
}

.dropdown:hover .dropdown-menu{
    display: block;
}

.dropdown-menu li{
    margin: 0;
}

.dropdown-menu li a{
    display: block;
    padding: 0.6em 1.2em;
    color: rgb(240, 160, 80);
    font-size: 0.9em;
    border-bottom: 1px solid rgb(60, 30, 20);
}

.dropdown-menu li:last-child a{
    border-bottom: none;
}

.dropdown-menu li a:hover{
    background-color: rgb(60, 25, 15);
    color: white;
}


header{
    position: relative;
    padding: 0;
    width: 100%;
    overflow: hidden;
}

#mifoto{
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 0;
}

header::after{
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to bottom, transparent, rgb(15, 8, 8));
}

.cajita{
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
    z-index: 2;
}

.cajita h1{
    color: white;
    text-shadow: 0px 0px 15px rgb(220, 100, 50);
    font-size: 2.5em;
}

.cajita h2{
    color: rgb(240, 160, 80);
    font-size: 1.1em;
    border-bottom: none;
    text-shadow: none;
    padding: 0;
    margin-top: 0.3em;
    width: auto;
    text-align: center;
    font-weight: normal;
}


section{
    width: 80%;
    margin: 3em auto;
    box-shadow: 0px 0px 20px 2px rgb(150, 60, 20);
    padding: 2em;
    border-radius: 10px;
    background-color: rgb(22, 12, 10);
    border-left: 4px solid rgb(220, 100, 50);
}

h2{
    width: 100%;
    text-align: center;
    margin-bottom: 1em;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    text-shadow: 0px 0px 10px rgb(220, 100, 50);
    border-bottom: 2px solid rgb(200, 80, 30);
    padding: 0.5em;
    color: rgb(240, 160, 80);
}


.doscolupnas{
    display: flex;
    gap: 2em;
    align-items: center;
}

.doscolupnas img{
    width: 40%;
    border-radius: 10px;
    object-fit: cover;
}

.doscolupnas p{
    color: rgb(220, 200, 180);
    line-height: 1.8;
    font-size: 0.95em;
}


.grid-apariciones{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1.5em;
}

.tarjeta-aparicion{
    background-color: rgb(30, 15, 10);
    border-radius: 10px;
    padding: 1em;
    border: 1px solid rgb(150, 60, 20);
}

.tarjeta-aparicion img{
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
    margin-bottom: 0.8em;
}

.tarjeta-aparicion h3{
    color: rgb(240, 160, 80);
    margin-bottom: 0.4em;
}

.tarjeta-aparicion p{
    color: rgb(200, 180, 160);
    font-size: 0.85em;
    line-height: 1.6;
}


footer{
    background-color: rgb(25, 10, 10);
    text-align: center;
    padding: 1.5em;
    font-size: 0.85em;
    color: rgb(180, 100, 50);
    border-top: 2px solid rgb(220, 100, 50);
}


#return{
    background-color: rgb(180, 70, 20);
    padding: 1em;
    width: 40px;
    height: 40px;
    text-align: center;
    position: fixed;
    bottom: 10px;
    right: 10px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#return img{
    width: 500%;
    height: 500%;
    object-fit: cover;
    border-radius: 50%;
}

a{
    color: rgb(220, 100, 50);
}

.tabla-habilidades{
    width: 100%;
    border-collapse: collapse;
}

.tabla-habilidades th{
    color: white;
    padding: 0.8em 1em;
    text-align: left;
}

.tabla-habilidades td{
    padding: 0.8em 1em;
    color: rgb(200, 180, 160);
    border-bottom: 1px solid rgb(80, 40, 20);
}

.tabla-habilidades tr:hover td{
    background-color: rgb(40, 20, 10);
}

.tabla-habilidades th:first-child{
    background-color: rgb(180, 70, 20);
    white-space: nowrap;
    width: 300px;
}

.tabla-habilidades th:last-child{
    background-color: rgb(40, 20, 10);
}

#billy h2 i{
    animation: latir 1s infinite;
    color: rgb(240, 160, 80);
    margin-right: 8px;
}

#billy .doscolupnas img{
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#billy .doscolupnas img:hover{
    transform: scale(1.03);
    box-shadow: 0px 0px 20px rgb(220, 100, 50);
}

#billy .doscolupnas p{
    position: relative;
}

@keyframes latir{
    0%, 100%{ transform: scale(1); }
    50%{ transform: scale(1.3); color: rgb(255, 80, 80); }
}

@media (max-width: 1000px) {
    .menu{
        flex-wrap: wrap;
    }

    .doscolupnas{
        flex-direction: column-reverse;
    }
}

@media (max-width: 536px) {
    .menu{
        flex-wrap: wrap;
    }

    .grid-apariciones{
        display: grid;
        grid-template-columns: 1fr;
        }
}