body {
            font-family: 'Arial', sans-serif;
            margin: 0;
            padding: 0;
            background: linear-gradient(135deg, #3a0ca3, #7209b7, #f72585);
            color: #fff;
            background-attachment: fixed;
            background-size: cover;
            position: relative;
        }
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 30px 20px;
        }
        .hero {
            text-align: center;
            margin-bottom: 40px;
        }
        h1, h2 {
            font-weight: 700;
            text-transform: uppercase;
            font-size: 2em;
        }
        h1 {
            font-size: 3em;
        }
        .tabs {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-around;
            margin-bottom: 40px;
            padding: 12px;
            backdrop-filter: blur(12px);
            background: rgba(255, 255, 255, 0.1);
            border-radius: 16px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.2);
        }
        .tab {
            padding: 15px 25px;
            margin: 5px;
            cursor: pointer;
            font-weight: bold;
            border-radius: 12px;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(8px);
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            transition: 0.3s ease;
            color: #fff;
        }
        .tab:hover {
            background: rgba(255, 255, 255, 0.25);
        }
        .tool-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }
        .tool-card {
            backdrop-filter: blur(12px);
            background: rgba(255, 255, 255, 0.1);
            border-radius: 16px;
            padding: 20px;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: #fff;
        }
        .tool-card img {
            width: 100%;
            height: auto;
            border-radius: 10px;
        }
        .tool-card h3 {
            font-size: 1.3em;
            margin-top: 10px;
        }
        .tool-card p {
            font-size: 0.95em;
            color: #eee;
        }
        .cta {
            text-align: center;
            margin: 60px 0;
        }
        .cta a {
            display:block;
            text-decoration:none;
            margin:20px auto;
            width:160px;
            padding: 12px 28px;
            font-size: 1.2em;
            font-weight: 700;
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 12px;
            cursor: pointer;
            box-shadow: 0 4px 12px rgba(0,0,0,0.2);
            transition: all 0.3s ease;
            color: #fff;
        }
        .cta button:hover {
            background: rgba(255, 255, 255, 0.3);
        }
        .footer {
            text-align: center;
            font-size: 0.9em;
            font-weight: bold;
            margin-top: 40px;
            color: #ddd;
        }