        :root {
            --bg-main: #0f172a;
            --bg-card: #1e293b;
            --bg-card-hover: #334155;
            --primary: #6366f1;
            --primary-glow: rgba(99, 102, 241, 0.4);
            --secondary: #ec4899;
            --text-main: #f8fafc;
            --text-muted: #94a3b8;
            --border: #334155;
            --glass-bg: rgba(30, 41, 59, 0.7);
            --glass-border: rgba(255, 255, 255, 0.1);
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: 'Inter', sans-serif;
            font-size: 18px; /* Increased base size */
            background-color: var(--bg-main);
            color: var(--text-main);
            background-image: 
                radial-gradient(at 0% 0%, rgba(99, 102, 241, 0.15) 0px, transparent 50%),
                radial-gradient(at 100% 0%, rgba(236, 72, 153, 0.15) 0px, transparent 50%);
            background-attachment: fixed;
            min-height: 100vh;
        }

        h1, h2, h3, .logo-text, .btn {
            font-family: 'Outfit', sans-serif;
        }

        a { text-decoration: none; color: inherit; }

        /* NAVBAR */
        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 24px 50px; /* Increased padding */
            background: rgba(15, 23, 42, 0.9);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--border);
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .logo {
            font-size: 28px; /* High visibility */
            font-weight: 800;
            background: linear-gradient(135deg, #fff 0%, #94a3b8 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .nav-links {
            display: flex;
            gap: 40px;
            align-items: center;
        }

        .nav-item {
            color: var(--text-muted);
            font-size: 16px; /* Increased size */
            font-weight: 500;
            cursor: pointer;
            transition: color 0.2s;
            position: relative;
        }
        .nav-item:hover { color: #fff; }

        /* DROPDOWN */
        .dropdown {
            position: relative;
            display: inline-block;
            margin-right: 100px;
        }

        .dropdown-content { 
            display: none;
            position: absolute;
            background-color: var(--bg-card);
            min-width: 220px;
            box-shadow: 0 8px 16px 0 rgba(0,0,0,0.5);
            border: 1px solid var(--border);
            border-radius: 12px;
            z-index: 1;
            top: 40px; /* Adjusted top position */
            left: -10px;
            padding: 10px 0;
            backdrop-filter: blur(10px);
        }

        /* Replaced :hover with .show class for click interaction */
        .dropdown-content.show {
            display: block;
            animation: fadeIn 0.2s forwards;
        }

        .dropdown-content a {
            color: var(--text-main);
            padding: 12px 20px;
            text-decoration: none;
            display: block;
            font-size: 15px;
            transition: background 0.2s;
        }

        .dropdown-content a:hover {
            background-color: var(--bg-card-hover);
            color: var(--primary);
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(-10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* LAYOUT */
        .page-wrapper {
            display: flex;
            justify-content: center;
            width: 100%;
            padding: 20px;
            gap: 20px;
        }

        .ad-column {
            width: 180px; /* Space for 160x600 ad */
            flex-shrink: 0;
            display: none; /* Hidden on smaller screens */
        }
        
        .ad-sticky {
            position: sticky;
            top: 100px;
            width: 160px;
            height: 600px;
            background: transparent;
            border: none;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: transparent;
            font-size: 12px;
            text-align: center;
            margin: 0 auto;
        }

        @media(min-width: 1300px) {
            .ad-column { display: block; }
        }

        .container {
            flex: 1;
            max-width: 1400px;
            min-width: 0;
        }

        /* AD PLACEHOLDERS */
        .ad-placeholder {
            background: transparent;
            border: none;
            border-radius: 12px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: transparent;
            font-size: 12px;
            text-align: center;
            overflow: hidden;
            margin-bottom: 30px;
            width: 100%;
        }
        
        .ad-header { width: 100%; max-width: 900px; height: 90px; margin: 0 auto 40px auto; }
        .ad-footer { width: 100%; max-width: 900px; height: 90px; margin: 60px auto 20px auto; }
        .ad-in-feed { grid-column: 1 / -1; height: 120px; width: 100%; margin: 20px 0; }

        /* HERO */
        .hero {
            text-align: center;
            margin-bottom: 50px;
            padding: 40px 0;
        }

        .hero h1 {
            font-size: 64px;
            font-weight: 800;
            margin-bottom: 20px;
            line-height: 1.1;
            letter-spacing: -1.5px;
        }

        .hero p {
            font-size: 22px;
            color: var(--text-muted);
            max-width: 700px;
            margin: 0 auto 40px auto;
        }

        .search-container {
            position: relative;
            max-width: 750px;
            margin: 0 auto;
        }

        .search-input {
            width: 100%;
            background: rgba(30, 41, 59, 0.6);
            border: 1px solid var(--border);
            padding: 22px 30px;
            border-radius: 60px;
            color: #fff;
            font-size: 20px;
            outline: none;
            backdrop-filter: blur(10px);
            transition: border-color 0.2s, box-shadow 0.2s;
        }

        .search-input:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
        }

        .search-icon {
            position: absolute;
            right: 25px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--text-muted);
            font-size: 24px;
        }

        /* TOOL GRID */
        .tools-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
            gap: 30px;
        }

        .tool-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 20px;
            padding: 28px;
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            gap: 18px;
            position: relative;
            text-decoration: none;
        }

        .tool-card:hover {
            transform: translateY(-5px);
            border-color: var(--primary);
            box-shadow: 0 15px 40px -10px rgba(0, 0, 0, 0.6);
            background: var(--bg-card-hover);
        }

        .tool-icon {
            width: 56px;
            height: 56px;
            background: linear-gradient(135deg, #334155 0%, #1e293b 100%);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            margin-bottom: 5px;
        }

        .tool-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
        }

        .tool-title {
            font-size: 22px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 6px;
        }

        .tool-desc {
            font-size: 16px;
            color: var(--text-muted);
            line-height: 1.6;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            flex-grow: 1;
        }

        .tool-footer {
            margin-top: auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.05);
        }

        .badge {
            font-size: 12px;
            padding: 5px 10px;
            border-radius: 6px;
            background: rgba(99, 102, 241, 0.15);
            color: #818cf8;
            font-weight: 700;
            text-transform: uppercase;
        }

        .visit-btn {
            font-size: 14px;
            font-weight: 600;
            color: #fff;
            background: var(--border);
            padding: 8px 16px;
            border-radius: 8px;
            transition: background 0.2s;
        }

        .tool-card:hover .visit-btn {
            background: var(--primary);
        }

        /* INFORMATIONAL PAGES (About, Privacy, etc.) */
        .content-page {
            max-width: 900px;
            background: rgba(30, 41, 59, 0.4);
            border: 1px solid var(--border);
            border-radius: 24px;
            backdrop-filter: blur(10px);
            padding: 50px;
            box-shadow: 0 20px 50px rgba(0,0,0,0.3);
            margin-bottom: 40px;
        }

        .content-page h1 {
            font-size: 48px;
            margin-bottom: 24px;
            text-align: center;
            color: #fff;
            letter-spacing: -1px;
        }

        .content-page h2 {
            color: #fff;
            margin: 40px 0 20px 0;
            font-size: 28px;
            border-left: 4px solid var(--primary);
            padding-left: 20px;
        }

        .content-page h3 {
            color: #fff;
            margin: 30px 0 15px 0;
            font-size: 22px;
            font-weight: 700;
        }

        .content-page p {
            line-height: 1.8;
            color: var(--text-muted);
            margin-bottom: 25px;
            font-size: 18px;
        }

        .content-page ul, .content-page ol {
            margin-left: 0;
            padding-left: 20px;
            margin-bottom: 30px;
            color: var(--text-muted);
            list-style-type: none; /* Custom styling */
        }

        .content-page li {
            margin-bottom: 15px;
            line-height: 1.7;
            position: relative;
            padding-left: 25px;
        }

        .content-page li::before {
            content: "→";
            position: absolute;
            left: 0;
            color: var(--primary);
            font-weight: 800;
        }

        .content-page strong {
            color: #fff;
            font-weight: 600;
            border-bottom: 1px solid rgba(99, 102, 241, 0.3);
        }

        /* CUSTOM BOXES (Mission, Email, etc.) */
        .highlight-box {
            background: rgba(99, 102, 241, 0.05);
            border: 1px solid rgba(99, 102, 241, 0.3);
            padding: 40px;
            border-radius: 20px;
            margin: 50px 0;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }

        .highlight-box h3 {
            color: var(--primary);
            margin-bottom: 20px;
            font-size: 26px;
            margin-top: 0;
        }

        .email-link {
            color: var(--primary) !important;
            font-weight: 700;
            font-size: 24px;
            transition: opacity 0.2s;
        }
        .email-link:hover { opacity: 0.8; }

        /* FOOTER */
        .footer {
            margin-top: 60px;
            padding: 80px 40px;
            border-top: 1px solid var(--border);
            color: var(--text-muted);
            background: rgba(15, 23, 42, 0.95);
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 60px;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .info-section {
            margin-top: 80px;
            padding: 40px;
            background: rgba(30, 41, 59, 0.4);
            border-radius: 24px;
            border: 1px solid var(--border);
            backdrop-filter: blur(10px);
        }

        .info-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin-top: 20px;
        }

        .info-card h3 {
            color: var(--primary);
            margin-bottom: 15px;
            font-size: 24px;
        }

        .info-card p, .info-card li {
            color: var(--text-muted);
            line-height: 1.8;
            font-size: 16px;
        }

        .info-card ul {
            list-style: none;
        }

        .info-card li {
            margin-bottom: 12px;
            display: flex;
            align-items: flex-start;
            gap: 10px;
        }

        .info-card li::before {
            content: "✦";
            color: var(--primary);
            font-weight: bold;
        }

        .footer-col h4 {
            color: #fff;
            margin-bottom: 25px;
            font-size: 20px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .footer-col a {
            display: block;
            margin-bottom: 15px;
            font-size: 16px;
            transition: color 0.2s;
            opacity: 0.8;
        }
        
        .footer-col a:hover { color: var(--primary); opacity: 1; }

        .copyright {
            text-align: center;
            margin-top: 60px;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.05);
            font-size: 14px;
            opacity: 0.7;
        }

        @media (max-width: 1024px) {
            .navbar { padding: 15px 25px; }
            .hero h1 { font-size: 42px; }
            .page-wrapper { display: block; padding: 20px; }
            .tools-grid { grid-template-columns: 1fr; }
            .content-page { padding: 30px 20px; }
            .content-page h1 { font-size: 32px; }
            .ad-header, .ad-footer { width: 100%; height: auto; }
            .footer-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
            .footer-col a { display: inline-block; margin: 0 10px 10px 10px; }
        }
