/* front-page-hiring-event.css */
.hiring-event-section {
    padding: 40px;
    margin: 40px auto;
    text-align: center;
    position: relative;
    z-index: 3;
    animation: fadeIn 1.5s ease-in-out;
}

.hiring-event-section.active-event {
    transform: scale(1.02);
    transition: all 0.5s ease;
}

.hiring-event-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #00e5ff;
    text-shadow: 0 0 20px rgba(0, 229, 255, 0.9), 0 0 40px rgba(0, 229, 255, 0.5);
    margin-bottom: 20px;
    animation: glow 3s infinite alternate;
}

@keyframes glow {
    0% { text-shadow: 0 0 10px rgba(0, 229, 255, 0.6), 0 0 20px rgba(0, 229, 255, 0.3); }
    100% { text-shadow: 0 0 20px rgba(0, 229, 255, 0.9), 0 0 40px rgba(0, 229, 255, 0.5); }
}

.hiring-event-message {
    font-family: 'Exo 2', sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: #e0e0e0;
    line-height: 1.6;
    margin-bottom: 24px;
}

.hiring-event-timer {
    font-family: 'Orbitron', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #00e5ff;
    background: linear-gradient(90deg, rgba(0, 229, 255, 0.2), rgba(0, 184, 212, 0.2));
    border: 2px solid #00e5ff;
    border-radius: 25px;
    padding: 12px 24px;
    margin-bottom: 16px;
    display: inline-block;
    box-shadow: 0 5px 20px rgba(0, 229, 255, 0.6);
    text-shadow: 0 0 10px rgba(0, 229, 255, 0.6);
}

.hiring-event-date-time {
    font-family: 'Exo 2', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #e0e0e0;
    background: rgba(0, 229, 255, 0.1);
    border: 1px solid rgba(0, 229, 255, 0.4);
    border-radius: 15px;
    padding: 8px 16px;
    margin-bottom: 24px;
    display: inline-block;
    box-shadow: 0 5px 10px rgba(0, 229, 255, 0.3);
}

.hiring-event-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.hiring-event-actions .cta-button {
    font-family: 'Orbitron', sans-serif;
    font-size: 18px;
    padding: 14px 40px;
    background: linear-gradient(90deg, #00e5ff, #00b8d4);
    color: #0a192f;
    border: none;
    border-radius: 25px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 229, 255, 0.5);
}

.hiring-event-actions .cta-button:hover {
    background: linear-gradient(90deg, #00b8d4, #00e5ff);
    box-shadow: 0 5px 25px rgba(0, 229, 255, 0.8);
    transform: translateY(-2px);
}

.hiring-event-actions .cta-button.secondary {
    background: transparent;
    border: 2px solid #00e5ff;
    color: #00e5ff;
    box-shadow: 0 5px 15px rgba(0, 229, 255, 0.3);
}

.hiring-event-actions .cta-button.secondary:hover {
    background: rgba(0, 229, 255, 0.1);
    box-shadow: 0 5px 20px rgba(0, 229, 255, 0.6);
}

@media (max-width: 768px) {
    .hiring-event-section {
        padding: 20px;
        margin: 20px auto;
    }

    .hiring-event-title {
        font-size: 36px;
    }

    .hiring-event-message {
        font-size: 16px;
    }

    .hiring-event-timer {
        font-size: 24px;
        padding: 10px 20px;
    }

    .hiring-event-date-time {
        font-size: 16px;
        padding: 6px 12px;
    }

    .hiring-event-actions {
        flex-direction: column;
        gap: 12px;
    }

    .hiring-event-actions .cta-button {
        width: 100%;
        padding: 12px;
        font-size: 16px;
    }
}