:root {
    --primary: #2563eb;
    --success: #10b981;
    --bg: #f3f4f6;
    --white: #ffffff;
    --text: #1f2937;
    --text-light: #6b7280;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Cairo', sans-serif;
    background: var(--bg);
}

.top-nav {
    background: var(--white);
    padding: 15px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.back-btn { color: var(--text-light); text-decoration: none; }
.apply-btn-nav { background: var(--success); color: white; padding: 8px 16px; border-radius: 8px; text-decoration: none; }

.container { max-width: 1100px; margin: 0 auto; padding: 30px 20px; }

.job-hero {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    margin-bottom: 25px;
}

.badges { display: flex; justify-content: center; gap: 10px; margin-bottom: 15px; }
.badge { background: #dbeafe; color: var(--primary); padding: 6px 14px; border-radius: 20px; font-size: 0.9rem; }
.job-hero h1 { color: var(--text); margin-bottom: 10px; }
.company { color: var(--text-light); }

.stats { display: flex; justify-content: center; gap: 20px; margin-bottom: 30px; }
.stat-box {
    background: var(--white);
    padding: 20px 30px;
    border-radius: 12px;
    text-align: center;
}
.stat-box span { font-size: 1.5rem; display: block; }
.stat-box strong { display: block; font-size: 1.3rem; color: var(--text); }
.stat-box small { color: var(--text-light); font-size: 0.85rem; }

.content { display: grid; grid-template-columns: 2fr 1fr; gap: 25px; }

.card {
    background: var(--white);
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 20px;
}
.card h3 { color: var(--text); margin-bottom: 15px; font-size: 1.1rem; }
.card p { color: var(--text-light); line-height: 1.8; }

.skills-grid { display: flex; flex-wrap: wrap; gap: 10px; }
.skills-grid span {
    background: #e0f2fe;
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 8px;
}

.card ul { list-style: none; }
.card ul li { padding: 8px 0; border-bottom: 1px solid #eee; }

.apply-btn {
    display: block;
    width: 100%;
    padding: 16px;
    background: var(--success);
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 700;
}
.apply-btn:hover { background: #059669; }

@media (max-width: 768px) {
    .content { grid-template-columns: 1fr; }
}