/* Estilos generales */
body, html {
    margin: 5px;
    padding: 0;
    height: 100%;
    font-family: 'Roboto', sans-serif;
    background-color: #1a1a1a; /* Fondo oscuro para un look moderno */
    color: white;
}

body {
    background-image: url('fondo2.png'); /* Cambia por tu imagen de fondo */
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    width: 100%;
    max-width: 400px; /* Limita el ancho para móviles */
    padding: 40px;
    text-align: center;
}

.content {
    background-color: rgba(0, 0, 0, 0.7); /* Fondo oscuro semitransparente */
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}
h1 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
    color: yellow;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}
p {
    font-size: 16px;
    color: #ccc;
    margin-bottom: 20px;
}

.buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    text-decoration: none;
    color: white;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    background-color: rgba(255, 255, 255, 0.9); /* Fondo transparente para los botones */
    border: 1px solid rgba(255, 255, 255, 0.0); /* Borde sutil */
}

.btn img {
    width: 220px;
    height: 70px;
    margin-right: 5px;
}

.steam {
    background: rgba(200, 200, 88, 0.08); /* Transparencia para Google Play */
}

.google-play {
    background: rgba(200, 200, 88, 0.0); /* Transparencia para Google Play */
}

.app-store {
    background: rgba(200, 200, 88, 0.0); /* Transparencia para Google Play */
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    background-color: rgba(255, 255, 255, 0.2); /* Más transparencia al hacer hover */
}