.role-popup {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.popup-content {
    background: #1a1a2e;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    width: 300px;
    border: 2px solid #ff6b35;
    position: relative;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

.popup-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 1rem;
}

.btn-popup {
    background: linear-gradient(45deg, #ff6b35, #ff9f1c);
    border: none;
    border-radius: 10px;
    color: #fff;
    font-weight: bold;
    padding: 10px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-popup:hover {
    background: linear-gradient(45deg, #2ec4b6, #ff6b35);
}

.popup-close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: transparent;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
}