.share-url-popup-overlay
{
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.82);
    z-index: 999999;
}

.share-url-popup-overlay.show
{
    display: flex;
}

.share-url-popup-box
{
    position: relative;
    width: 520px;
    max-width: 92vw;
    padding: 28px 24px 22px 24px;
    border-radius: 22px;
    background:
        radial-gradient(circle at top center, rgba(35, 92, 255, 0.18), rgba(0, 0, 0, 0) 45%),
        linear-gradient(180deg, #07101f 0%, #03070f 100%);
    border: 1px solid rgba(61, 124, 255, 0.35);
    box-shadow:
        0 0 30px rgba(20, 70, 180, 0.20),
        0 20px 50px rgba(0, 0, 0, 0.55);
    color: #ffffff;
    font-family: Arial, sans-serif;
    box-sizing: border-box;
}

.share-url-popup-close-btn
{
    position: absolute;
    top: 12px;
    right: 12px;
    width: 34px;
    height: 34px;
    border: none;
    border-radius: 50%;
    background: rgba(19, 33, 73, 0.9);
    color: #d8e6ff;
    font-size: 16px;
    cursor: pointer;
}

.share-url-popup-close-btn:hover
{
    background: rgba(40, 74, 155, 1);
}

.share-url-popup-title
{
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #f5f9ff;
}

.share-url-popup-subtitle
{
    font-size: 13px;
    color: rgba(210, 225, 255, 0.72);
    margin-bottom: 18px;
}

.share-url-popup-input
{
    width: 100%;
    height: 50px;
    padding: 0 16px;
    border-radius: 14px;
    border: 1px solid rgba(70, 116, 255, 0.28);
    outline: none;
    background: rgba(4, 10, 24, 0.96);
    color: #dce9ff;
    font-size: 14px;
    box-sizing: border-box;
    margin-bottom: 18px;
}

.share-url-popup-actions
{
    display: flex;
    gap: 12px;
}

.share-url-popup-btn
{
    flex: 1;
    height: 46px;
    border: none;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
}

.share-url-popup-btn-primary
{
    background: linear-gradient(180deg, #3e82ff, #1b5fe0);
    color: #ffffff;
}

.share-url-popup-btn-secondary
{
    background: rgba(13, 24, 53, 0.95);
    color: #d9e7ff;
    border: 1px solid rgba(70, 116, 255, 0.26);
}

.copy-toast
{
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: rgba(10, 25, 70, 0.95);
    color: #eaf2ff;
    padding: 12px 18px;
    border-radius: 12px;
    border: 1px solid rgba(80, 140, 255, 0.25);
    font-size: 13px;
    opacity: 0;
    transition: 0.3s ease;
    z-index: 999999;
}

.copy-toast.show
{
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

