body { font-family: 'Arial', sans-serif; line-height: 1.6; color: #333; margin: 0; padding: 0; background-color: #FFF9E6; }
        .container { max-width: 1200px; margin: 0 auto; padding: 20px; }
        header { background-color: #FF9900; color: white; padding: 15px; text-align: center; position: relative; }
        .logo { font-size: 28px; font-weight: bold; letter-spacing: 2px; }
        nav ul { list-style: none; padding: 0; display: flex; justify-content: center; }
        nav ul li { margin: 0 15px; }
        nav ul li a { color: white; text-decoration: none; }
        .mobile-menu-btn { display: none; position: absolute; right: 20px; top: 20px; background: none; border: none; color: white; font-size: 24px; }
        h1 { color: #E67E22; text-align: center; margin-bottom: 30px; }
        h2 { color: #D35400; border-bottom: 2px solid #F39C12; padding-bottom: 5px; }
        h3 { color: #E67E22; }
        .game-buttons { text-align: center; margin: 30px 0; }
        .btn { display: inline-block; padding: 12px 30px; margin: 0 10px; background-color: #E67E22; color: white; text-decoration: none; border-radius: 5px; font-weight: bold; }
        .btn:hover { background-color: #D35400; }
        .image-container { text-align: center; margin: 30px 0; }
        .game-image { max-width: 100%; height: auto; border-radius: 10px; }
        footer { background-color: #333; color: white; text-align: center; padding: 20px; margin-top: 50px; }
        .copyright { margin-top: 20px; font-size: 12px; }
        @media (max-width: 768px) {
            nav ul { display: none; flex-direction: column; }
            nav ul.active { display: flex; }
            .mobile-menu-btn { display: block; }
            .container { padding: 15px; }
        }
