        * { box-sizing: border-box; margin: 0; padding: 0; }
        body { font-family: 'Noto Sans TC', sans-serif; background: #f5f5f5; color: #333; }

        /* Hero Section */
        .hero { background: linear-gradient(135deg, #8458b3 0%, #a0d2eb 100%); padding: 80px 40px; text-align: center; color: white; }
        .hero h1 { font-size: 48px; margin-bottom: 20px; }
        .hero p { font-size: 20px; opacity: 0.9; margin-bottom: 30px; }
        .hero .btn { display: inline-block; background: white; color: #8458b3; padding: 15px 40px; border-radius: 30px; text-decoration: none; font-weight: 600; transition: transform 0.3s; }
        .hero .btn:hover { transform: scale(1.05); }

        /* Main Content */
        .main { max-width: 1200px; margin: 0 auto; padding: 40px; }

        /* Section Titles */
        .section-title { font-size: 28px; color: #8458b3; margin-bottom: 30px; padding-bottom: 15px; border-bottom: 2px solid #d0bdf4; }

        /* Job Cards Grid - 3 columns */
        .jobs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

        /* Job Card */
        .job-card {
            background: white;
            border-radius: 16px;
            padding: 24px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
            transition: transform 0.25s, box-shadow 0.25s;
            display: flex;
            flex-direction: column;
            gap: 15px;
            cursor: pointer;
            text-decoration: none;
            color: inherit;
        }
        .job-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 30px rgba(132,88,179,0.18);
        }

        /* Card header: title + type badge */
        .job-card-header { display: flex; justify-content: space-between; align-items: flex-start; gap: 10px; }
        .job-card h3 { color: #333; font-size: 20px; line-height: 1.4; flex: 1; border-left: #8458b3 solid 5px; padding: 10px 13px; }
        .job-type-badge {
            background: #f0e8fa;
            color: #8458b3;
            padding: 4px 10px;
            border-radius: 12px;
            font-size: 12px;
            font-weight: 500;
            white-space: nowrap;
            flex-shrink: 0;
        }

        /* Meta row: work schedule + location */
        .job-meta {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }
        .job-meta-item {
            display: flex;
            align-items: center;
            gap: 5px;
            font-size: 13px;
            color: #666;
        }
        .job-meta-item .icon { font-size: 14px; }

        /* Salary */
        .job-salary {
            font-size: 18px;
            font-weight: 500;
            color: #8458b3;
        }
        .job-salary.agreed {
            font-size: 18px;
            font-weight: 500;
            color: #8458b3;
        }
        .salary-sub {
            display: block;
            font-size: 12px;
            font-weight: 500;
            color: #00838f;
            margin-top: 2px;
        }

        /* Description */
        .job-description {
            font-size: 14px;
            color: #555;
            line-height: 1.6;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
            flex: 1;
        }

        /* Divider */
        .job-divider { border: none; border-top: 1px solid #f0e8fa; }

        /* Apply Button */
        .job-apply-btn {
            display: block;
            text-align: center;
            background: #8458b3;
            color: white;
            padding: 10px 20px;
            border-radius: 25px;
            font-weight: 600;
            font-size: 14px;
            transition: background 0.25s;
            text-decoration: none;
        }
        .job-apply-btn:hover { background: #6b4a8f; }
        .job-apply-btn.need-login { background: #aaa; }
        .job-apply-btn.need-login:hover { background: #888; }

        /* News Section */
        .news-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; }
        .news-card { background: white; border-radius: 15px; padding: 25px; box-shadow: 0 4px 15px rgba(0,0,0,0.1); cursor: pointer; transition: transform 0.3s; }
        .news-card:hover { transform: translateY(-3px); }
        .news-card .date { color: #999; font-size: 13px; margin-bottom: 10px; }
        .news-card h3 { color: #333; font-size: 18px; margin-bottom: 10px; }
        .news-card p { color: #666; font-size: 14px; line-height: 1.6; }

        /* Footer */
        .footer { background: #494d5f; color: white; padding: 40px; text-align: center; margin-top: 60px; }
        .footer p { opacity: 0.8; }

        /* Loading / Empty */
        .loading, .empty-state { text-align: center; padding: 60px 20px; color: #999; font-size: 16px; }
        .empty-state .icon { font-size: 48px; margin-bottom: 16px; display: block; }

        /* Responsive */
        @media (max-width: 1024px) {
            .jobs-grid { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 768px) {
            .hero h1 { font-size: 32px; }
            .jobs-grid { grid-template-columns: 1fr; }
            .main { padding: 20px; }
        }
