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

        body {
            height: 100%;
            margin: 0;
            padding: 0;
            background: linear-gradient(135deg, #201d3a 0%, #1a1730 50%, #0d0b1a 100%);
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            min-height: 100vh;
            color: #4cb69f;
            overflow-x: hidden;
            position: relative;
            z-index: 1;
        }

        #particles-js {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: transparent;
            z-index: -1;
            pointer-events: none;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20rem;
        }

        .text-center {
            text-align: center;
        }

        .mb-1 { margin-bottom: 0.25rem; }
        .mb-2 { margin-bottom: 0.5rem; }
        .mb-3 { margin-bottom: 1rem; }
        .mb-4 { margin-bottom: 1.5rem; }
        .mb-5 { margin-bottom: 2rem; }

        .mt-1 { margin-top: 0.25rem; }
        .mt-2 { margin-top: 0.5rem; }
        .mt-3 { margin-top: 1rem; }
        .mt-4 { margin-top: 1.5rem; }
        .mt-5 { margin-top: 2rem; }
.header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    padding: 0 20px;
    backdrop-filter: blur(15px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(76, 182, 159, 0.2);
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 24px;
    font-weight: bold;
    background: linear-gradient(to left, #4cb69f, #f5f5f5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.logo i {
    font-size: 28px;
    color: #4cb69f;
}

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

.nav-links a {
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    background: linear-gradient(to left, #4cb69f, #f5f5f5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    background: linear-gradient(to left, #f5f5f5, #4cb69f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.nav-links a:hover::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: #4cb69f;
    border-radius: 1px;
}

.user-menu {
    display: flex;
    align-items: center;
    gap: 16px;
}

.user-menu i {
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #f5f5f5;
}

.notification i {
    color: #4cb69f;
}

.notification i:hover {
    color: #f5f5f5;
    transform: scale(1.1);
}

.user-icon {
    color: #f5f5f5;
}

.user-icon:hover {
    color: #4cb69f;
    transform: scale(1.1);
}

/* Dropdown */
.dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    background: rgba(32, 29, 58, 0.98);
    min-width: 180px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.15);
    z-index: 1;
    border-radius: 8px;
    padding: 8px 0;
}

.dropdown-content a {
    color: #4cb69f;
    padding: 10px 20px;
    text-decoration: none;
    display: block;
    font-size: 16px;
}

.dropdown-content a:hover {
    background: rgba(76, 182, 159, 0.1);
}

.profile-dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-divider {
    border: 0;
    border-top: 1px solid rgba(76, 182, 159, 0.2);
    margin: 8px 0;
}


@media (max-width: 768px) {
    .header {
        height: 60px;
        padding: 0 16px;
    }

    .logo {
        font-size: 20px;
    }

    .logo i {
        font-size: 24px;
    }

    .nav-links {
        display: none;
    }

    .user-menu {
        gap: 12px;
    }

    .user-menu i {
        font-size: 18px;
    }

    .dropdown-content {
        min-width: 160px;
    }

    .dropdown-content a {
        font-size: 14px;
        padding: 8px 16px;
    }

    .mobile-nav-link {
        display: block;
    }
}

@media (min-width: 768px) {
    .mobile-nav-link {
        display: none !important;
    }
}

        .profile-dropdown {
            position: relative;
            display: inline-block;
        }

        .dropdown-content {
            display: none;
            position: absolute;
            right: 0;
            background: rgba(32, 29, 58, 0.98);
            min-width: 180px;
            box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.15);
            z-index: 1;
            border-radius: 8px;
            padding: 8px 0;
        }

        .dropdown-content.active {
            display: block;
        }

        .dropdown-content a {
            color: #4cb69f;
            padding: 10px 20px;
            text-decoration: none;
            display: block;
            font-size: 16px;
        }

        .dropdown-content a:hover {
            background: rgba(76, 182, 159, 0.1);
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.75rem 1.5rem;
            border: none;
            border-radius: 8px;
            font-weight: 500;
            text-decoration: none;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 0.9rem;
        }

        .btn-primary {
            background: linear-gradient(to right, #4cb69f, #2a264f);
            color: #f5f5f5;
        }

        .btn-primary:hover {
            background: linear-gradient(to right, #3aa085, #201d3a);
            transform: translateY(-1px);
        }

        .btn-outline {
            background: none;
            color: #4cb69f;
            border: 2px solid #4cb69f;
        }

        .btn-outline:hover {
            background: linear-gradient(to right, #4cb69f, #2a264f);
            color: #f5f5f5;
            border-color: #4cb69f;
        }

        main {
            max-width: 1200px;
            margin: 0 auto;
            padding: 32px 24px;
        }

        .page-header {
            margin-top: 40px;
            margin-bottom: 32px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            align-items: flex-start;
            flex-wrap: wrap;
            gap: 16px;
        }

        .page-title {
            font-size: 2rem;
            font-weight: bold;
            color: #f5f5f5;
            margin-bottom: 8px;
            text-shadow: 0 1px 3px rgba(76, 182, 159, 0.1);
        }

        .page-subtitle {
            color: #f5f5f5;
            font-size: 1rem;
            opacity: 0.8;
        }

        .search-container {
            position: relative;
            display: flex;
            align-items: center;
            width: 100%;
        }

        .search-input {
            width: 100%;
            padding: 12px 16px 12px 44px;
            border: 2px solid rgba(76, 182, 159, 0.3);
            border-radius: 12px;
            font-size: 14px;
            background: rgba(32, 29, 58, 0.98);
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
            outline: none;
            color: #f5f5f5;
        }

        .search-input:focus {
            border-color: #4cb69f;
            box-shadow: 0 0 0 3px rgba(76, 182, 159, 0.2);
            background: rgba(32, 29, 58, 0.98);
            transform: translateY(-1px);
        }

        .search-input::placeholder {
            color: #f5f5f5;
        }

        .search-icon {
            position: absolute;
            left: 16px;
            color: #4cb69f;
            font-size: 16px;
            pointer-events: none;
        }

        .cards-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 24px;
            margin-bottom: 32px;
        }

        .card {
            background: rgba(32, 29, 58, 0.98);
            backdrop-filter: blur(15px);
            border-radius: 16px;
            padding: 24px;
            box-shadow: 0 4px 20px rgba(32, 29, 58, 0.08);
            border: 1px solid rgba(76, 182, 159, 0.2);
            transition: all 0.3s ease;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, #4cb69f, #201d3a);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .card:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 30px rgba(32, 29, 58, 0.15);
            border-color: #4cb69f;
            background: rgba(32, 29, 58, 0.98);
        }

        .card:hover::before {
            opacity: 1;
        }

        .card-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 16px;
        }

        .company-logo {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            font-size: 20px;
            box-shadow: 0 4px 12px rgba(32, 29, 58, 0.2);
            transition: transform 0.3s ease;
        }

        .card:hover .company-logo {
            transform: scale(1.05);
        }

        .logo-blue { background: linear-gradient(135deg, #4cb69f, #201d3a); }
        .logo-green { background: linear-gradient(135deg, #201d3a, #4cb69f); }
        .logo-purple { background: linear-gradient(135deg, #4cb69f, #201d3a); }
        .logo-orange { background: linear-gradient(135deg, #4cb69f, #3aa085); }
        .logo-pink { background: linear-gradient(135deg, #201d3a, #2d2951); }
        .logo-indigo { background: #4cb69f; }

        .card-menu {
            position: relative;
        }

        .menu-btn {
            background: none;
            border: none;
            color: #f5f5f5;
            font-size: 20px;
            cursor: pointer;
            padding: 8px;
            border-radius: 8px;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 32px;
            height: 32px;
        }

        .menu-btn:hover {
            background: rgba(76, 182, 159, 0.1);
            color: #4cb69f;
            transform: scale(1.1);
        }

        .dropdown-menu {
            position: absolute;
            top: 100%;
            right: 0;
            background: rgba(32, 29, 58, 0.98);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(76, 182, 159, 0.3);
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(32, 29, 58, 0.2);
            min-width: 160px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
            z-index: 50;
        }

        .dropdown-menu.active {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-item {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 12px 16px;
            font-size: 14px;
            color: #f5f5f5;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
            background: none;
            width: 100%;
            text-align: left;
        }

        .dropdown-item:first-child {
            border-radius: 12px 12px 0 0;
        }

        .dropdown-item:last-child {
            border-radius: 0 0 12px 12px;
        }

        .dropdown-item:hover {
            background: rgba(76, 182, 159, 0.1);
            color: #201d3a;
            transform: translateX(4px);
        }

        .dropdown-item.active {
            color: #4cb69f;
            font-weight: 500;
        }

        .dropdown-item.pause {
            color: #f5f5f5;
        }

        .dropdown-item.expired {
            color: #a9a9a9;
        }

        .job-info h3 {
            font-size: 1.25rem;
            font-weight: 600;
            color: #f5f5f5;
            margin-bottom: 4px;
        }

        .company-name {
            color: #f5f5f5;
            margin-bottom: 8px;
            font-weight: 500;
        }

        .location {
            display: flex;
            align-items: center;
            font-size: 14px;
            color: rgba(245, 245, 245, 0.7);
            margin-bottom: 16px;
        }

        .location i {
            margin-right: 6px;
            color: #4cb69f;
        }

        .job-requirements {
            margin-bottom: 20px;
        }

        .job-requirements h4 {
            font-weight: 500;
            color: #f5f5f5;
            margin-bottom: 8px;
        }

        .job-requirements ul {
            list-style: none;
            padding: 0;
        }

        .job-requirements li {
            font-size: 14px;
            color: #f5f5f5;
            margin-bottom: 4px;
            display: flex;
            align-items: flex-start;
        }

        .job-requirements li::before {
            content: "•";
            color: #4cb69f;
            margin-right: 8px;
            margin-top: 2px;
            font-weight: bold;
        }

        .job-metrics {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 16px;
            border-top: 1px solid rgba(76, 182, 159, 0.2);
        }

        .status-badge {
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: transform 0.3s ease;
        }

        .status-badge:hover {
            transform: scale(1.05);
        }

        .status-active {
            background: #4cb69f;
            color: white;
            box-shadow: 0 2px 8px rgba(76, 182, 159, 0.3);
        }

        .status-paused {
            background: #201d3a;
            color: white;
            box-shadow: 0 2px 8px rgba(32, 29, 58, 0.3);
        }

        .status-expired {
            background: rgba(245, 245, 245, 0.8);
            color: #201d3a;
            border: 1px solid rgba(32, 29, 58, 0.2);
        }

        .job-stats {
            display: flex;
            gap: 16px;
            font-size: 14px;
            color: #f5f5f5;
        }

        .stat {
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .stat i {
            color: #4cb69f;
        }

        .stat-value {
            font-weight: 600;
            color: #f5f5f5;
        }

        .add-button {
            position: fixed;
            bottom: 32px;
            right: 32px;
            width: 64px;
            height: 64px;
            background: linear-gradient(135deg, #4cb69f, #201d3a);
            color: white;
            border: none;
            border-radius: 50%;
            font-size: 32px;
            cursor: pointer;
            box-shadow: 0 8px 25px rgba(76, 182, 159, 0.4);
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .add-button:hover {
            background: linear-gradient(135deg, #201d3a, #4cb69f);
            transform: scale(1.1) rotate(90deg);
            box-shadow: 0 12px 35px rgba(76, 182, 159, 0.5);
        }

        .add-button:hover .plus-icon {
            transform: rotate(-90deg);
        }

        .plus-icon {
            transition: transform 0.3s ease;
        }

        .footer {
            background: linear-gradient(135deg, #201d3a, #1a1730);
            color: #f5f5f5;
            padding: 40px 20px 20px 20px;
            margin-top: 64px;
            position: relative;
            overflow: hidden;
        }

        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, #4cb69f, #201d3a, #4cb69f);
        }

        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 32px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-logo {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 12px;
            background: linear-gradient(45deg, #4cb69f, #f5f5f5);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            color: transparent;
        }

        .footer-about p {
            color: rgba(245, 245, 245, 0.8);
            line-height: 1.6;
        }

        .footer-links h3,
        .footer-support h3,
        .footer-social h3 {
            font-size: 18px;
            margin-bottom: 16px;
            color: #4cb69f;
        }

        .footer-links ul,
        .footer-support ul {
            list-style: none;
            padding: 0;
        }

        .footer-links li,
        .footer-support li {
            margin-bottom: 8px;
        }

        .footer-links a,
        .footer-support a {
            color: rgba(245, 245, 245, 0.8);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .footer-links a:hover,
        .footer-support a:hover {
            color: #4cb69f;
            transform: translateX(4px);
        }

        .social-icons {
            display: flex;
            gap: 12px;
        }

        .social-icons a {
            display: inline-block;
            width: 36px;
            height: 36px;
            background: rgba(76, 182, 159, 0.2);
            border: 1px solid #4cb69f;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #4cb69f;
            transition: all 0.3s ease;
        }

        .social-icons a:hover {
            background: #4cb69f;
            color: #201d3a;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(76, 182, 159, 0.3);
        }

        .footer-bottom {
            text-align: center;
            margin-top: 32px;
            padding-top: 20px;
            border-top: 1px solid rgba(76, 182, 159, 0.3);
            font-size: 14px;
            color: rgba(245, 245, 245, 0.6);
        }

        @media (max-width: 1024px) {
            .cards-container {
                grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
                gap: 20px;
            }
            .nav-links {
                gap: 20px;
            }
            .nav-links a {
                font-size: 16px;
            }
        }

        /* @media (max-width: 768px) {
            .header {
                flex-direction: column;
                height: auto;
                padding: 16px;
                gap: 16px;
            }
            .nav-links {
                width: 100%;
                justify-content: space-between;
                font-size: 14px;
            }
            .cards-container {
                grid-template-columns: 1fr;
                gap: 16px;
            }
            .page-header {
                flex-direction: column;
                gap: 16px;
            }
            .search-container {
                width: 100%;
            }
            .user-menu {
                gap: 12px;
            }
            main {
                padding: 16px;
            }
        } */

        @media (max-width: 576px) {
            .card {
                padding: 16px;
            }
            .add-button {
                width: 56px;
                height: 56px;
                font-size: 24px;
                bottom: 20px;
                right: 20px;
            }
            .logo {
                font-size: 20px;
            }
            .page-title {
                font-size: 1.5rem;
            }
        }

        @media (min-width: 1600px) {
            .cards-container {
                grid-template-columns: repeat(4, 1fr);
            }
        }