.featured-jobs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin: 30px 0;
}

.job-card {
    background: linear-gradient(135deg, #1a1a1a, #0d0d0d);
    border: 2px solid #ff0000;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.job-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 0, 0, 0.1), transparent);
    transition: left 0.5s;
}

.job-card:hover::before {
    left: 100%;
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.3);
    border-color: #ff3333;
}

.job-icon {
    font-size: 3em;
    color: #ff0000;
    margin-bottom: 15px;
    text-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
}

.job-card h3 {
    color: #fff;
    font-size: 1.4em;
    margin-bottom: 15px;
    font-family: 'Orbitron', monospace;
}

.job-card p {
    color: #ccc;
    margin-bottom: 20px;
    line-height: 1.5;
}

.job-perks {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.perk {
    background: rgba(255, 0, 0, 0.2);
    border: 1px solid #ff0000;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.8em;
    color: #fff;
}

.application-cta {
    text-align: center;
    margin: 40px 0;
    padding: 30px;
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid #ff0000;
    border-radius: 10px;
}

.application-cta h3 {
    color: #ff0000;
    font-size: 2em;
    margin-bottom: 15px;
    font-family: 'Orbitron', monospace;
}

.application-cta p {
    color: #ccc;
    font-size: 1.1em;
    margin-bottom: 25px;
}

.apply-now-btn {
    background: linear-gradient(45deg, #ff0000, #cc0000);
    border: none;
    color: #fff;
    padding: 15px 40px;
    font-size: 1.2em;
    border-radius: 25px;
    cursor: pointer;
    font-family: 'Orbitron', monospace;
    font-weight: bold;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    display: inline-block;
}

.apply-now-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.5);
}

.form-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #ff0000;
}

.form-header h3 {
    color: #ff0000;
    font-family: 'Orbitron', monospace;
    margin: 0;
}

.close-form-btn {
    background: #cc0000;
    border: none;
    color: #fff;
    padding: 8px 12px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.2em;
}

.close-form-btn:hover {
    background: #ff0000;
}

.job-status-badge {
    position: absolute;
    bottom: 10px;
    right: 10px;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.8em;
    font-weight: bold;
    text-transform: uppercase;
    z-index: 10;
}

.job-status-badge.open {
    background: rgba(0, 255, 0, 0.2);
    color: #00ff00;
    border: 1px solid #00ff00;
}

.job-status-badge.closed {
    background: rgba(255, 0, 0, 0.2);
    color: #ff0000;
    border: 1px solid #ff0000;
}

.job-card.job-closed {
    opacity: 0.6;
    filter: grayscale(50%);
}

.job-card.job-closed:hover {
    transform: none;
    box-shadow: none;
}

.roster-section {
    padding: 60px 0;
    background: rgba(0, 0, 0, 0.3);
    text-align: center;
}

.roster-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.roster-section h2 {
    color: #ff0000;
    font-family: 'Orbitron', monospace;
    font-size: 2.5em;
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
}

.roster-intro {
    text-align: center;
    margin-bottom: 40px;
}

.roster-intro p {
    color: #ccc;
    font-size: 1.2em;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.roster-cta {
    text-align: center;
}

.roster-btn {
    background: linear-gradient(45deg, #ff0000, #cc0000);
    border: none;
    color: #fff;
    padding: 15px 40px;
    font-size: 1.2em;
    border-radius: 25px;
    cursor: pointer;
    font-family: 'Orbitron', monospace;
    font-weight: bold;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.roster-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.5);
}

.roster-btn i {
    margin-right: 10px;
}

.waiting-approval {
    margin-top: 20px;
    text-align: center;
}

.waiting-badge {
    background: rgba(255, 165, 0, 0.2);
    color: #ffa500;
    border: 2px solid #ffa500;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: bold;
    display: inline-block;
    animation: pulse 2s infinite;
    font-family: 'Orbitron', monospace;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.7; }
    100% { opacity: 1; }
}