 body {
            font-family: 'Arial', sans-serif;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            min-height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 20px;
            margin: 0;
        }

        .page-layout {
            display: grid;
            grid-template-columns: repeat(2, minmax(280px, 1fr));
            gap: 24px;
            width: min(1200px, 100%);
            align-items: start;
        }

        .container {
            text-align: center;
            background: rgba(255, 255, 255, 0.95);
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
            width: 100%;
            max-width: 100%;
            box-sizing: border-box;
            margin: 0;
        }

        h1 {
            color: #667eea;
            margin-bottom: 10px;
            font-size: 2.5em;
        }

        .subtitle {
            color: #666;
            margin-bottom: 40px;
            font-size: 1.1em;
        }

        .games-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin-top: 30px;
        }

        .game-link {
            display: block;
            padding: 20px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            text-decoration: none;
            border-radius: 10px;
            font-size: 1.1em;
            font-weight: bold;
            transition: transform 0.3s, box-shadow 0.3s;
            box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
        }

        .game-link:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(102, 126, 234, 0.6);
        }
        .info-box {
        margin: 40px auto 0 auto;
        max-width: 480px;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: #fff;
        border-radius: 16px;
        box-shadow: 0 2px 16px rgba(60,60,120,0.10);
        padding: 28px 24px 20px 24px;
        font-size: 16px;
        text-align: center;
        border: 1px solid #4a90e2;
    }
    .info-box .github-btn {
        display: inline-block;
        margin-top: 18px;
        padding: 10px 22px;
        background: #fff;
        color: #4a90e2;
        font-weight: 600;
        border-radius: 8px;
        border: none;
        font-size: 16px;
        text-decoration: none;
        box-shadow: 0 1px 6px rgba(60,60,120,0.08);
        transition: background 0.2s, color 0.2s;
        cursor: pointer;
    }
    .info-box .github-btn:hover {
        background: #e6f0ff;
        color: #764ba2;
    }
    .info-box2 {
        margin: 0;
        width: 100%;
        max-width: 100%;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: #fff;
        border-radius: 16px;
        box-shadow: 0 2px 16px rgba(60,60,120,0.10);
        padding: 40px 40px 20px 40px;
        font-size: 16px;
        text-align: center;
        border: 1px solid #4a90e2;
        box-sizing: border-box;
    }
    .info-box2 .github-btn {
        display: inline-block;
        margin-top: 18px;
        padding: 10px 22px;
        background: #fff;
        color: #4a90e2;
        font-weight: 600;
        border-radius: 8px;
        border: none;
        font-size: 16px;
        text-decoration: none;
        box-shadow: 0 1px 6px rgba(60,60,120,0.08);
        transition: background 0.2s, color 0.2s;
        cursor: pointer;
    }
    .info-box2 .github-btn:hover {
        background: #e6f0ff;
        color: #764ba2;
    }

    @media (max-width: 900px) {
        .page-layout {
            grid-template-columns: 1fr;
        }
    }