* { margin: 0; padding: 0; box-sizing: border-box; }
        
        :root {
            --blue-deep: #0A1628;
            --blue-dark: #0F2340;
            --blue-mid: #163A6B;
            --blue-light: #1E4D8C;
            --gold: #D4AF37;
            --gold-light: #E8C84A;
            --gold-dim: #B8942E;
            --white: #FFFFFF;
            --gray-light: #F5F7FA;
            --gray-mid: #8C9BB5;
            --text-dark: #1A1A2E;
            --text-gray: #5A6478;
            --shadow: 0 8px 32px rgba(10, 22, 40, 0.15);
            --shadow-gold: 0 4px 20px rgba(212, 175, 55, 0.2);
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
            color: rgba(255,255,255,0.85);
            background: linear-gradient(180deg, #0E1A2E 0%, #111D33 100%);
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;

body::before {
    content: '';
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: 
        radial-gradient(1px 1px at 20% 30%, rgba(212,175,55,0.1) 0%, transparent 100%),
        radial-gradient(1px 1px at 60% 20%, rgba(212,175,55,0.08) 0%, transparent 100%),
        radial-gradient(1.5px 1.5px at 90% 40%, rgba(255,255,255,0.03) 0%, transparent 100%);
    pointer-events: none;
    z-index: 0;
}


        }

        /* Navigation */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(10, 22, 40, 0.95);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(212, 175, 55, 0.15);
            transition: all 0.3s ease;
        }
        .navbar.scrolled {
            background: rgba(10, 22, 40, 0.98);
            box-shadow: 0 2px 20px rgba(0,0,0,0.3);
        }
        .nav-inner {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 64px;
        }
        .nav-brand {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
        }
        .nav-brand-icon {
            width: 36px;
            height: 36px;
            background: linear-gradient(135deg, var(--gold), var(--gold-dim));
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
        }
        .nav-brand-text {
            color: var(--white);
            font-size: 20px;
            font-weight: 700;
            letter-spacing: 2px;
        }
        .nav-brand-text span {
            color: var(--gold);
        }
        .nav-links {
            display: flex;
            gap: 32px;
            list-style: none;
        }
        .nav-links a {
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            transition: color 0.3s;
            letter-spacing: 1px;
        }
        .nav-links a:hover { color: var(--gold); }
        .nav-cta {
            background: linear-gradient(135deg, var(--gold), var(--gold-dim));
            color: var(--blue-deep) !important;
            padding: 8px 20px;
            border-radius: 20px;
            font-weight: 600 !important;
            transition: transform 0.3s, box-shadow 0.3s !important;
        }
        .nav-cta:hover {
            transform: translateY(-1px);
            box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
        }
        .nav-mobile-btn {
            display: none;
            width: 38px;
            height: 38px;
            border-radius: 10px;
            background: rgba(212, 175, 55, 0.12);
            border: 1.5px solid rgba(212, 175, 55, 0.35);
            cursor: pointer;
            -webkit-tap-highlight-color: transparent;
            touch-action: manipulation;
            align-items: center;
            justify-content: center;
            transition: all 0.2s;
        }
        .nav-mobile-btn:active {
            background: rgba(212, 175, 55, 0.25);
            transform: scale(0.95);
        }

        /* Hero */
        .hero {
            min-height: 100vh;
            background: linear-gradient(160deg, var(--blue-deep) 0%, var(--blue-dark) 40%, var(--blue-mid) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            padding: 80px 24px;
        }
        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
            border-radius: 50%;
            animation: pulse-glow 6s ease-in-out infinite;
        }
        .hero::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -10%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(30, 77, 140, 0.2) 0%, transparent 70%);
            border-radius: 50%;
        }
        @keyframes pulse-glow {
            0%, 100% { opacity: 0.5; transform: scale(1); }
            50% { opacity: 1; transform: scale(1.1); }
        }
        .hero-content {
            text-align: center;
            position: relative;
            z-index: 1;
            max-width: 800px;
        }
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(212, 175, 55, 0.1);
            border: 1px solid rgba(212, 175, 55, 0.3);
            color: var(--gold);
            padding: 8px 20px;
            border-radius: 24px;
            font-size: 13px;
            font-weight: 500;
            margin-bottom: 32px;
            letter-spacing: 1px;
        }
        .hero-badge::before {
            content: '🎯';
        }
        .hero-title {
            font-size: 52px;
            font-weight: 800;
            color: var(--white);
            line-height: 1.2;
            margin-bottom: 20px;
            letter-spacing: 2px;
        }
        .hero-title .gold {
            background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dim));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .hero-subtitle {
            font-size: 18px;
            color: rgba(255,255,255,0.6);
            line-height: 1.8;
            margin-bottom: 40px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        .hero-actions {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        /* ===== Hero Three-Column Layout ===== */
        @media (max-width: 1080px) {
            .nav-links { gap: 18px; }
            .nav-links a { font-size: 13px; letter-spacing: 0; }
            .nav-cta { padding: 6px 14px; }
        }
        @media (max-width: 860px) {

            .nav-links { display: none; }
            .nav-mobile-btn { display: flex; }
            .hero-title { font-size: 32px; }
            .hero-subtitle { font-size: 15px; }
            .hero-actions { flex-direction: column; align-items: center; }
            .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 16px; }
            .stat-number { font-size: 24px; }
            .companies-grid { grid-template-columns: 1fr; }
            .services-grid { grid-template-columns: 1fr; }
            .edu-grid { grid-template-columns: 1fr; }
            .section-title { font-size: 28px; }
            .cta-box { padding: 48px 24px; }
            .cta-title { font-size: 24px; }
            .footer-inner { flex-direction: column; text-align: center; }
        }

        /* Mobile nav overlay */
        .nav-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.6);
            z-index: 999;
            opacity: 0;
            transition: opacity 0.3s;
        }
        .nav-overlay.active { display: block; opacity: 1; }
        .nav-overlay-panel {
            position: absolute;
            top: 0;
            right: 0;
            width: min(300px, 80vw);
            height: 100%;
            background: linear-gradient(180deg, #0F2340 0%, #0A1628 100%);
            padding: 0;
            transform: translateX(100%);
            transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
            overflow-y: auto;
        }
        .nav-overlay.active .nav-overlay-panel { transform: translateX(0); }
        .nav-overlay-header {
            padding: 20px 24px 16px;
            border-bottom: 1px solid rgba(212, 175, 55, 0.1);
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        .nav-overlay-header-title {
            color: var(--gold);
            font-size: 18px;
            font-weight: 700;
            letter-spacing: 2px;
        }
        .nav-overlay-close {
            width: 32px;
            height: 32px;
            border-radius: 8px;
            background: rgba(255,255,255,0.05);
            border: none;
            color: rgba(255,255,255,0.5);
            font-size: 18px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            touch-action: manipulation;
        }
        .nav-overlay-close:active { background: rgba(255,255,255,0.1); }
        .nav-overlay-body { padding: 12px 16px; }
        .nav-overlay-section {
            font-size: 11px;
            color: rgba(255,255,255,0.3);
            text-transform: uppercase;
            letter-spacing: 3px;
            padding: 12px 8px 8px;
            font-weight: 600;
        }
        .nav-overlay a {
            display: flex;
            align-items: center;
            gap: 14px;
            color: rgba(255,255,255,0.8);
            text-decoration: none;
            font-size: 15px;
            padding: 13px 14px;
            border-radius: 12px;
            letter-spacing: 0.5px;
            transition: all 0.15s;
            touch-action: manipulation;
            margin-bottom: 2px;
        }
        .nav-overlay a:active {
            background: rgba(212, 175, 55, 0.12);
            color: var(--gold);
        }
        .nav-overlay a:hover { color: var(--gold); background: rgba(212, 175, 55, 0.08); }
        .nav-overlay .nav-overlay-icon {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            flex-shrink: 0;
        }
        .nav-overlay-divider {
            height: 1px;
            background: rgba(255,255,255,0.06);
            margin: 8px 8px;
        }
/* Recruitment Section */
#recruitment {
    background: linear-gradient(180deg, #132441 0%, #0F1D30 100%);
    position: relative;
    overflow: hidden;
}
#recruitment::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212,175,55,0.08) 0%, transparent 70%);
    pointer-events: none;
}
#recruitment .section-tag { color: var(--gold); }
#recruitment .section-title { color: #fff; }
#recruitment .section-desc { color: rgba(255,255,255,0.5); }

.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(212,175,55,0.3) 50%, transparent 100%);
    max-width: 600px;
    margin: 0 auto;
}

.recruitment-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    max-width: 800px;
    margin: 0 auto;
}
.recruit-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 100%);
    border-radius: 16px;
    padding: 20px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    transition: all 0.3s ease;
    border: 1px solid rgba(212,175,55,0.15);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}
.recruit-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, var(--gold), #8B6914);
    border-radius: 3px 0 0 3px;
}
.recruit-card:hover, .recruit-card:active {
    transform: translateY(-2px);
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(212,175,55,0.05) 100%);
    border-color: rgba(212,175,55,0.4);
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
.recruit-left { flex: 1; min-width: 0; }
.recruit-company {
    font-size: 12px;
    color: var(--gold);
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 6px;
    text-transform: uppercase;
}
.recruit-title {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.recruit-meta {
    font-size: 11px;
    color: rgba(255,255,255,0.4);
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}
.recruit-deadline {
    color: rgba(255,255,255,0.4);
}
.recruit-deadline.urgent {
    color: #FF6B6B;
    font-weight: 600;
}
.recruit-right {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}
.recruit-count { text-align: center; }
.recruit-count-num {
    font-size: 22px;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
}
.recruit-count-label {
    font-size: 10px;
    color: rgba(255,255,255,0.35);
    margin-top: 2px;
}
.recruit-status {
    padding: 4px 10px;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 600;
    white-space: nowrap;
}
.status-active {
    background: rgba(46,184,92,0.15);
    color: #4ADE80;
    border: 1px solid rgba(46,184,92,0.25);
}
.status-closed {
    background: rgba(255,255,255,0.05);
    color: rgba(255,255,255,0.35);
    border: 1px solid rgba(255,255,255,0.1);
}
.status-upcoming {
    background: rgba(212,175,55,0.15);
    color: var(--gold);
    border: 1px solid rgba(212,175,55,0.25);
}
.status-new {
    background: rgba(255,59,48,0.15);
    color: #FF3B30;
    border: 1px solid rgba(255,59,48,0.3);
    animation: newPulse 2s ease-in-out infinite;
}
@keyframes newPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}
.recruit-empty {
    text-align: center;
    padding: 40px;
    color: rgba(255,255,255,0.35);
    font-size: 14px;
}
.recruit-update-time {
    text-align: center;
    font-size: 11px;
    color: rgba(255,255,255,0.25);
    margin-top: 20px;
}
.recruit-ticker-wrap {
    margin-top: 24px;
    background: rgba(255,255,255,0.03);
    border-radius: 12px;
    padding: 14px 0;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255,255,255,0.05);
}
.recruit-ticker-track {
    display: flex;
    animation: tickerScroll 30s linear infinite;
    padding-left: 16px;
}
.recruit-ticker-track:hover { animation-play-state: paused; }
.recruit-ticker-item {
    flex-shrink: 0;
    padding: 8px 16px;
    margin-right: 10px;
    background: rgba(255,255,255,0.04);
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.06);
    white-space: nowrap;
}
.recruit-ticker-item:hover, .recruit-ticker-item:active {
    border-color: rgba(212,175,55,0.3);
    background: rgba(212,175,55,0.06);
}
.ticker-company { font-size: 12px; font-weight: 700; color: #fff; }
.ticker-sep { color: rgba(212,175,55,0.4); font-weight: 300; }
.ticker-title { font-size: 11px; color: rgba(255,255,255,0.45); }
.ticker-count { font-size: 13px; font-weight: 800; color: var(--gold); }
.ticker-count-unit { font-size: 10px; color: rgba(255,255,255,0.35); font-weight: 400; }
.ticker-badge {
    padding: 2px 8px;
    border-radius: 8px;
    font-size: 10px;
    font-weight: 600;
    background: rgba(46,184,92,0.15);
    color: #4ADE80;
}
@keyframes tickerScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.recruit-card-link {
    text-decoration: none !important;
    display: block;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}
.recruit-card-link .recruit-card {
    cursor: pointer;
}
.recruit-card-link:active .recruit-card {
    transform: scale(0.98);
    border-color: rgba(212,175,55,0.5) !important;
    background: linear-gradient(135deg, rgba(255,255,255,0.12) 0%, rgba(212,175,55,0.08) 100%) !important;
}
.recruit-more-btn-wrap { text-align: center; margin-top: 24px; display: flex; justify-content: center; flex-wrap: wrap; gap: 8px; }
.recruit-more-btn {
    background: linear-gradient(135deg, rgba(212,175,55,0.15), rgba(212,175,55,0.05));
    color: var(--gold);
    border: 1px solid rgba(212,175,55,0.3);
    padding: 12px 32px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}
.recruit-more-btn:hover, .recruit-more-btn:active {
    background: linear-gradient(135deg, rgba(212,175,55,0.25), rgba(212,175,55,0.1));
    border-color: rgba(212,175,55,0.5);
}
.recruit-share-btn {
    background: linear-gradient(135deg, rgba(255,59,48,0.15), rgba(255,59,48,0.05));
    color: #FF6B6B;
    border: 1px solid rgba(255,59,48,0.3);
    padding: 12px 24px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-left: 12px;
}
.recruit-share-btn:hover, .recruit-share-btn:active {
    background: linear-gradient(135deg, rgba(255,59,48,0.25), rgba(255,59,48,0.1));
    border-color: rgba(255,59,48,0.5);
}
.recruit-modal-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(10, 22, 40, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 9999;
    justify-content: center;
    align-items: flex-start;
    padding: 56px 8px 8px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}
.recruit-modal-overlay.active {
    display: flex;
}
.recruit-modal {
    background: linear-gradient(180deg, #0F2240 0%, #0A1628 100%);
    border-radius: 16px;
    width: 100%;
    max-width: 600px;
    max-height: 85vh;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(212,175,55,0.15);
}
.recruit-modal-header {
    border-bottom: 1px solid rgba(212,175,55,0.15);
    background: linear-gradient(135deg, var(--blue-deep), var(--blue-dark));
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 2;
}
.recruit-modal-header h3 {
    color: #fff;
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
}
.recruit-modal-header h3 span {
    color: var(--gold);
}
.recruit-modal-close {
    color: rgba(255,255,255,0.5);
    background: rgba(255,255,255,0.18);
    border: 2px solid rgba(255,255,255,0.25);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 22px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    flex-shrink: 0;
    line-height: 1;
    transition: all 0.15s;
}
.recruit-modal-close:hover,
.recruit-modal-close:active {
    background: rgba(255,255,255,0.35);
}
.recruit-modal-body {
    color: rgba(255,255,255,0.7);
    overflow-y: auto;
    padding: 16px;
    -webkit-overflow-scrolling: touch;
}
.recruit-modal-item {
    display: block;
    padding: 0;
    border-radius: 14px;
    margin-bottom: 10px;
    background: linear-gradient(135deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 100%);
    cursor: pointer;
    border: 1px solid rgba(212,175,55,0.12);
    overflow: hidden;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    transition: all 0.15s;
    position: relative;
}
.recruit-modal-item:active {
    transform: scale(0.98);
    border-color: rgba(212,175,55,0.4);
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(212,175,55,0.05) 100%);
}
.recruit-modal-item-row1 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px 6px;
    border-left: 3px solid var(--gold);
}
.recruit-modal-item-row2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px 14px;
}
.recruit-modal-item-company {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    flex: 1;
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-right: 10px;
}
.recruit-modal-item-badge {
    font-size: 11px;
    padding: 3px 10px;
    border-radius: 10px;
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
}
.recruit-modal-item-badge.active {
    background: rgba(46,184,92,0.15);
    color: #4ADE80;
    border: 1px solid rgba(46,184,92,0.25);
}
.recruit-modal-item-badge.upcoming {
    background: rgba(212,175,55,0.15);
    color: var(--gold);
    border: 1px solid rgba(212,175,55,0.25);
}
.recruit-modal-item-badge.closed {
    background: rgba(255,255,255,0.05);
    color: rgba(255,255,255,0.35);
    border: 1px solid rgba(255,255,255,0.1);
}
.recruit-modal-item-title {
    font-size: 13px;
    color: rgba(255,255,255,0.45);
    flex: 1;
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-right: 12px;
}
.recruit-modal-item-right {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}
.recruit-modal-item-count {
    font-size: 22px;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
}
.recruit-modal-item-count small {
    font-size: 12px;
    font-weight: 500;
    color: rgba(255,255,255,0.35);
    margin-left: 2px;
}
.recruit-modal-item-arrow {
    color: var(--gold);
    font-size: 18px;
    font-weight: 700;
}
.recruit-modal-date {
    text-align: center;
    font-size: 12px;
    color: rgba(255,255,255,0.3);
    padding: 8px 0 4px;
}

.recruit-card-link {
    text-decoration: none !important;
    display: block;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}
.recruit-card-link .recruit-card {
    cursor: pointer;
}
.recruit-card-link:active .recruit-card {
    transform: scale(0.98);
    border-color: rgba(212,175,55,0.5) !important;
    background: linear-gradient(135deg, rgba(255,255,255,0.12) 0%, rgba(212,175,55,0.08) 100%) !important;
}
.recruit-more-btn-wrap {
    text-align: center;
    margin-top: 16px;
}
.recruit-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--blue-deep), var(--blue-mid));
    color: var(--gold);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 10px 28px;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}
.recruit-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.3);
    border-color: var(--gold);
}
.recruit-more-btn:active {
    transform: translateY(0);
}


        .nav-login-btn {
            padding: 7px 18px;
            border-radius: 20px;
            background: linear-gradient(135deg, var(--gold), var(--gold-light));
            color: var(--blue-deep);
            font-size: 13px;
            font-weight: 700;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 5px;
            white-space: nowrap;
            box-shadow: 0 2px 8px rgba(212, 175, 55, 0.25);
            transition: all 0.2s;
        }
        .nav-login-btn:active {
            transform: scale(0.96);
        }
        .nav-right-group {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        @media (min-width: 861px) {
            .nav-login-btn { display: flex; }
            .nav-right-group .nav-mobile-btn { display: none; }
        }
        @media (max-width: 860px) {
            .nav-login-btn {
                padding: 6px 14px;
                font-size: 12px;
                border-radius: 16px;
                margin-right: 8px;
            }
        }

    
/* ===== Mobile Bottom Tab Bar ===== */
.mobile-tab-bar {
    display: none;
    position: fixed !important;
    bottom: 0 !important;
    left: 0;
    right: 0;
    z-index: 1001;
    background: rgba(10, 22, 40, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding: 6px 0;
    padding-bottom: max(8px, env(safe-area-inset-bottom));
    height: auto;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    will-change: transform;
}
.mobile-tab-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-around;
    max-width: 500px;
    margin: 0 auto;
}
.mobile-tab-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: rgba(255,255,255,0.4);
    font-size: 10px;
    font-weight: 500;
    padding: 4px 0;
    transition: color 0.2s;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    position: relative;
    min-width: 56px;
}
.mobile-tab-item.active,
.mobile-tab-item:active {
    color: var(--gold);
}
.mobile-tab-icon {
    font-size: 22px;
    margin-bottom: 2px;
    line-height: 1;
}
.mobile-tab-item.active .mobile-tab-icon {
    filter: drop-shadow(0 0 6px rgba(212,175,55,0.5));
}
/* VIP badge on tab */
.mobile-tab-badge {
    position: absolute;
    top: 0;
    right: 6px;
    background: linear-gradient(135deg, #E74C3C, #C0392B);
    color: #fff;
    font-size: 8px;
    padding: 1px 4px;
    border-radius: 6px;
    font-weight: 700;
    line-height: 1.3;
}
@media (max-width: 860px) {
    .mobile-tab-bar { display: block !important; }
    body { padding-bottom: calc(70px + env(safe-area-inset-bottom, 0px)); }
    /* 防止iOS Safari弹性滚动把Tab栏带跑 */
    html { overflow: hidden; height: 100%; height: 100dvh; overscroll-behavior: none; }
    body { overflow: auto; height: 100%; height: 100dvh; -webkit-overflow-scrolling: touch; overscroll-behavior: none; }
    .nav-mobile-btn { display: none !important; }
    .nav-overlay { display: none !important; }
    .nav-login-btn {
        padding: 6px 14px;
        font-size: 12px;
        border-radius: 16px;
    }
}
@media (min-width: 861px) {
    .mobile-tab-bar { display: none !important; }
    body { padding-bottom: 0; }
}

/* Share Poster Modal */
.share-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.8);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}
.share-overlay.active {
    display: flex;
}
.share-modal {
    background: linear-gradient(180deg, #0A1628, #0F2240);
    border: 1px solid rgba(212,175,55,0.3);
    border-radius: 16px;
    width: 90%;
    max-width: 420px;
    max-height: 90vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.share-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid rgba(212,175,55,0.15);
    color: var(--gold);
    font-size: 16px;
    font-weight: 600;
}
.share-close-btn {
    background: none;
    border: none;
    color: rgba(255,255,255,0.5);
    font-size: 20px;
    cursor: pointer;
    padding: 4px 8px;
}
.share-poster-wrap {
    padding: 12px;
    overflow-y: auto;
    flex: 1;
}
.share-poster-img {
    width: 100%;
    border-radius: 8px;
    display: block;
}
.share-tip {
    text-align: center;
    color: rgba(255,255,255,0.5);
    font-size: 13px;
    padding: 8px;
}
.share-download-btn {
    margin: 8px 16px 16px;
    padding: 14px;
    background: linear-gradient(135deg, #D4AF37, #B8941F);
    color: #0A1628;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
}


    /* ===== 承诺书弹窗 ===== */
    .pledge-overlay {
        display: none;
        position: fixed;
        top: 0; left: 0; right: 0; bottom: 0;
        background: rgba(10, 22, 40, 0.92);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        z-index: 99999;
        justify-content: center;
        align-items: center;
        padding: 20px 16px;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    .pledge-overlay.active {
        display: flex;
    }
    .pledge-card {
        background: linear-gradient(180deg, #0F2240 0%, #0A1628 100%);
        border-radius: 20px;
        width: 100%;
        max-width: 420px;
        overflow: hidden;
        box-shadow: 0 24px 80px rgba(0,0,0,0.7), 0 0 60px rgba(212,175,55,0.08);
        border: 1px solid rgba(212,175,55,0.25);
        position: relative;
    }
    .pledge-card::before {
        content: '';
        position: absolute;
        top: 0; left: 0; right: 0;
        height: 3px;
        background: linear-gradient(90deg, transparent, #D4AF37, transparent);
    }
    .pledge-header {
        text-align: center;
        padding: 28px 24px 16px;
        position: relative;
    }
    .pledge-icon {
        width: 56px; height: 56px;
        margin: 0 auto 12px;
        background: linear-gradient(135deg, #D4AF37, #B8942E);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 28px;
        box-shadow: 0 4px 20px rgba(212,175,55,0.3);
    }
    .pledge-title {
        color: #D4AF37;
        font-size: 22px;
        font-weight: 800;
        letter-spacing: 3px;
        margin-bottom: 4px;
    }
    .pledge-subtitle {
        color: rgba(255,255,255,0.5);
        font-size: 12px;
        letter-spacing: 1px;
    }
    .pledge-body {
        padding: 0 24px 20px;
        color: rgba(255,255,255,0.85);
        font-size: 14px;
        line-height: 1.85;
    }
    .pledge-body .pledge-intro {
        color: rgba(255,255,255,0.6);
        font-size: 13px;
        margin-bottom: 16px;
        text-align: center;
        line-height: 1.7;
    }
    .pledge-section {
        background: rgba(255,255,255,0.04);
        border: 1px solid rgba(212,175,55,0.1);
        border-radius: 12px;
        padding: 16px;
        margin-bottom: 12px;
    }
    .pledge-section-title {
        color: #D4AF37;
        font-size: 14px;
        font-weight: 700;
        margin-bottom: 8px;
        display: flex;
        align-items: center;
        gap: 6px;
    }
    .pledge-section p {
        margin: 0;
        font-size: 13px;
        line-height: 1.8;
        color: rgba(255,255,255,0.75);
    }
    .pledge-section .highlight {
        color: #E8C84A;
        font-weight: 600;
    }
    .pledge-section .warn {
        color: #FF6B6B;
        font-weight: 600;
    }
    .pledge-divider {
        border: none;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(212,175,55,0.2), transparent);
        margin: 16px 0;
    }
    .pledge-footer {
        padding: 0 24px 28px;
        text-align: center;
    }
    .pledge-agree-btn {
        width: 100%;
        padding: 14px;
        background: linear-gradient(135deg, #D4AF37, #B8942E);
        color: #0A1628;
        border: none;
        border-radius: 12px;
        font-size: 16px;
        font-weight: 700;
        letter-spacing: 2px;
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
        box-shadow: 0 4px 20px rgba(212,175,55,0.3);
        transition: all 0.2s ease;
    }
    .pledge-agree-btn:active {
        transform: scale(0.97);
        box-shadow: 0 2px 10px rgba(212,175,55,0.2);
    }
    .pledge-note {
        color: rgba(255,255,255,0.35);
        font-size: 11px;
        margin-top: 12px;
        line-height: 1.5;
    }


    /* ===== 内容保护 ===== */
    /* 禁止文本选择 */
    .no-select {
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }
    .no-select input,
    .no-select textarea {
        -webkit-user-select: text;
        -moz-user-select: text;
        -ms-user-select: text;
        user-select: text;
    }
    /* 水印层 */
    /* 截屏遮罩 */
    .screenshot-shield {
        display: none;
        position: fixed;
        top: 0; left: 0; right: 0; bottom: 0;
        background: #0A1628;
        z-index: 999999;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }
    .screenshot-shield.active {
        display: flex;
    }
    .screenshot-shield-icon {
        font-size: 48px;
        margin-bottom: 16px;
    }
    .screenshot-shield-text {
        color: #FF6B6B;
        font-size: 18px;
        font-weight: 700;
        letter-spacing: 2px;
    }
    .screenshot-shield-sub {
        color: rgba(255,255,255,0.4);
        font-size: 13px;
        margin-top: 8px;
    }


/* PWA Install Prompt */
.pwa-install-prompt {
    display: none;
    position: fixed;
    bottom: 70px;
    left: 10px;
    right: 10px;
    z-index: 9999;
    background: linear-gradient(135deg, #0F2340, #163A6B);
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 16px;
    padding: 14px 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.5);
    animation: pwaSlideUp 0.4s ease;
}
@keyframes pwaSlideUp {
    from { transform: translateY(100px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
.pwa-install-prompt .pwa-title {
    font-size: 14px;
    font-weight: 700;
    color: #D4AF37;
    margin-bottom: 6px;
}
.pwa-install-prompt .pwa-desc {
    font-size: 12px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 10px;
    line-height: 1.4;
}
.pwa-install-prompt .pwa-btns {
    display: flex;
    gap: 8px;
    justify-content: flex-end;
}
.pwa-install-prompt .pwa-btn {
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    border: none;
    cursor: pointer;
}
.pwa-install-prompt .pwa-btn-install {
    background: linear-gradient(135deg, #D4AF37, #E8C84A);
    color: #0A1628;
}
.pwa-install-prompt .pwa-btn-dismiss {
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.6);
}
/* ===== 城市圆形按钮 移动端适配 ===== */
@media (max-width: 480px) {
  .city-pills-row { gap: 6px; max-width: 340px }
  .city-pill { width: 42px; height: 42px; font-size: 12px }
}
@media (max-width: 360px) {
  .city-pills-row { gap: 5px; max-width: 300px }
  .city-pill { width: 38px; height: 38px; font-size: 11px }
}
