@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
    --primary: #00a65a;
    --primary-dark: #008d4c;
    --primary-light: #e8f5e9;
    --gradient: linear-gradient(135deg, #00c853 0%, #009688 100%);
    --text: #0f172a;
    --text-light: #64748b;
    --text-muted: #94a3b8;
    --bg: #f1f5f9;
    --white: #fff;
    --border: #e2e8f0;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.06);
    --shadow-lg: 0 12px 24px rgba(0,0,0,0.08);
    --shadow-xl: 0 20px 30px rgba(0,0,0,0.1);
    --radius: 16px;
    --radius-sm: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Inter', 'Segoe UI', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

.page {
    max-width: 1280px;
    margin: 36px auto;
    display: flex;
    gap: 28px;
    padding: 0 20px 60px;
    clear: both;
    min-height: 60vh;
}

.badge1 {
    text-decoration: none;
    color: white;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 22px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 16px;
    background: var(--gradient);
    box-shadow: 0 6px 18px rgba(0,166,90,0.3);
    transition: var(--transition);
}

.badge1:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,166,90,0.4);
}

.badge1.disabled {
    background: #64748b;
    cursor: not-allowed;
    box-shadow: none;
}

.badge1.disabled:hover {
    transform: none;
}

.main {
    flex: 1;
    min-width: 0;
}

.card {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    padding: 32px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(255,255,255,0.7);
}

.title {
    font-size: 32px;
    color: var(--text);
    margin: 0 0 24px 0;
    line-height: 1.25;
    font-weight: 800;
    letter-spacing: -0.8px;
}

.job-box {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    border-radius: var(--radius);
    padding: 22px;
    box-shadow: var(--shadow-xl);
    margin-top: 24px;
    border: 1px solid rgba(255,255,255,0.7);
}

.job-title {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 16px 0;
    color: #1b5e20;
    display: flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary-light);
}

.job-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.job-item {
    margin-bottom: 10px;
}

.job-item:last-child {
    margin-bottom: 0;
}

.job-item a {
    display: block;
    padding: 12px 14px;
    background: #f8fafc;
    border-radius: var(--radius-sm);
    text-decoration: none;
    color: var(--text);
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
    border: 1px solid var(--border);
    line-height: 1.5;
}

.job-item a:hover {
    background: var(--primary-light);
    border-color: var(--primary);
    transform: translateX(5px);
    color: var(--primary-dark);
    box-shadow: var(--shadow-sm);
}

.image {
    margin: 0 0 20px 0;
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: #f8fafc;
    border: 1px solid var(--border);
    position: relative;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.image img {
    width: 100%;
    height: auto;
    display: block;
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
}

.watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #00a65a;
    font-size: 48px;
    font-weight: 800;
    pointer-events: none;
    user-select: none;
    white-space: nowrap;
    letter-spacing: 1px;
    opacity: 0.5;
}

.grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin: 24px 0;
}

.item {
    background: #f8fafc;
    padding: 14px 16px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    transition: var(--transition);
    border: 1px solid var(--border);
}

.item:hover {
    transform: translateY(-3px);
    background: var(--white);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.item span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: var(--text-muted);
    margin-bottom: 6px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.item span i {
    color: var(--primary);
    font-size: 13px;
}

.badge {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 20px;
    text-align: center;
    border-radius: var(--radius-sm);
    margin: 18px 0;
    border: 1px solid var(--border);
}

.desc h3 {
    margin: 0 0 10px 0;
    color: var(--text);
    font-size: 22px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
}

.desc p {
    color: #334155;
    line-height: 1.85;
    font-size: 15.5px;
    margin: 0;
    white-space: pre-wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 22px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 600;
    margin-top: 16px;
    transition: var(--transition);
    font-size: 15px;
}

.orange {
    background: linear-gradient(135deg, #f59e0b, #ef4444);
    color: #fff;
    box-shadow: 0 4px 14px rgba(245,158,11,0.25);
}

.orange:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(245,158,11,0.35);
}

.side {
    width: 340px;
    flex-shrink: 0;
}

.ad {
    background: rgba(241,245,249,0.8);
    backdrop-filter: blur(8px);
    border: 2px dashed #cbd5e1;
    text-align: center;
    padding: 36px;
    border-radius: var(--radius-sm);
    margin-top: 24px;
    color: #6b7280;
    font-size: 14px;
}

.small {
    padding: 20px;
}

.no-job {
    text-align: center;
    padding: 100px 40px;
    background: var(--white);
    border-radius: var(--radius);
    color: var(--text-light);
    box-shadow: var(--shadow-md);
    font-size: 18px;
    margin: 50px auto;
    max-width: 700px;
}

.no-job i {
    font-size: 64px;
    color: #cbd5e1;
    display: block;
    margin-bottom: 20px;
}

@media (max-width: 1024px) {
.side {
        width: 300px;
    }
}

@media (max-width: 900px) {
.page {
        flex-direction: column;
    }
.side {
        width: 100%;
    }
.grid {
        grid-template-columns: 1fr;
    }
.card {
        padding: 24px 20px;
    }
.title {
        font-size: 26px;
    }
}

@media (max-width: 600px) {
.watermark {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
.page {
        padding: 0 16px 40px;
        margin: 20px auto;
    }
}