body { font-family: 'Arial', sans-serif; line-height: 1.6; color: #333; max-width: 1200px; margin: 0 auto; padding: 20px; }
        header { background-color: #FFD700; padding: 15px; border-radius: 8px; margin-bottom: 30px; }
        .logo { font-size: 28px; font-weight: bold; color: #8B0000; text-shadow: 1px 1px 2px rgba(0,0,0,0.2); }
        nav { display: flex; justify-content: space-between; align-items: center; }
        .mobile-menu-btn { display: none; background: #8B0000; color: white; border: none; padding: 8px 12px; border-radius: 4px; cursor: pointer; }
        .nav-links a { margin-left: 15px; text-decoration: none; color: #8B0000; font-weight: bold; }
        h1 { color: #8B0000; border-bottom: 2px solid #FFD700; padding-bottom: 10px; }
        h2 { color: #B22222; margin-top: 30px; }
        h3 { color: #CD5C5C; margin-top: 25px; }
        .btn { display: inline-block; background: #8B0000; color: white; padding: 10px 20px; margin: 10px 5px; border-radius: 5px; text-decoration: none; font-weight: bold; }
        .btn:hover { background: #B22222; }
        .game-img { max-width: 100%; height: auto; margin: 20px 0; border-radius: 8px; }
        footer { margin-top: 50px; padding-top: 20px; border-top: 1px solid #ddd; }
        .tags { margin: 20px 0; }
        .tag { display: inline-block; background: #f0f0f0; padding: 5px 10px; margin-right: 5px; border-radius: 3px; }
        @media (max-width: 768px) {
            .nav-links { display: none; }
            .mobile-menu-btn { display: block; }
            .nav-links.active { display: flex; flex-direction: column; margin-top: 15px; }
            .nav-links a { margin: 5px 0; }
        }
