body { font-family: 'Arial', sans-serif; line-height: 1.6; color: #333; max-width: 1200px; margin: 0 auto; padding: 20px; background-color: #f5f5f5; }
        header { background-color: #000; color: #ff1e1e; padding: 15px; position: relative; }
        .logo { font-size: 28px; font-weight: bold; text-transform: uppercase; letter-spacing: 2px; }
        nav { display: flex; justify-content: space-between; align-items: center; }
        .mobile-toggle { display: none; cursor: pointer; }
        .nav-links { display: flex; gap: 20px; }
        .nav-links a { color: white; text-decoration: none; }
        h1 { color: #ff1e1e; border-bottom: 2px solid #ff1e1e; padding-bottom: 10px; }
        h2 { color: #333; margin-top: 30px; }
        h3 { color: #555; margin-top: 25px; }
        .download-btn, .login-btn { display: inline-block; background-color: #ff1e1e; color: white; padding: 12px 25px; margin: 15px 0; border-radius: 5px; text-decoration: none; font-weight: bold; }
        .image-container { text-align: center; margin: 25px 0; }
        img { max-width: 100%; height: auto; border-radius: 8px; }
        .table-container { overflow-x: auto; margin: 20px 0; }
        table { width: 100%; border-collapse: collapse; }
        th, td { padding: 12px; border: 1px solid #ddd; text-align: left; }
        th { background-color: #ff1e1e; color: white; }
        footer { margin-top: 50px; padding: 20px; background-color: #000; color: white; text-align: center; }
        .tag-cloud { margin: 30px 0; }
        .tag-cloud a { background-color: #333; color: white; padding: 5px 10px; margin: 5px; border-radius: 3px; text-decoration: none; display: inline-block; }
        @media (max-width: 768px) {
            .nav-links { display: none; flex-direction: column; width: 100%; position: absolute; top: 60px; left: 0; background-color: #000; }
            .nav-links.active { display: flex; }
            .mobile-toggle { display: block; }
            .table-container { font-size: 14px; }
        }
