        body {
            margin: 0;
            font-family: Arial, sans-serif;
            background-color: #dbefff;
            color: #1f2d3d;
            text-align: center;
        }

        .container {
            max-width: 1000px;
            margin: auto;
            padding: 40px;
        }

        h1 {
            font-size: 48px;
            margin-bottom: 10px;
        }

        .subtitle {
            font-size: 20px;
            margin-bottom: 60px;
            color: #4b6584;
        }

        .game-card {
            background: white;
            border-radius: 20px;
            padding: 30px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            margin-bottom: 10px;
        }

        .game-title {
            font-size: 32px;
            margin-bottom: 15px;
        }

        .game-description {
            font-size: 18px;
            line-height: 1.6;
            margin-bottom: 30px;
        }

        .screenshots {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .screenshots img {
            width: 220px;
            border-radius: 16px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.15);
        }

        footer {
            margin-top: 60px;
            padding: 20px;
            color: #4b6584;
        }
