body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; line-height: 1.6; color: #333; max-width: 1200px; margin: 0 auto; padding: 20px; }
        h1 { color: #ff6b35; text-align: center; margin-bottom: 10px; }
        h2 { color: #ff8c42; border-bottom: 2px solid #ff6b35; padding-bottom: 5px; }
        h3 { color: #ff9f1c; }
        .logo { font-size: 28px; font-weight: bold; color: #ff6b35; text-shadow: 2px 2px 4px rgba(0,0,0,0.2); }
        .nav { display: flex; justify-content: space-between; align-items: center; background: #fff5e6; padding: 10px; margin-bottom: 20px; }
        .nav-links { display: flex; gap: 15px; }
        .nav-links a { text-decoration: none; color: #ff6b35; font-weight: bold; }
        .mobile-nav-toggle { display: none; cursor: pointer; }
        .buttons { margin: 25px 0; text-align: center; }
        .btn { display: inline-block; padding: 12px 25px; margin: 0 10px; background: #ff6b35; color: white; border-radius: 5px; text-decoration: none; font-weight: bold; }
        .btn:hover { background: #ff8c42; }
        img { max-width: 100%; height: auto; margin: 20px 0; border-radius: 8px; }
        .game-info { background: #fff5e6; padding: 15px; border-radius: 8px; margin: 20px 0; }
        .footer { text-align: center; margin-top: 40px; padding: 20px; background: #333; color: white; }
        @media (max-width: 768px) {
            .nav-links { display: none; flex-direction: column; width: 100%; }
            .nav-links.active { display: flex; }
            .mobile-nav-toggle { display: block; }
            .nav { flex-direction: column; }
        }
