@font-face {
    font-family: 'Valorant';
    src: url('font/vfont.ttf') format('truetype');
}

body {
    margin: 0;
    font-family: 'Valorant', sans-serif;
    overflow: hidden;
    background-color: #121212;
    color: #ffffff;
}

.video-container {
    position: relative;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; 
    z-index: 1;
    transition: filter 0.5s ease-in-out; 
    will-change: filter; 
    border: none; 
}

.hidden {
    display: none;
}

video.blurred {
    filter: blur(8px); 
    transition: filter 0.5s ease-in-out; 
}

#content {
    position: absolute;
    z-index: 3; 
    text-align: center;
    color: white;
    backdrop-filter: none;
    padding: 20px;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0; 
    transform: translateY(50px); 
    transition: opacity 3s ease-in-out, transform 3s ease-in-out; 

}

.metodo-pago img {
  width: 20px;
  height: 20px;
}

.tabla-precios img {
  width: 20px;
  height: 20px;
  margin-right: 5px;
  margin-left: 5px;
}

#content.visible {
    opacity: 1; 
    transform: translateY(0); 
}

h1 {
    font-size: 2.5rem;
    margin: 0 0 20px;
}

.logo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 20px auto;
    display: block;
}

.button {
    display: inline-block;
    padding: 10px 20px;
    font-size: 1.2rem;
    color: white;
    text-decoration: none;
    border: 2px solid white;
    border-radius: 5px;
    transition: background 0.3s ease, color 0.3s ease;
    background-color: #ff0000;
    border-color: #ff0000;
  	user-select: none;
    margin: 10px;
}

.buton {
    display: inline-block;
    padding: 10px 20px;
    font-size: 1.2rem;
    color: white;
    text-decoration: none;
    border: 2px solid white;
    border-radius: 5px;
    transition: background 0.3s ease, color 0.3s ease;
    background-color: #008000;
    border-color: #008000;
    user-select: none;
    margin: 10px;
}

.button:hover {
    background: white;
    color: #ff0000;
}

#contenido-dinamico {
    position: absolute;
    z-index: 3; 
    text-align: center;
    color: white;
    padding: 20px;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.7); 
    width: 80%; 
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    user-select: none;
}

#volver {
    display: inline-block;
    padding: 10px 20px;
    font-size: 1.2rem;
    color: white;
    text-decoration: none;
    border: 2px solid white;
    border-radius: 5px;
    transition: background 0.3s ease, color 0.3s ease;
    background-color: #ff0000; 
    border-color: #ff0000;
    margin-top: 20px; 
}

#volver:hover {
    background: white;
    color: #ff0000;
}