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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
    background: linear-gradient(135deg, #ffffff 0%, #f8fbff 50%, #e8f4fd 100%);
    min-height: 100vh;
    color: #2c3e50;
    line-height: 1.6;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

.job-header {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 107, 53, 0.1);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 8px 32px rgba(255, 107, 53, 0.1);
    transition: all 0.3s ease;
}

.job-header:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.15);
}

.job-title {
    font-size: 2.5rem;
    font-weight: 300;
    color: #2c3e50;
    margin-bottom: 20px;
    font-family: 'PingFang SC';
}

.job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
}

.meta-item {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.meta-icon {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.apply-btn {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.apply-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 107, 53, 0.4);
    text-decoration: none;
    color: white;
}

.job-content {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 107, 53, 0.1);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(255, 107, 53, 0.1);
    transition: all 0.3s ease;
}

.job-content:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.15);
}

.section {
    margin-bottom: 30px;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 400;
    color: #2c3e50;
    margin-bottom: 15px;
    border-left: 4px solid #ff6b35;
    padding-left: 15px;
}

.section-content {
    line-height: 1.8;
    color: #495057;
}

.section-content ul {
    list-style: none;
    padding-left: 0;
}

.section-content li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.section-content li:before {
    content: "•";
    color: #ff6b35;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.highlight-box {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 140, 66, 0.1) 100%);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 15px;
    padding: 20px;
    margin-top: 20px;
}

.highlight-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ff6b35;
    margin-bottom: 10px;
}

.back-btn {
    position: fixed;
    top: 30px;
    left: 30px;
    background: rgba(255, 255, 255, 0.9);
    color: #ff6b35;
    padding: 10px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.back-btn:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-2px);
    text-decoration: none;
    color: #ff6b35;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.2);
}

@media (max-width: 768px) {
    .container {
        padding: 20px 15px;
    }
    
    .job-header, .job-content {
        padding: 25px;
    }
    
    .job-title {
        font-size: 2rem;
    }
    
    .job-meta {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    
    .back-btn {
        position: static;
        margin-bottom: 20px;
        display: inline-block;
    }
}