.hiring-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
    background: #fff;
    box-shadow: 0 0 20px rgba(0,0,0,0.2);
    border-radius: 10px;
    overflow: hidden;
    width: 500px;
    display: none;
}

.popup-content {
    position: relative;
}

.popup-header {
    background: #333;
    color: #00ff9d;
    padding: 20px;
    text-align: center;
}

.popup-header h2 {
    margin: 0;
    font-size: 1.2em;
    font-weight: 500;
}

.popup-body {
    padding: 30px;
    background: #444;
    color: #fff;
    text-align: center;
}

.hiring-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
}

.hiring-text {
    color: #00ff9d;
    font-size: 2.5em;
    font-weight: bold;
}

.position-text {
    color: #ffd700;
    font-size: 2em;
    font-weight: bold;
}

.talents-text {
    color: #ffd700;
    font-size: 1.8em;
}

.popup-image {
    width: 100%;
    height: 200px;
    background-image: url('../img/hiring_bg.jpg');
    background-size: cover;
    background-position: center;
    margin: 20px 0;
    border-radius: 5px;
}

.popup-footer {
    padding: 15px;
    background: #f5f5f5;
    border-top: 1px solid #eee;
}

.popup-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dont-show {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #666;
    font-size: 0.9em;
}

.popup-close {
    background: #333;
    color: #fff;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.popup-close:hover {
    background: #555;
} 