.share-modal--friends {
    padding-top: 20px;
}

.share-modal .title-one h3 {
    font-size: 28px;
    font-weight: 500;
}

.share-modal .title-one h2 {
    font-size: 42px;
    font-weight: 400;
    margin-bottom: 16px;
}

.checkmark-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 100%;
    background-color: #000000;
}

.checkmark-container--input {
    width: 16px;
    height: 16px;
}

.share-modal .title-one {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.share-modal hr {
    width: 100%;
}

.share-modal .title-one i {
    position: relative;
    width: 32px;
    height: 32px;
    font-size: 32px;
    color: #ccf080;
}

.share-modal .title-one i:before {
    position: absolute;
    top: -2px;
    left: -2px;
    width: 32px;
    height: 32px;
}

.share-modal_secondary-title {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 8px;
    margin-top: 16px;
}

.share-modal .title-one .share-modal_secondary-title--bitdegree {
    font-size: 48px;
    font-weight: 900;
    margin: 16px 0 12px;
    border-radius: 14px;
    padding: 4px;
    background-color: #ccf080;
}

.share-modal .title-one .share-modal_secondary-subtitle--bitdegree {
    font-size: 30px;
    color: black;
    font-weight: 500;
}

.copy-icon {
    display: flex;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    z-index: 10;
    pointer-events: auto;
    background: transparent;
    border: 0;
    padding: 0;
    cursor: pointer;
}

.copy-tooltip {
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    color: #000000;
    background-color: #ccf080;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.copy-tooltip::after {
    content: '';
    position: absolute;
    top: calc(100% - 1px);
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: #ccf080;
}

.copy-icon .bi-check-circle-fill {
    color: #ccf080;
}

.copy-icon svg {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.share-modal i {
    transition: all 0.3s ease;
}

.copy-icon.copied i {
    color: #ccf080;
    font-size: 20px;
    animation: checkmarkPulse 0.6s ease-in-out;
}

.copy-icon.copied .copy-tooltip {
    opacity: 1;
    visibility: visible;
}

.share-link-input.copied {
    border-color: #ccf080 !important;
    box-shadow: 0 0 0 1px #ccf080 !important;
    transition: all 0.3s ease;
}

@keyframes checkmarkPulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

.share-link-input {
    padding-right: 50px !important;
    font-size: 20px !important;
}

.social-share-buttons {
    margin-top: 20px;
}

.social-share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 24px;
    color: white;
}

.social-share-btn i {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 1px;
}

.social-share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    color: white;
    text-decoration: none;
}

.social-share-btn.twitter {
    background-color: #000000;
}

.social-share-btn.facebook {
    background-color: #0876e9;
}

.social-share-btn.telegram {
    background-color: #34ace0;
}

.social-share-btn.linkedin {
    background-color: #0b66c2;
    font-size: 22px;
    margin-top: 1px;
}

.social-share-btn.clipboard {
    background-color: #ccf080;
    position: relative;
    color: #000000;
    border: 0;
    cursor: pointer;
}

.social-share-btn.clipboard svg {
    stroke: #000000;
}

.social-share-btn.clipboard.copied .copy-tooltip {
    opacity: 1;
    visibility: visible;
}

.modal-image-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
}

.modal-image {
    max-height: 150px;
    border-radius: 12px;
}


