:root {
    --bg-dark: #050507;
    --card-bg: #0f1014;
    --card-border: rgba(255, 255, 255, 0.08);
    --primary: #3b82f6;
    --primary-gradient: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    --text-main: #ffffff;
    --text-muted: #9ca3af;
    --accent-glow: rgba(59, 130, 246, 0.5);
    --radius: 12px;
    --font-family: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4 {
    color: var(--text-main);
    font-weight: 700;
}

.section-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

/* Hero Section */
.hero-section {
    text-align: center;
    padding: 80px 0 60px;
    position: relative;
    background: radial-gradient(circle at 50% 0%, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
}

.hero-title {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    background: linear-gradient(to right, #fff, #93c5fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.highlight {
    color: #3b82f6;
    -webkit-text-fill-color: #3b82f6;
}

.hero-meta {
    display: flex;
    justify-content: center;
    gap: 15px;
    color: #93c5fd;
    font-size: 0.9rem;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.hero-meta span {
    position: relative;
}
.hero-meta span:not(:last-child)::after {
    content: "+";
    margin-left: 15px;
    opacity: 0.5;
}

.cta-btn {
    display: inline-block;
    background: var(--primary-gradient);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.4);
    transition: transform 0.2s, box-shadow 0.2s;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.6);
}

/* Sections */
.content-section {
    margin-bottom: 30px;
}

.dark-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    padding: 30px;
}

.text-content p {
    color: var(--text-muted);
    margin-bottom: 15px;
    font-size: 0.95rem;
}

/* Tags in About */
.tags-row {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}
.mini-tag {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--card-border);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    color: #e5e7eb;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Job Cards (Replacing Listings) */
.job-listing-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    padding: 25px;
    margin-bottom: 20px;
    transition: border-color 0.3s;
}

.job-listing-card:hover {
    border-color: rgba(59, 130, 246, 0.3);
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.job-title {
    font-size: 1.4rem;
    margin-bottom: 5px;
}

.job-sub {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.skills-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0;
}

.skill-pill {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    color: #93c5fd;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.85rem;
}

/* Responsibilities Grid (If used inside a job card) */
.resp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 20px;
}
.resp-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 15px;
    border-radius: 8px;
    display: flex;
    gap: 10px;
    align-items: center;
}
.resp-icon {
    font-size: 1.2rem;
    color: var(--primary);
}

/* Bullet Lists */
.bullet-list {
    list-style: none;
}
.bullet-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    color: var(--text-muted);
    font-size: 0.95rem;
}
.bullet-list li::before {
    content: "►"; /* Arrow shape */
    position: absolute;
    left: 0;
    color: var(--primary);
    font-size: 0.8rem;
    top: 4px;
}

/* Selection Process */
.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 20px;
}
.process-step {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--card-border);
    padding: 25px 15px;
    border-radius: var(--radius);
    text-align: center;
}
.step-num {
    width: 30px;
    height: 30px;
    background: var(--primary-gradient);
    border-radius: 50%;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
}
.step-title {
    font-size: 0.95rem;
    margin-bottom: 5px;
    color: white;
}
.step-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.download-box {
    text-align: center;
    margin-top: 20px;
}
.download-btn {
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 5px;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .process-grid {
        grid-template-columns: 1fr;
    }
    .hero-title {
        font-size: 2rem;
    }
}
