#fcvd-popup-overlay, .fcvd-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 99998;
    display: none;
}
.fcvd-popup {
    display: none;
    /* Controlled by JS */
    flex-direction: column;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    z-index: 99999;
    width: 90%;
    max-width: 480px;
    background: #f8f6f2;
    border-radius: 0.75rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow: hidden;
}
.fcvd-popup.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}
.fcvd-popup__header {
    background: #1F1F1F;
    padding: 2.5rem 1rem;
    text-align: center;
    position: relative;
}
.fcvd-popup__header-title {
    color: #ffffff;
    font-family: "Rajdhani", sans-serif;
    font-size: 2.8rem;
    margin: 0;
    line-height: 1;
    font-weight: 700;
    text-transform: uppercase;
}
.fcvd-popup__close-btn {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    padding: 0;
}
.fcvd-popup__close-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}
.fcvd-popup__content {
    padding: 2rem;
    text-align: center;
}
.fcvd-popup__title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1f1f1f;
    line-height: 1.2;
}
.fcvd-popup__subtitle {
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: #444;
}
.fcvd-popup__code-wrapper {
    background: #fff;
    border-radius: 3rem;
    padding: 0.5rem 0.5rem 0.5rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 2px dashed #1F1F1F;
    margin-bottom: 0.5rem;
}
.fcvd-popup__code-text {
    color: #1F1F1F;
    font-weight: 800;
    font-size: 1.3rem;
    letter-spacing: 1px;
}
.fcvd-popup__copy-btn {
    background: #1F1F1F;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
.fcvd-popup__copy-btn svg path {
    stroke: #fff;
}
.copy-feedback {
    color: #00A72F;
    font-size: 0.85rem;
    margin-bottom: 1rem;
    font-weight: 600;
}
.fcvd-popup__fine-print {
    font-size: 0.75rem;
    opacity: 0.6;
    margin-top: 1rem;
    font-style: italic;
}