* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            background: linear-gradient(135deg, #0f0f1a, #1c2526);
            font-family: 'Poppins', sans-serif;
            color: #fff;
            overflow: hidden;
        }

        .container {
            display: flex;
            gap: 30px;
            flex-wrap: wrap;
            justify-content: center;
            padding: 20px;
        }

        .game-button {
            position: relative;
            width: 320px;
            height: 420px;
            border-radius: 20px;
            overflow: hidden;
            backdrop-filter: blur(10px);
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
            transition: transform 0.4s ease, box-shadow 0.4s ease;
            cursor: pointer;
            text-decoration: none;
            overflow: hidden;
        }

        .game-button:hover {
            transform: translateY(-12px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.7), 0 0 20px rgba(255, 255, 255, 0.2);
        }

        .game-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .game-button:hover::before {
            opacity: 1;
        }

        .game-button img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: brightness(0.5) contrast(1.2);
            transition: filter 0.4s ease, transform 0.4s ease;
        }

        .game-button:hover img {
            filter: brightness(0.7) contrast(1.3);
            transform: scale(1.05);
        }

        .game-button .title {
            position: absolute;
            bottom: 30px;
            left: 20px;
            font-size: 28px;
            font-weight: 700;
            text-transform: uppercase;
            color: #fff;
            text-shadow: 0 0 10px rgba(255, 255, 255, 0.8), 0 0 20px rgba(255, 255, 255, 0.5);
            letter-spacing: 1px;
            z-index: 1;
            transition: text-shadow 0.4s ease;
        }

        .game-button:hover .title {
            text-shadow: 0 0 15px rgba(255, 255, 255, 1), 0 0 30px rgba(255, 255, 255, 0.7);
        }

        .glow-effect {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 10%, transparent 60%);
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .game-button:hover .glow-effect {
            opacity: 1;
        }

        @media (max-width: 768px) {
            .game-button {
                width: 280px;
                height: 360px;
            }

            .game-button .title {
                font-size: 24px;
            }
        }

        @media (max-width: 480px) {
            .game-button {
                width: 90%;
                height: 320px;
            }

            .game-button .title {
                font-size: 20px;
                bottom: 20px;
            }
        }

        @keyframes pulse {
            0% {
                box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
            }
            50% {
                box-shadow: 0 0 30px rgba(255, 255, 255, 0.4);
            }
            100% {
                box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
            }
        }

        .game-button:active {
            animation: pulse 0.5s ease-in-out;
        }