body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            margin: 0;
            padding: 0;
            color: #333;
            background-color: #FFF9E6;
        }
        .header {
            background-color: #FFD700;
            padding: 15px 0;
            text-align: center;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        .logo {
            font-size: 28px;
            font-weight: bold;
            color: #8B0000;
            text-decoration: none;
        }
        .nav {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 10px;
        }
        .nav a {
            color: #8B0000;
            text-decoration: none;
            font-weight: bold;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
        }
        .container {
            max-width: 1200px;
            margin: 20px auto;
            padding: 0 20px;
        }
        h1 {
            color: #8B0000;
            font-size: 32px;
            margin-bottom: 20px;
        }
        h2 {
            color: #B8860B;
            font-size: 24px;
            margin-top: 30px;
            margin-bottom: 15px;
        }
        h3 {
            color: #D2691E;
            font-size: 20px;
            margin-top: 25px;
            margin-bottom: 10px;
        }
        .btn {
            display: inline-block;
            background-color: #8B0000;
            color: white;
            padding: 10px 20px;
            margin: 10px 5px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: bold;
            transition: background-color 0.3s;
        }
        .btn:hover {
            background-color: #A52A2A;
        }
        .game-image {
            max-width: 100%;
            height: auto;
            margin: 20px 0;
            border-radius: 10px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.2);
        }
        .footer {
            background-color: #8B0000;
            color: white;
            text-align: center;
            padding: 20px 0;
            margin-top: 30px;
        }
        .footer a {
            color: #FFD700;
            text-decoration: none;
        }
        @media (max-width: 768px) {
            .nav {
                flex-direction: column;
                align-items: center;
                display: none;
            }
            .nav.active {
                display: flex;
            }
            .mobile-menu-btn {
                display: block;
                margin: 10px auto;
            }
            h1 {
                font-size: 28px;
            }
            h2 {
                font-size: 22px;
            }
        }
