

:root {
    --bg-primary: #0a0a0f;
    --bg-secondary: #12121a;
    --bg-card: #1a1a25;
    --bg-card-hover: #222230;
    --bg-tertiary: #252535;
    --bg-hover: #2a2a3a;

    --text-primary: #ffffff;
    --text-secondary: #a0a0b0;
    --text-muted: #6b6b7b;

    --accent-purple: #8b5cf6;
    --accent-purple-light: #a78bfa;
    --accent-purple-dark: #7c3aed;
    --accent-blue: #6366f1;
    --accent-pink: #ec4899;
    --accent-gradient: linear-gradient(135deg, #8b5cf6 0%, #6366f1 50%, #ec4899 100%);

    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;

    --border-color: rgba(255,255,255,0.1);
    --accent-glow: rgba(139,92,246,0.4);
    --accent-glow-strong: rgba(139,92,246,0.6);

    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.4s cubic-bezier(0.4,0,0.2,1);
    --glass-bg: rgba(26,26,37,0.6);
    --glass-border: rgba(255,255,255,0.08);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}


.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    height: 80px;
    display: flex;
    align-items: center;
    transition: var(--transition-normal);
}

.nav-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-left {
    flex: 1;
    display: flex;
    align-items: center;
    margin-top: 13px;
}

.nav-center {
    flex: 2;
    display: flex;
    justify-content: center;
}

.nav-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 1.5rem;
}


.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.logo-img {
    height: 35px;
    width: auto;
    margin-top: -28px;
    margin-right: -18px;
    display: block;
}

.logo-text {
    font-size: 1.75rem;
    font-weight: 800;
    font-family: 'Times New Roman', Times, serif;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}


.nav-links {
    display: flex;
    list-style: none;
    gap: 3rem;
    align-items: center;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 0;
    position: relative;
    transition: var(--transition-normal);
    white-space: nowrap;
    font-family: 'Inter', -apple-system, sans-serif;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gradient);
    transition: var(--transition-normal);
}

.nav-link:hover { color: var(--text-primary); }
.nav-link:hover::after { width: 100%; }
.nav-link.active { color: var(--text-primary); font-weight: 600; }
.nav-link.active::after {
    width: 100%;
    background: var(--accent-purple);
    box-shadow: 0 0 15px var(--accent-glow);
}


.location-selector {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0.5rem 1rem;
    background: var(--bg-card);
    border-radius: 8px;
    border: 1px solid var(--border-color);
    cursor: pointer;
    transition: var(--transition-normal);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.location-selector:hover {
    border-color: var(--accent-purple);
    box-shadow: 0 0 20px var(--accent-glow);
    color: var(--text-primary);
}

.location-icon { color: var(--accent-purple-light); }

.location-dropdown {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    cursor: pointer;
    outline: none;
}

.location-dropdown option {
    background: var(--bg-card);
    color: var(--text-primary);
}


.profile-menu-wrapper { position: relative; }

.profile-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8b5cf6, #6366f1);
    border: 2px solid rgba(139, 92, 246, 0.4);
    color: white;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.profile-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 16px rgba(139, 92, 246, 0.5);
}

.profile-dropdown {
    position: absolute;
    top: 48px;
    right: 0;
    background: #1a1a25;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 8px;
    min-width: 200px;
    display: none;
    z-index: 9999;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.profile-dropdown .user-name {
    padding: 8px 12px;
    color: #a0a0b0;
    font-size: 13px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
}

.login-nav-btn {
    background: linear-gradient(135deg, #8b5cf6, #6366f1);
    color: white;
    padding: 8px 18px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Inter', sans-serif;
}

.login-nav-btn:hover {
    opacity: 0.9;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(139, 92, 246, 0.4);
}

/* Mobile menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1100;
}

.mobile-menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s;
}

.mobile-menu {
    display: none !important;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: rgba(10, 10, 15, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 999;
    padding: 1.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.mobile-menu.open {
    display: block !important;
}

.mobile-nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-links li { margin-bottom: 4px; }

.mobile-nav-links a {
    display: block;
    padding: 0.85rem 1rem;
    color: #a0a0b0;
    text-decoration: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.2s;
}

.mobile-nav-links a:hover {
    background: rgba(139, 92, 246, 0.15);
    color: #fff;
}

.mobile-auth {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 768px) {
    .nav-center { display: none !important; }
    .nav-right  { display: none !important; }
    .mobile-menu-toggle { display: flex !important; }
    .navbar { height: 60px !important; padding: 0 16px !important; }
    .nav-container { height: 60px !important; padding: 0 !important; }
    .nav-left { margin-top: 0 !important; }
}

@media (max-width: 380px) {
    .filters-row { grid-template-columns: 1fr !important; }
    .filters-row .filter-group:last-child { grid-column: 1 !important; }
}


.main-content {
    margin-top: 80px;
    min-height: calc(100vh - 80px);
}

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

.hero-section { padding-bottom: 0; }

.page-header { text-align: center; margin-bottom: 3rem; }

.page-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.gradient-text {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-subtitle {
    color: var(--text-secondary);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}


.search-wrapper { max-width: 750px; margin: 0 auto 2.5rem; }

.search-box {
    display: flex;
    align-items: center;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: .5rem;
    transition: var(--transition-normal);
    position: relative;
}

.btn-share {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(139, 92, 246, 0.15);
    border: 1px solid rgba(139, 92, 246, 0.4);
    color: #a78bfa;
    font-family: 'Inter', system-ui, sans-serif;
}

.btn-share:hover {
    background: rgba(139, 92, 246, 0.3);
    border-color: rgba(139, 92, 246, 0.6);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.25);
}

.btn-share:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .modal-footer {
        flex-direction: column !important;
        gap: 0.75rem;
    }
    
    .btn-share {
        width: 100%;
    }
}



@media (max-width: 768px) {
    .search-wrapper {
        padding: 0 !important;
        margin-bottom: 1.5rem !important;
        max-width: 100% !important;
    }

    .search-box {
        padding: 4px !important;
        border-radius: 12px !important;
    }


    .search-icon {
        left: 0.85rem !important;
        font-size: 0.85rem !important;
    }

    .search-input {
        flex: 1 !important;
        min-width: 0 !important;
        padding: 10px 8px 10px 2.25rem !important;
        font-size: 14px !important;
    }


    .search-btn {
        flex-shrink: 0 !important;
        padding: 10px 16px !important;
        font-size: 14px !important;
        border-radius: 9px !important;
        white-space: nowrap !important;
    }
}

.search-box:focus-within {
    border-color: var(--accent-purple);
    box-shadow: 0 0 0 3px rgba(139,92,246,0.15);
}

.search-icon { position: absolute; left: 1.25rem; color: var(--text-muted); font-size: 1rem; }

.search-input {
    flex: 1;
    padding: 1rem 1rem 1rem 3.5rem;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    outline: none;
}
.search-input::placeholder { color: var(--text-muted); }

.search-btn {
    padding: .875rem 2rem;
    background: var(--accent-gradient);
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: var(--transition-normal);
    white-space: nowrap;
}
.search-btn:hover { transform: translateY(-2px); box-shadow: 0 4px 20px rgba(139,92,246,0.5); }


.filters-row {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.filter-group { display: flex; flex-direction: column; gap: .5rem; min-width: 160px; }

.filter-label {
    font-size: .75rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.filter-select-wrap { position: relative; }

.filter-select {
    width: 100%;
    padding: .75rem 2.5rem .75rem 1rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    color: var(--text-primary);
    font-size: .9rem;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    appearance: none;
    outline: none;
    transition: var(--transition-normal);
}
.filter-select:hover, .filter-select:focus { border-color: var(--accent-purple); background: rgba(255,255,255,0.08); }
.filter-select option { background: var(--bg-card); }

.filter-input {
    width: 100%;
    padding: .75rem 1rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    color: var(--text-primary);
    font-size: .9rem;
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: var(--transition-normal);
}
.filter-input::placeholder { color: var(--text-muted); }
.filter-input:focus { border-color: var(--accent-purple); }

.filter-arrow { position: absolute; right: 1rem; top: 50%; transform: translateY(-50%); color: var(--text-muted); pointer-events: none; font-size: .75rem; }


.jobs-section { padding-top: 0; }

.section-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 2rem; }
.section-title { font-size: 1.5rem; font-weight: 600; color: var(--text-primary); }
.job-count { color: var(--text-muted); font-size: .9rem; }

.jobs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
}


.job-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 1.75rem;
    cursor: pointer;
    transition: var(--transition-slow);
    position: relative;
    overflow: hidden;
}
.job-card::before {
    content:''; position:absolute; top:0; left:0; right:0; height:1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
}
.job-card:hover {
    transform: translateY(-6px);
    border-color: rgba(139,92,246,0.3);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4), 0 0 40px rgba(139,92,246,0.1);
}

.job-card-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 1.25rem; }

.company-logo {
    width: 52px; height: 52px; border-radius: 12px; overflow: hidden;
    border: 1px solid var(--border-color);
    display: flex; align-items: center; justify-content: center;
    background: var(--bg-secondary);
    font-size: 1.25rem; font-weight: 700; color: white;
}

.job-meta { display: flex; flex-direction: column; align-items: flex-end; gap: .5rem; }

.experience-badge {
    padding: .25rem .75rem; border-radius: 20px;
    font-size: .75rem; font-weight: 600; text-transform: uppercase; letter-spacing: .5px;
    background: rgba(139,92,246,0.2); border: 1px solid rgba(139,92,246,0.3); color: var(--accent-purple-light);
}
.experience-badge.mid { background: rgba(99,102,241,0.2); border-color: rgba(99,102,241,0.3); color: #818cf8; }
.experience-badge.entry { background: rgba(16,185,129,0.2); border-color: rgba(16,185,129,0.3); color: var(--success); }

.posted-time { font-size: .8rem; color: var(--text-muted); }
.job-title { font-size: 1.2rem; font-weight: 600; color: var(--text-primary); margin-bottom: .25rem; }
.company-name { font-size: .95rem; color: var(--text-secondary); margin-bottom: .75rem; }

.job-location { display: flex; align-items: center; gap: .5rem; font-size: .85rem; color: var(--text-muted); margin-bottom: 1rem; }
.job-location i { color: var(--accent-purple-light); font-size: .8rem; }

.job-tags { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: .75rem; }
.tag { padding: .3rem .7rem; background: rgba(255,255,255,0.05); border: 1px solid var(--border-color); border-radius: 6px; font-size: .8rem; color: var(--text-secondary); transition: var(--transition-fast); }
.tag:hover { background: rgba(139,92,246,0.15); border-color: var(--accent-purple-light); color: var(--text-primary); }

.card-badges { display: flex; gap: .5rem; flex-wrap: wrap; margin-top: .5rem; }

.applied-badge {
    display: inline-flex; align-items: center; gap: .35rem;
    padding: .25rem .75rem; border-radius: 20px; font-size: .75rem; font-weight: 600;
    background: rgba(16,185,129,0.15); border: 1px solid rgba(16,185,129,0.3); color: var(--success);
}
.saved-badge {
    display: inline-flex; align-items: center; gap: .35rem;
    padding: .25rem .75rem; border-radius: 20px; font-size: .75rem; font-weight: 600;
    background: rgba(139,92,246,0.15); border: 1px solid rgba(139,92,246,0.3); color: var(--accent-purple-light);
}

.empty-state {
    grid-column: 1 / -1; text-align: center; padding: 5rem 2rem;
    background: var(--glass-bg); border: 1px solid var(--glass-border); border-radius: 20px;
}
.empty-state i { font-size: 3rem; color: var(--text-muted); margin-bottom: 1rem; display: block; }
.empty-state h3 { color: var(--text-secondary); margin-bottom: .5rem; }
.empty-state p  { color: var(--text-muted); }

.spinner { width: 40px; height: 40px; border: 3px solid var(--border-color); border-top-color: var(--accent-purple-light); border-radius: 50%; animation: spin .8s linear infinite; margin: 0 auto 1rem; }
@keyframes spin { to { transform: rotate(360deg); } }

.delete-btn {
    position: absolute; top: 1rem; right: 1rem;
    width: 32px; height: 32px; border-radius: 8px;
    background: rgba(239,68,68,.1); border: 1px solid rgba(239,68,68,.2); color: var(--error);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; opacity: 0; transition: var(--transition-fast);
}
.job-card:hover .delete-btn { opacity: 1; }
.delete-btn:hover { background: rgba(239,68,68,.2); transform: scale(1.1); }


.modal-overlay {
    position: fixed; top:0; left:0; right:0; bottom:0;
    background: rgba(0,0,0,0.8); backdrop-filter: blur(5px);
    display: flex; align-items: center; justify-content: center;
    z-index: 2000; opacity: 0; visibility: hidden; transition: var(--transition-normal); padding: 2rem;
}
.modal-overlay.active { opacity: 1; visibility: visible; }

.modal {
    background: var(--glass-bg); backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border); border-radius: 20px;
    width: 100%; max-width: 650px; max-height: 90vh; overflow-y: auto;
    transform: scale(0.95); transition: transform .3s ease;
    box-shadow: 0 25px 50px rgba(0,0,0,0.5), 0 0 40px rgba(139,92,246,0.15);
}
.modal-overlay.active .modal { transform: scale(1); }

.modal-header { display: flex; justify-content: space-between; align-items: flex-start; padding: 2rem; border-bottom: 1px solid var(--border-color); }
.modal-company-info { display: flex; gap: 1rem; align-items: center; }
.modal-company-logo { width: 56px; height: 56px; border-radius: 12px; overflow: hidden; border: 1px solid var(--border-color); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; font-weight: 700; color: white; }
.modal-job-title { font-size: 1.4rem; font-weight: 700; color: var(--text-primary); margin-bottom: .25rem; }
.modal-company-name { font-size: 1rem; color: var(--text-secondary); }

.modal-close {
    width: 40px; height: 40px; border-radius: 10px;
    background: var(--glass-bg); border: 1px solid var(--border-color);
    color: var(--text-secondary); display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: var(--transition-normal); font-size: 1rem;
}
.modal-close:hover { background: rgba(239,68,68,0.2); border-color: rgba(239,68,68,0.3); color: var(--error); transform: rotate(90deg); }

.modal-body { padding: 2rem; }
.modal-meta { display: flex; gap: 1.5rem; margin-bottom: 2rem; flex-wrap: wrap; }
.meta-item { display: flex; align-items: center; gap: .5rem; color: var(--text-secondary); font-size: .9rem; }
.meta-item i { color: var(--accent-purple-light); }

.modal-section { margin-bottom: 1.5rem; }
.section-heading { font-size: 1rem; font-weight: 600; color: var(--text-primary); margin-bottom: .75rem; }
.detail-list { list-style: none; padding: 0; }
.detail-list li { color: var(--text-secondary); padding: .5rem 0; padding-left: 1.5rem; position: relative; line-height: 1.6; border-bottom: 1px solid var(--border-color); font-size: .95rem; }
.detail-list li:last-child { border-bottom: none; }
.detail-list li::before { content: '•'; position: absolute; left: .5rem; color: var(--accent-purple-light); font-weight: bold; }

.modal-footer { padding: 1.5rem 2rem; border-top: 1px solid var(--border-color); display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }

.btn-apply {
    flex: 1; padding: .875rem 1.5rem;
    background: var(--accent-gradient); border: none; border-radius: 12px;
    color: white; font-size: 1rem; font-weight: 600; font-family: 'Inter', sans-serif;
    cursor: pointer; transition: var(--transition-normal);
    display: flex; align-items: center; justify-content: center; gap: .5rem;
    box-shadow: 0 4px 15px rgba(139,92,246,0.3);
}
.btn-apply:hover { transform: translateY(-2px); box-shadow: 0 6px 25px rgba(139,92,246,0.5); }

.apply-confirm { flex: 1; display: flex; flex-direction: column; gap: .75rem; }
.confirm-text { color: var(--text-secondary); font-size: .9rem; font-weight: 500; text-align: center; }
.confirm-btns { display: flex; gap: .75rem; }

.btn-mark-applied { flex: 1; padding: .75rem 1rem; border-radius: 10px; font-size: .9rem; font-weight: 500; font-family: 'Inter', sans-serif; cursor: pointer; transition: var(--transition-normal); display: flex; align-items: center; justify-content: center; gap: .5rem; background: rgba(16,185,129,0.15); border: 1px solid rgba(16,185,129,0.3); color: var(--success); }
.btn-mark-applied:hover { background: rgba(16,185,129,0.25); transform: translateY(-1px); }

.btn-no { flex: 1; padding: .75rem 1rem; border-radius: 10px; font-size: .9rem; font-weight: 500; font-family: 'Inter', sans-serif; cursor: pointer; transition: var(--transition-normal); background: rgba(239,68,68,0.15); border: 1px solid rgba(239,68,68,0.3); color: var(--error); }
.btn-no:hover { background: rgba(239,68,68,0.25); transform: translateY(-1px); }

.btn-save { padding: .875rem 1.5rem; background: transparent; border: 1px solid var(--border-color); border-radius: 10px; color: var(--text-secondary); font-size: .9rem; font-weight: 500; font-family: 'Inter', sans-serif; cursor: pointer; transition: var(--transition-normal); display: flex; align-items: center; gap: .5rem; white-space: nowrap; }
.btn-save:hover { background: rgba(139,92,246,0.15); border-color: var(--accent-purple-light); color: var(--text-primary); }
.btn-save.saved { background: rgba(139,92,246,0.2); border-color: var(--accent-purple); color: var(--accent-purple-light); }


.toast { position: fixed; bottom: 2rem; right: 2rem; background: var(--bg-card); border: 1px solid var(--border-color); border-radius: 12px; padding: 1rem 1.5rem; backdrop-filter: blur(10px); box-shadow: 0 10px 30px rgba(0,0,0,0.3), 0 0 20px rgba(139,92,246,0.15); transform: translateX(150%); transition: transform .4s cubic-bezier(0.68,-0.55,0.265,1.55); z-index: 3000; }
.toast.show { transform: translateX(0); }
.toast-content { display: flex; align-items: center; gap: .75rem; }
.toast-icon { font-size: 1.1rem; }
.toast-message { color: var(--text-primary); font-weight: 500; font-size: .95rem; }

@keyframes fadeInUp { from { opacity:0; transform:translateY(20px); } to { opacity:1; transform:translateY(0); } }
.job-card { animation: fadeInUp .4s ease; }


.footer { padding: 12px 0; background: var(--bg-secondary); border-top: 1px solid var(--border-color); position: relative; }
.footer-grid { display: flex; justify-content: space-between; align-items: center; padding: 0 32px; margin-bottom: 10px; }
.footer-logo { font-size: 1rem; font-weight: 800; background: var(--accent-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; margin-bottom: 2px; display: inline-block; }
.footer-tagline { color: var(--text-muted); font-size: 0.72rem; line-height: 1.3; max-width: 240px; }
.footer-social { display: flex; gap: 8px; }
.social-link { width: 30px; height: 30px; background: var(--bg-card); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--text-muted); font-size: 0.85rem; transition: var(--transition-normal); border: 1px solid var(--border-color); text-decoration: none; }
.social-link:hover { background: var(--accent-gradient); color: white; border-color: transparent; transform: translateY(-1px); }
.footer-policy-row { display: flex; align-items: center; justify-content: center; gap: 10px; padding: 6px 0 4px; }
.footer-policy-link { color: var(--text-muted); font-size: 0.72rem; text-decoration: none; transition: color 0.2s ease; }
.footer-policy-link:hover { color: var(--accent-purple-light); }
.footer-dot { color: var(--text-muted); font-size: 0.65rem; opacity: 0.4; }
.footer-bottom { text-align: center; padding-top: 6px; border-top: 1px solid var(--border-color); margin-top: 4px; }
.copyright { color: var(--text-muted); font-size: 0.72rem; }
.footer-glow { position: absolute; bottom: -60px; left: 50%; transform: translateX(-50%); width: 400px; height: 120px; background: var(--accent-purple); border-radius: 50%; filter: blur(80px); opacity: 0.08; pointer-events: none; }


::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--accent-purple-dark); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent-purple); }
::selection { background: rgba(139,92,246,0.3); color: var(--text-primary); }
.footer-logo-wrap {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 4px;
}
.footer-logo-img {
    height: 24px;
    width: auto;
    margin-top: -18px;
    margin-right: -12px;
    display: block;
}
.footer-logo-text {
    font-size: 1rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ec4899, #8b5cf6, #6366f1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
    font-family: 'Times New Roman', Times, serif;
}