
        /* Main Content */
        .main-content {
            flex: 1;
            overflow-y: auto;
            overflow-x: hidden;
            padding: 0 0 50px 0;
            scrollbar-width: none;
        }

        .main-content::-webkit-scrollbar { display: none; }

        .content-padding { padding: 0 24px; }

        .hero-section { margin: 10px 0 25px 0; }
        .hero-section h1 {
            font-size: 28px;
            line-height: 1.2;
            font-weight: 800;
            letter-spacing: -0.5px;
        }

        .hero-section span {
            background: linear-gradient(90deg, var(--primary), #8b5cf6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        /* Search Box */
        .search-container {
            position: relative;
            margin-bottom: 25px;
        }

        .search-bar {
            background: var(--white);
            padding: 10px 10px 10px 50px;
            border-radius: 20px;
            display: flex;
            align-items: center;
            box-shadow: var(--shadow-md);
            border: 1px solid rgba(255,255,255,1);
        }

        .search-bar i.main-search-icon {
            position: absolute;
            left: 20px;
            color: var(--primary);
            font-size: 18px;
        }

        .search-bar input {
            border: none;
            outline: none;
            width: 90%;
            font-size: 14px;
            font-weight: 500;
            color: var(--dark);
        }

        .filter-btn {
            background: var(--primary);
            color: white;
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 14px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: 0.3s;
        }

        /* Categories */
        .section-title {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
        }

        .section-title h3 { font-size: 17px; font-weight: 700; }
        .section-title a { color: var(--primary); text-decoration: none; font-size: 13px; font-weight: 600; }

        .categories-scroll {
            display: flex;
            gap: 12px;
            overflow-x: auto;
            padding: 5px 45px 25px 45px;
            margin: 0 -24px;
            scrollbar-width: none;
        }

        .category-card {
            padding: 12px 18px;
            background: var(--white);
            border-radius: 16px;
            white-space: nowrap;
            font-size: 13px;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 10px;
            box-shadow: var(--shadow-sm);
            border: 1px solid transparent;
            cursor: pointer;
            transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .category-card.active {
            background: var(--primary);
            color: white;
            box-shadow: 0 10px 20px -5px rgba(99, 102, 241, 0.4);
        }

        /* Featured Jobs (Horizontal) */
        .featured-scroll {
            display: flex;
            gap: 16px;
            overflow-x: auto;
            padding: 15px 45px 35px 45px;
            margin: 0 -24px;
            scrollbar-width: none;
        }

        .featured-card {
            min-width: 280px;
            background: linear-gradient(135deg, var(--primary), #4f46e5);
            padding: 24px;
            border-radius: 30px;
            color: white;
            position: relative;
            overflow: hidden;
            box-shadow: 0 15px 30px -10px rgba(79, 70, 229, 0.4);
        }

        .featured-card::before {
            content: '';
            position: absolute;
            top: -20px;
            right: -20px;
            width: 100px;
            height: 100px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
        }

        .f-header { display: flex; justify-content: space-between; margin-bottom: 20px; }
        .f-logo {
            width: 45px;
            height: 45px;
            background: rgba(255,255,255,0.2);
            backdrop-filter: blur(10px);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
        }

        .f-body h4 { font-size: 18px; margin-bottom: 5px; }
        .f-body p { opacity: 0.8; font-size: 13px; margin-bottom: 15px; }
        .f-footer { display: flex; justify-content: space-between; align-items: center; font-weight: 600; font-size: 14px;}

        /* Standard Job Cards */
        .job-card {
            background: var(--white);
            border-radius: 24px;
            padding: 20px;
            margin-bottom: 16px;
            box-shadow: var(--shadow-sm);
            border: 1px solid rgba(226, 232, 240, 0.5);
            transition: 0.3s;
            position: relative;
        }

        .job-card:active { transform: scale(0.97); }

        .job-card-top {
            display: flex;
            gap: 15px;
            margin-bottom: 15px;
        }

        .job-logo {
            width: 50px;
            height: 50px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
        }

        .job-info h4 { font-size: 15px; font-weight: 700; margin-bottom: 2px; }
        .job-info p { font-size: 12px; color: var(--gray); font-weight: 500; }

        .save-btn-circle {
            position: absolute;
            top: 10px;
            right: 10px;
            width: 35px;
            height: 35px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--light-gray);
            border: none;
            color: var(--slate);
            cursor: pointer;
        }

        .job-tags { display: flex; gap: 8px; margin-bottom: 15px; }
        .tag {
            padding: 6px 12px;
            background: var(--light-gray);
            color: var(--slate);
            border-radius: 10px;
            font-size: 11px;
            font-weight: 600;
        }

        .job-card-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 15px;
            border-top: 1px dashed #e2e8f0;
        }

        .price { font-weight: 800; color: var(--dark); font-size: 15px; }
        .location { font-size: 12px; color: var(--gray); font-weight: 500; }

        

        /* Modal Customization */
        .modal {
            display: none;
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(0,0,0,0.6);
            backdrop-filter: blur(5px);
            z-index: 1000;
        }

        .modal-content {
            position: absolute;
            bottom: 0;
            width: 100%;
            background: var(--white);
            border-radius: 40px 40px 0 0;
            padding: 30px 24px;
            animation: slideUp 0.9s cubic-bezier(0.16, 1, 0.9, 1);
        }

        @keyframes slideUp { from { transform: translateY(100%); } to { transform: translateY(0); } }

        .apply-now-btn {
            width: 100%;
            padding: 18px;
            background: var(--primary);
            color: white;
            border: none;
            border-radius: 20px;
            font-size: 16px;
            font-weight: 700;
            margin-top: 25px;
            box-shadow: 0 10px 20px rgba(99, 102, 241, 0.3);
            cursor: pointer;
        }

        /* Page Transitions */
        .page { /* display: none;*/ }
        .page.active {  /* display: block; */ animation: fadeIn 0.5s ease; }
        @keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

        /* Placeholder */
        .empty-state {
            padding: 60px 20px;
            text-align: center;
            color: var(--gray);
        }
        .empty-state i { font-size: 60px; margin-bottom: 20px; opacity: 0.3; }