body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    color: #fff;
    background: url('frieren_fondo.png') no-repeat center center fixed;
    background-size: cover;
}

.container {
    text-align: center;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 15px;
    width: 600px;
    max-width: 100%;
    margin: 5% auto;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5);
    height: auto;
}

h1 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #ffd700;
    /* Dorado */
}

.foto_perfil {
    width: 275px;
    height: 175px;
    border-radius: 10px;
    margin-bottom: 1rem;
}

ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

ul li {
    margin: 0;
    text-align: center;
}

ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 1.2rem;
    font-weight: bold;
    background: rgba(255, 215, 0, 0.7);
    padding: 0.5rem 1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    display: inline-block;
    width: 250px;
}

ul li a:hover {
    color: #ffd700;
    background: rgba(255, 217, 0, 0.26);
}

footer {
    text-align: center;
    margin-top: 2rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 15px;
    width: 650px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5);
}

footer p {
    font-size: 0.9rem;
    color: #fff;
}

footer a {
    text-decoration: none;
    color: #ffd700;
}

footer a:hover {
    text-decoration: underline;
}

div a {
    text-decoration: none;
    color: #fff;
    font-size: 1.2rem;
    font-weight: bold;
    background: rgba(255, 215, 0, 0.7);
    padding: 0.5rem 1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    display: inline-block;
    width: 250px;
}

div a:hover {
    color: #ffd700;
    background: rgba(255, 217, 0, 0.26);
}

/* Cookies */


#cookie-consent {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

#cookie-content {
    background-color: #ffffff;
    color: #000000;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    text-align: center;
}

#cookie-content form {
    margin-top: 20px;
}

#cookie-content button {
    background-color: #ffd700;
    padding: 5px;
    border-radius: 5px;
}

#cookie-content button:hover {
    background-color: #f7df53;
    cursor: pointer;
}

#cookie-content input[type="submit"] {
    padding: 10px 20px;
    background-color: #007BFF;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

#cookie-content input[type="submit"]:hover {
    background-color: #0056b3;
}

/* Estado por defecto (sin JS) */
#cancel-cookies {
    display: none;
}

/* Estado con JS activado */
.js-enabled #cancel-cookies {
    display: inline-block;
}