        :root {
            --bg-dark: #0f172a;
            --text-main: #f8fafc;
            --text-muted: #94a3b8;
            
            /* Tool Colors */
            --insta-grad: linear-gradient(135deg, #8b5cf6, #ec4899);
            --fb-grad: linear-gradient(135deg, #1877f2, #00c6ff);
            --font-grad: linear-gradient(135deg, #f59e0b, #d97706);
            --tag-grad: linear-gradient(135deg, #10b981, #3b82f6);
        }

        body {
            background-color: var(--bg-dark);
            color: var(--text-main);
            font-family: 'Segoe UI', system-ui, sans-serif;
            margin: 0;
            padding: 0;
            overflow-x: hidden;
        }

        /* --- BACKGROUND EFFECTS --- */
        .bg-glow {
            position: fixed;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, rgba(0,0,0,0) 70%);
            top: -200px;
            left: 50%;
            transform: translateX(-50%);
            z-index: -1;
            pointer-events: none;
        }

        /* --- RESPONSIVE NAVBAR --- */
        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 30px;
            background: rgba(15, 23, 42, 0.8);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .logo {
            font-size: 1.4rem;
            font-weight: 800;
            display: flex; align-items: center; gap: 8px;
            color: white;
            text-decoration: none;
        }

        /* Desktop Links */
        /* --- NAVBAR LINKS FIX --- */
        .nav-menu {
            display: flex;
            gap: 20px;
            align-items: center;
        }

        /* Targeted specifically to make text visible */
        .nav-menu a {
            color: #e2e8f0 !important; /* Forces bright color */
            text-decoration: none;     /* Removes underline */
            font-size: 0.95rem;
            font-weight: 600;
            transition: all 0.3s;
            padding: 8px 12px;
            border-radius: 8px;
            opacity: 0.9;
        }

        .nav-menu a:hover {
            color: #ffffff !important; /* Pure white on hover */
            background: rgba(255, 255, 255, 0.1);
            opacity: 1;
            transform: translateY(-1px);
        }

        /* Hamburger Icon (Hidden on Desktop) */
        .hamburger {
            display: none;
            cursor: pointer;
        }

        .bar {
            display: block;
            width: 25px;
            height: 3px;
            margin: 5px auto;
            -webkit-transition: all 0.3s ease-in-out;
            transition: all 0.3s ease-in-out;
            background-color: white;
            border-radius: 2px;
        }

        /* --- MOBILE STYLES --- */
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }

            .hamburger.active .bar:nth-child(2) { opacity: 0; }
            .hamburger.active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
            .hamburger.active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

            .nav-menu {
                position: fixed;
                left: -100%;
                top: 60px; /* Below navbar */
                flex-direction: column;
                background-color: rgba(15, 23, 42, 0.95);
                backdrop-filter: blur(15px);
                width: 100%;
                text-align: center;
                transition: 0.3s;
                padding: 20px 0;
                border-bottom: 1px solid rgba(255,255,255,0.1);
                box-shadow: 0 10px 30px rgba(0,0,0,0.5);
                gap: 0;
            }

            .nav-menu.active {
                left: 0;
            }

            .nav-link {
                display: block;
                padding: 15px 0;
                width: 100%;
                border-bottom: 1px solid rgba(255,255,255,0.03);
            }
            
            .hero h1 { font-size: 2.5rem; }
            .grid-container { grid-template-columns: 1fr; }
            .features-grid { grid-template-columns: 1fr; }
        }
        
        /* --- HERO SECTION --- */
        .hero {
            text-align: center;
            padding: 60px 20px 50px;
            max-width: 800px;
            margin: 0 auto;
        }

        .hero h1 {
            font-size: 3.5rem;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 20px;
            background: linear-gradient(to right, #fff, #94a3b8);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero p {
            font-size: 1.2rem;
            color: var(--text-muted);
            margin-bottom: 40px;
            line-height: 1.6;
        }

        .dynamic-text {
            background: var(--insta-grad);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        /* --- TOOLS GRID --- */
        .grid-container {
            display: grid;
            grid-template-columns: repeat(2, 1fr); 
            gap: 30px;
            max-width: 1000px; 
            margin: 0 auto 80px;
            padding: 0 20px;
        }

        .tool-card {
            background: rgba(30, 41, 59, 0.4);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 24px;
            padding: 30px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(10px);
            cursor: pointer;
            text-decoration: none;
            display: block;
        }

        .tool-card:hover {
            transform: translateY(-8px);
            border-color: rgba(255, 255, 255, 0.1);
            background: rgba(30, 41, 59, 0.6);
        }

        .icon-box {
            width: 60px;
            height: 60px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            margin-bottom: 20px;
        }

        /* Theme Variants */
        .card-insta .icon-box { background: rgba(139, 92, 246, 0.2); color: #c084fc; }
        .card-insta:hover { box-shadow: 0 20px 40px -10px rgba(139, 92, 246, 0.2); }
        .card-insta .btn-link { color: #c084fc; }

        .card-tag .icon-box { background: rgba(16, 185, 129, 0.2); color: #34d399; }
        .card-tag:hover { box-shadow: 0 20px 40px -10px rgba(16, 185, 129, 0.2); }
        .card-tag .btn-link { color: #34d399; }

        .card-fb .icon-box { background: rgba(24, 119, 242, 0.2); color: #60a5fa; }
        .card-fb:hover { box-shadow: 0 20px 40px -10px rgba(24, 119, 242, 0.2); }
        .card-fb .btn-link { color: #60a5fa; }

        .card-font .icon-box { background: rgba(245, 158, 11, 0.2); color: #fbbf24; }
        .card-font:hover { box-shadow: 0 20px 40px -10px rgba(245, 158, 11, 0.2); }
        .card-font .btn-link { color: #fbbf24; }

        .tool-card h3 { margin: 0 0 10px 0; font-size: 1.3rem; color: white; }
        .tool-card p { margin: 0 0 20px 0; color: var(--text-muted); font-size: 0.95rem; line-height: 1.5; }

        .btn-link { font-weight: 700; font-size: 0.9rem; display: flex; align-items: center; gap: 5px; }

        /* --- FEATURES SECTION --- */
        .features-section {
            padding: 80px 20px;
            text-align: center;
            background: linear-gradient(to bottom, transparent, rgba(15, 23, 42, 1));
            border-top: 1px solid rgba(255,255,255,0.05);
        }

        .features-title { font-size: 2rem; margin-bottom: 50px; }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            max-width: 1100px;
            margin: 0 auto;
        }

        .feature-card {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.05);
            padding: 40px 20px;
            border-radius: 20px;
            transition: all 0.3s;
            position: relative;
            animation: float 6s ease-in-out infinite;
        }

        .feature-card:nth-child(1) { animation-delay: 0s; }
        .feature-card:nth-child(2) { animation-delay: 2s; }
        .feature-card:nth-child(3) { animation-delay: 4s; }

        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-15px); }
            100% { transform: translateY(0px); }
        }

        .feature-card:hover {
            background: rgba(255, 255, 255, 0.06);
            transform: translateY(-15px) scale(1.02);
            animation-play-state: paused;
            border-color: rgba(255, 255, 255, 0.1);
            box-shadow: 0 20px 40px rgba(0,0,0,0.3);
        }

        .feature-icon-wrapper {
            width: 70px; height: 70px; margin: 0 auto 20px; border-radius: 50%;
            display: flex; align-items: center; justify-content: center; font-size: 2rem;
            background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.02));
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        }
        .feature-card h3 { margin: 0 0 10px 0; font-size: 1.2rem; }
        .feature-card p { margin: 0; color: var(--text-muted); font-size: 0.95rem; line-height: 1.5; }

        /* --- FAQ SECTION --- */
        .faq-section {
            max-width: 800px;
            margin: 0 auto 100px;
            padding: 0 20px;
        }
        .faq-title { text-align: center; font-size: 2rem; margin-bottom: 40px; color: var(--text-main); }
        .faq-item {
            background: rgba(30, 41, 59, 0.4);
            border: 1px solid rgba(255, 255, 255, 0.05);
            margin-bottom: 15px;
            border-radius: 12px;
            overflow: hidden;
            transition: all 0.3s;
        }
        .faq-item:hover { border-color: rgba(255,255,255,0.1); }
        .faq-question {
            width: 100%; padding: 20px; text-align: left; background: transparent; border: none;
            color: var(--text-main); font-size: 1.1rem; font-weight: 600; cursor: pointer;
            display: flex; justify-content: space-between; align-items: center;
        }
        .faq-icon { transition: transform 0.3s; font-size: 1.5rem; color: var(--text-muted); }
        .faq-item.active .faq-icon { transform: rotate(45deg); color: #8b5cf6; }
        .faq-answer {
            max-height: 0; overflow: hidden; transition: max-height 0.3s ease-out;
            padding: 0 20px; color: var(--text-muted); line-height: 1.6;
        }
        .faq-item.active .faq-answer { padding-bottom: 20px; }

/* --- FOOTER STYLES --- */
footer {
    text-align: center;
    padding: 40px 20px;
    margin-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.05); /* Subtle top line */
    background-color: rgba(15, 23, 42, 0.4); /* Slight background tint */
}

footer p {
    color: #94a3b8; /* Muted text color */
    font-size: 0.9rem;
    margin: 0 0 15px 0; /* Space between copyright and links */
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 25px; /* Space between each link */
    flex-wrap: wrap; /* Allows links to wrap on very small screens */
}

.footer-links a {
    color: #64748b;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: white; /* Brighten on hover */
    text-decoration: underline;
}

/* Mobile Tweak: Stack links closer if needed */
@media (max-width: 600px) {
    .footer-links {
        gap: 15px;
        font-size: 0.85rem;
    }
}
