/* Estilos base y fuentes */
@font-face {
    font-family: "FOT-RodinNTLG Pro EB";
    src: url("./mkwii.otf") format("opentype");
}
@keyframes moveGrad {
    0% { background-position: 100% 100%; }
    100% { background-position: 0% 0%; }
}
@keyframes shine {
    0% { background-position: 200% 0%; }
    100% { background-position: -200% 0%; }
}
@keyframes boomZoom {
    0% {
    transform: scale(1);
    }
    100% {
    transform: scale(1.15);
    }
}
@keyframes moveDown {
    from {
    background-position-y: 0;
    }
    to {
    background-position-y: 8px;
    }
}


h1, h2, h3, boom {
    font-family: "FOT-RodinNTLG Pro EB", monospace;
    font-size: 4em;
    line-height: 70px;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px;
    background: linear-gradient(90deg, silver, white, silver);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 3px 3px 2px rgba(16, 16, 16, 0.1);
}
h2 {
    background: linear-gradient(90deg, red, rgb(128, 0, 0), red);
    background-size: 200% 200%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: moveGrad 3.25s linear infinite;
    text-shadow: 3px 3px 2px rgba(39, 39, 39, 0.31);
    font-size: 3em;
    line-height: 60px;
    margin: 0px 0px 10px 0px;
}
h3 {
    font-size: 2em;
    line-height: 60px;
    margin: 0px 0px 10px 0px;
}


body {
    margin: 0;
    padding: 0;
    background-color: #2b2b2b; /* Gris oscuro */
    color: white;
    font-family: Arial, sans-serif;
    overflow-y: auto; /* Habilitamos scroll vertical si es necesario */
}

.button {
    line-height: 26px;
    display: block;
    width: auto;
    padding: 10px;
    margin-bottom: 30px;
    margin-top: 20px;
    font-family: "FOT-RodinNTLG Pro EB", monospace;
    font-size: 28px;
    color: #ffffff;
    background: linear-gradient(-45deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 27%, rgba(255, 255, 255, 0.66) 50%, rgba(255, 255, 255, 0) 72%, rgba(255, 255, 255, 0) 100%);
    background-size: 300% 300%;
    border: 3px solid transparent;
    border-image: linear-gradient(-45deg, yellow 0%, yellow 27%, white 50%, yellow 72%, yellow 100%) 2;
    text-align: center;
    text-decoration: none;
    animation: moveGrad 1.15s linear infinite;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-shadow: 3px 3px 2px rgba(37, 37, 37, 0.33);
}
.button::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('./wfc_gold.png') no-repeat center/cover;
    filter: blur(1.5px);
    z-index: -1;
}
.button:hover {
    background-position: 100% 100%;
    animation: moveGrad 0.6s linear infinite;
}

.tarjeta {
    margin: 20px;
    font-family: "FOT-RodinNTLG Pro EB", monospace;
    display: flex;
    align-items: center;
    background-color: gray;
    border: 6px solid transparent;
    border-image: linear-gradient(-45deg, black 0%, black 27%, gray 50%, black 72%, black 100%) 2;
    padding: 10px;
    width: 550px;
    background-image: linear-gradient(-45deg, black 0%, black 27%, gray 50%, black 72%, black 100%);
    background-size: 200% 200%;
    animation: shine 3s linear infinite;
}

.imagen {
    width: 128px;
    height: 128px;
    border: 4px solid white;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: black;
    color: white;
    font-weight: bold;
    font-size: 4em;
}

boom {
    background: linear-gradient(90deg, red, orange, yellow, green, blue, indigo, violet);
    background-size: 700% 700%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: moveGrad 3.25s linear infinite, boomZoom 0.35s ease-in-out infinite alternate;
    text-shadow: 3px 3px 2px rgba(39, 39, 39, 0.31);
}

.footer-text {
    margin-top: 30px;
    font-style: italic;
    color: #c0c0c0; /* Gris claro */
    display: flex;
    align-items: center;
    gap: 10px;
}