/* --- 基本設定 --- */
        body {
            font-family: 'Helvetica Neue', Arial, sans-serif;
            margin: 0;
            padding: 0;
            background-color: #f4f4f9;
            color: #333;
        }
        header {
            background-color: #2c3e50;
            color: white;
            padding: 2rem 0;
            text-align: center;
        }
        h1 { margin: 0; font-size: 2.5rem; }
        p.subtitle { color: #bdc3c7; margin-top: 10px; }

        /* --- グリッドレイアウト --- */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        /* --- ゲームカードのデザイン --- */
        .game-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
            display: flex;
            flex-direction: column;
        }
        .game-card:hover {
            transform: translateY(-5px);
        }
        
        /* ゲームのスクショ画像エリア（画像がない場合はグレーになります） */
        .game-image {
            width: 100%;
            height: 100%;
            background-color: #ddd;
            object-fit: cover;
        }

        .game-info {
            padding: 20px;
            flex-grow: 1; /* 下部のボタンを揃えるために必要 */
        }
        .game-title {
            font-size: 1.5rem;
            margin: 0 0 10px 0;
            color: #2c3e50;
        }
        .game-desc {
            font-size: 0.95rem;
            line-height: 1.6;
            color: #666;
            margin-bottom: 20px;
        }

        /* --- ダウンロードボタンエリア --- */
        .download-buttons {
            padding: 20px;
            background-color: #f9f9f9;
            border-top: 1px solid #eee;
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }
        
        .btn {
            flex: 1;
            padding: 12px;
            border-radius: 5px;
            text-decoration: none;
            text-align: center;
            font-weight: bold;
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            transition: opacity 0.2s;
        }
        .btn:hover { opacity: 0.8; }

        /* Windowsボタンの色 */
        .btn-win {
            background-color: #0078D7;
            color: white;
        }
        /* Macボタンの色 */
        .btn-mac {
            background-color: #999999;
            color: white;
        }

        /* --- フッター --- */
        footer {
            text-align: center;
            padding: 20px;
            color: #7f8c8d;
            font-size: 0.9rem;
            margin-top: 40px;
        }