body.follow-waiting {
    overflow: hidden;
}

body.follow-waiting .page-wrapper {
    filter: blur(8px);
    pointer-events: none;
    user-select: none;
}

.follow-modal-backdrop {
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    background: rgba(2, 10, 14, 0.62) !important;
}

.follow-modal-dialog {
    max-width: 460px;
    padding: 16px;
}

.follow-modal-content {
    position: relative;
    overflow: hidden;
    padding: 0;
    background: linear-gradient(165deg, rgba(8, 28, 36, 0.72) 0%, rgba(3, 12, 16, 0.82) 100%) !important;
    border: 1px solid rgba(74, 242, 226, 0.35) !important;
    border-radius: 28px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45), 0 0 40px rgba(74, 242, 226, 0.12);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
}

.follow-modal-glow {
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.35;
    pointer-events: none;
}

.follow-modal-glow.one {
    background: #4AF2E2;
    top: -80px;
    right: -40px;
    animation: follow-orb 6s ease-in-out infinite;
}

.follow-modal-glow.two {
    background: #90D111;
    bottom: -90px;
    left: -50px;
    animation: follow-orb 7s ease-in-out infinite reverse;
}

@keyframes follow-orb {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(18px, -12px) scale(1.12); }
}

.follow-modal-body {
    position: relative;
    z-index: 1;
    padding: 42px 32px 32px;
    text-align: center;
    font-family: 'Cairo', sans-serif;
}

.follow-icon-ring {
    width: 88px;
    height: 88px;
    margin: 0 auto 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(74, 242, 226, 0.08);
    border: 1px solid rgba(74, 242, 226, 0.35);
    box-shadow: 0 0 28px rgba(74, 242, 226, 0.25);
    animation: follow-pulse 2.4s ease-in-out infinite;
}

.follow-icon-ring i {
    font-size: 36px;
    color: #4AF2E2;
}

@keyframes follow-pulse {
    0%, 100% { box-shadow: 0 0 16px rgba(74, 242, 226, 0.2); transform: scale(1); }
    50% { box-shadow: 0 0 32px rgba(74, 242, 226, 0.45); transform: scale(1.05); }
}

.follow-modal-title {
    color: #fff;
    font-weight: 800;
    font-size: 26px;
    margin-bottom: 10px;
}

.follow-modal-text {
    color: rgba(255, 255, 255, 0.78);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 22px;
}

.follow-social-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 24px;
}

.follow-social-chip {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(74, 242, 226, 0.22);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.follow-social-chip i {
    font-size: 20px;
}

.follow-social-chip:hover {
    color: #042126;
    background: #4AF2E2;
    transform: translateY(-4px) scale(1.06);
    box-shadow: 0 8px 20px rgba(74, 242, 226, 0.35);
}

.follow-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    min-height: 54px;
    border: 0;
    border-radius: 16px;
    background: linear-gradient(90deg, #4AF2E2 0%, #90D111 100%);
    color: #042126;
    font-weight: 800;
    font-size: 16px;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(74, 242, 226, 0.28);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.follow-cta:hover {
    color: #042126;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(74, 242, 226, 0.4);
}

.follow-cta:active {
    transform: scale(0.98);
}

@media (max-width: 575px) {
    .follow-modal-dialog {
        padding: 10px;
        margin: 0.75rem auto;
    }

    .follow-modal-content {
        border-radius: 22px;
    }

    .follow-modal-body {
        padding: 32px 18px 22px;
    }

    .follow-modal-title {
        font-size: 22px;
    }

    .follow-icon-ring {
        width: 72px;
        height: 72px;
    }
}
