.fcd-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.fcd-modal-content {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    max-width: 500px;
    width: 90%;
    text-align: center;
}

.fcd-modal h2 {
    margin-top: 0;
    color: #333;
}

.fcd-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.fcd-buttons button {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s;
}

.fcd-buttons button[data-role="fan"] {
    background-color: #4CAF50;
    color: white;
}

.fcd-buttons button[data-role="creator"] {
    background-color: #2196F3;
    color: white;
}

.fcd-buttons button:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}