   * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;

            
        }
        
        body {
            font-family: Arial, sans-serif;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            height: 100vh;
            text-align: center;
            background: url('img/pc.jpeg') no-repeat center center;
            background-size: cover;
        }
        
        /* Cambiar imagen de fondo en pantallas pequeñas (móviles) */
        @media only screen and (max-width: 768px) {
            body {
                background: url('img/movil.jpeg') no-repeat center center;
                background-size: cover;
            }
        }


        .container {
            position: relative;
            max-width: 768px;
            width: 100%;
            text-align: center;
    
        }

        .container img {
            width: 100%;
            height: auto;
            display: block;
        }

        .text-overlay {
            position: absolute;
            top: 20%;
            left: 50%;
            transform: translate(-50%, -20%);
            text-align: center;
            width: 90%;
        }

        .text-overlay h2 {
            font-size: 1.7em;
            font-weight: bold;
            color: #e3b342;
            text-shadow: 2px 2px 5px black;
            margin-bottom: 15px;
         
        }

        .text-overlay p {
            font-size: 1em;
            padding: 12px;
            color: white;
            border: 2px solid #f7d774; /* Amarillo más claro y opaco */
            display: inline-block;
            border-radius: 100px;
            box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
            margin-bottom: 20px;
        }


        .button-container {
            margin-top: 25%;
        }
        
        @media (max-width: 768px) {
            .button-container {
                margin-top: 85%;
            }
        }


        .casino-button {
            display: inline-block;
            padding: 15px 30px;
            font-size: 1.4em;
            font-weight: bold;
            text-transform: uppercase;
            color: black;
            background: linear-gradient(45deg, #ffcc00, #ff9900);
            border: none;
            border-radius: 50px;
            box-shadow: 0 5px 15px rgba(255, 204, 0, 0.5);
            text-decoration: none;
            transition: transform 0.2s, box-shadow 0.3s;
            position: relative;
            overflow: hidden;
        }

        .casino-button::before {
            content: "";
            position: absolute;
            top: -100%;
            left: -100%;
            width: 300%;
            height: 300%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 70%);
            transition: all 0.5s;
        }

        .casino-button:hover {
            transform: scale(1.1);
            box-shadow: 0 5px 25px rgba(255, 204, 0, 0.8);
        }

        .casino-button:hover::before {
            top: 0;
            left: 0;
        }