/* You said this class exists and must control radius */
.lg-rounded-card-border {
    border-radius: 28px; /* adjust if you want */
}

/* Outer card look */
.enroll-closed-card {
    border: 1px solid rgba(13, 34, 79, 0.08);
}

/* Top icon circle */
.closed-icon-wrap {
    width: 76px;
    height: 76px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: #0b1f49;
    color: #ffffff;
    box-shadow: 0 10px 25px rgba(11, 31, 73, 0.18);
}

.closed-icon-wrap i {
    font-size: 28px;
}

/* Gradient blue block */
.follow-card {
    color: #fff;
    background: linear-gradient(180deg, #071b46 0%, #0a2f78 55%, #0b3aa6 100%);
    box-shadow: 0 18px 40px rgba(8, 26, 73, 0.25);
}

/* Instagram “button card” */
.social-btn {
    min-height: 120px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.12) 0%,
            rgba(255, 255, 255, 0.06) 100%
    );
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
    transition: transform 0.15s ease, filter 0.15s ease;
}

.social-btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.03);
}

.social-icon {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.social-icon i {
    font-size: 26px;
    color: #ffffff;
}

/* Bottom portal button with gradient */
.btn-portal {
    color: #fff;
    border: 0;
    background: linear-gradient(180deg, #0b2f86 0%, #0a3aa6 100%);
    box-shadow: 0 14px 26px rgba(11, 47, 134, 0.22);
    transition: transform 0.15s ease, filter 0.15s ease;
}

.btn-portal:hover {
    color: #fff;
    transform: translateY(-1px);
    filter: brightness(1.04);
}

.btn-portal:active {
    transform: translateY(0);
    filter: brightness(0.98);
}
