* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Main Section */
.instagram-section {
    width: 100%;
    min-height: 100vh;

    display: flex;
    justify-content: center;
    align-items: center;

    padding: 20px 20px;

    /* overflow: hidden; */
}

/* Main Card */
.instagram-card {
    position: relative;

    width: min(100%, 1000px);
    min-height: 380px;

    border-radius: 70px;

    display: flex;
    justify-content: center;
    align-items: center;

    background:
        linear-gradient(#f8f7f9, #f8f5f7) padding-box,
        linear-gradient(
            135deg,
            #c52bff 0%,
            #f72cbe 38%,
            #ff4b8b 62%,
            #ff3b3b 100%
        ) border-box;

    border: 2px solid transparent;

    /* box-shadow:
        0 0 20px rgba(225, 43, 255, 0.75),
        0 0 45px rgba(255, 41, 174, 0.55),
        0 0 80px rgba(255, 62, 62, 0.35),
        inset 0 0 35px rgba(255, 255, 255, 0.8); */

    z-index: 2;
}

/* Inner Glow */
.instagram-card::before {
    content: "";

    position: absolute;
    inset: 8px;

    border-radius: 58px;

    pointer-events: none;

    box-shadow:
        inset 0 0 25px rgba(208, 44, 255, 0.25),
        inset 0 0 45px rgba(255, 65, 120, 0.15);

    z-index: 0;
}

/* Instagram Icon Circle */
.instagram-icon {
    position: absolute;

    top: -74px;
    left: 50%;

    transform: translateX(-50%);

    width: 150px;
    height: 150px;

    border-radius: 50%;

    display: flex;
    justify-content: center;
    align-items: center;

    background:
        linear-gradient(
            135deg,
            #a62cff 0%,
            #d52de9 28%,
            #f52d9e 55%,
            #ff4540 100%
        );

    border: 9px solid #f2edf4;

    box-shadow:
        0 5px 10px rgba(0, 0, 0, 0.18),
        0 0 20px rgba(220, 44, 255, 0.65),
        0 0 45px rgba(255, 54, 130, 0.35);

    z-index: 10;
}

/* Icon */
.instagram-icon i {
    color: #eeeeee;

    font-size: 112px;

    filter:
        drop-shadow(0 3px 2px rgba(0, 0, 0, 0.15));
}

/* Content */
.instagram-content {
    position: relative;

    width: 100%;

    text-align: center;

    padding: 80px 30px 0px;

    z-index: 5;
}

/* Username */
.instagram-content h1 {
    color: #19191d;
    font-size: 36px;
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: -2px;
    margin-bottom: 14px;
    text-shadow: 0 2px 2px rgba(255, 255, 255, 0.8);
    margin-top: 12px;
}

/* Followers */
.instagram-content p {
    color: #222226;

    font-size: clamp(18px, 2.5vw, 26px);

    font-weight: 500;

    margin-bottom: 28px;
}

/* Follow Button */
.follow-btn {
    position: relative;

    display: inline-flex;

    justify-content: center;
    align-items: center;

    min-width: 220px;
    min-height: 60px;

    padding: 5px 25px;

    border-radius: 60px;

    text-decoration: none;

    background:
        linear-gradient(
            135deg,
            #e52ca8 0%,
            #ee4ba4 45%,
            #ff7478 100%
        );

    border: 5px solid #d72c9a;

    box-shadow:
        inset 0 2px 4px rgba(255, 255, 255, 0.6),
        inset 0 -5px 10px rgba(170, 20, 100, 0.25),
        0 7px 12px rgba(0, 0, 0, 0.22),
        0 0 15px rgba(242, 40, 158, 0.4);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

/* Button Shine */
.follow-btn::before {
    content: "";

    position: absolute;

    top: 5px;
    left: 10%;

    width: 80%;
    height: 25px;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.18);

    filter: blur(5px);
}

/* Button Text */
.follow-btn span {
    position: relative;

    color: #fff;

    font-size: 35px;

    font-weight: 600;

    letter-spacing: -1px;

    text-shadow:
        0 4px 3px rgba(100, 25, 65, 0.5),
        0 2px 0 rgba(255, 255, 255, 0.15);
}

/* Hover */
.follow-btn:hover {
    transform: translateY(-6px) scale(1.02);

    box-shadow:
        inset 0 2px 4px rgba(255, 255, 255, 0.7),
        0 12px 25px rgba(255, 35, 155, 0.35),
        0 0 35px rgba(255, 50, 160, 0.55);
}

/* Click */
.follow-btn:active {
    transform: translateY(2px) scale(0.98);
}

/* Bottom Point */
.card-point {
    position: absolute;

    bottom: -49px;
    left: 50%;

    width: 95px;
    height: 95px;

    transform: translateX(-50%) rotate(45deg);

    background: #f8f5f7;

    border-right: 2px solid #e9419c;
    border-bottom: 2px solid #e9419c;

    border-radius: 0 0 25px 0;

    z-index: -1;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 800px) {

    .instagram-section {
        padding: 100px 20px;
    }

    .instagram-card {
        min-height: 420px;

        border-radius: 50px;

        border-width: 9px;
    }

    .instagram-card::before {
        border-radius: 42px;
    }

    .instagram-icon {
        width: 170px;
        height: 170px;

        top: -95px;

        border-width: 7px;
    }

    .instagram-icon i {
        font-size: 85px;
    }

    .instagram-content {
        padding-top: 80px;
    }

    .instagram-content h1 {
        letter-spacing: -1px;
    }

    .follow-btn {
        min-width: 420px;
        min-height: 90px;

        padding: 15px 35px;
    }

    .card-point {
        width: 75px;
        height: 75px;

        bottom: -38px;

        border-right-width: 9px;
        border-bottom-width: 9px;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 550px) {

    .instagram-section {
        min-height: 100vh;

        padding: 90px 15px 70px;
    }

    .instagram-card {
        width: 100%;

        min-height: 330px;

        border-radius: 35px;

        border-width: 7px;
    }

    .instagram-card::before {
        inset: 5px;

        border-radius: 29px;
    }

    .instagram-icon {
        width: 125px;
        height: 125px;

        top: -70px;

        border-width: 6px;
    }

    .instagram-icon i {
        font-size: 62px;
    }

    .instagram-content {
        padding: 65px 15px 15px;
    }

    .instagram-content h1 {
        font-size: clamp(24px, 8vw, 36px);

        margin-bottom: 10px;
    }

    .instagram-content p {
        font-size: 16px;

        margin-bottom: 20px;
    }

    .follow-btn {
        width: 90%;

        min-width: 0;
        min-height: 65px;

        padding: 12px 20px;

        border-radius: 40px;

        border-width: 3px;
    }

    .follow-btn span {
        font-size: clamp(21px, 6vw, 30px);
    }

    .card-point {
        width: 55px;
        height: 55px;

        bottom: -28px;

        border-right-width: 7px;
        border-bottom-width: 7px;

        border-radius: 0 0 15px 0;
    }
}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 360px) {

    .instagram-card {
        min-height: 300px;
    }

    .instagram-icon {
        width: 105px;
        height: 105px;

        top: -60px;
    }

    .instagram-icon i {
        font-size: 52px;
    }

    .instagram-content {
        padding-top: 55px;
    }

    .instagram-content h1 {
        font-size: 23px;
    }

    .instagram-content p {
        font-size: 14px;
    }

    .follow-btn {
        width: 95%;
        min-height: 58px;
    }

    .follow-btn span {
        font-size: 20px;
    }
}