/* BASIC css start */
/* 친구 초대 링크 버튼 */
.invite-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #ed4747;
    color: white;
    border: none;
    border-radius: 6px;
    text-decoration: none;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.2s ease-in-out, transform 0.2s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 15px;
}

.invite-btn:hover {
    background-color: #cd2727;
    transform: scale(1.03);
}

/* 강조된 초대 링크 박스 */
.highlight-box {
    background: #f8f8f8;
    border: 1px solid #f1f1f1;
    padding: 25px;
    margin: 70px auto;
    border-radius: 0px;
    text-align: center;
    max-width: 1100px;
}

.invite-benefits-inline {
    font-size: 17px;
    font-weight: 500;
    color: #444;
    margin: 10px 0 10px 0;
}

/* 배너 이미지 */
.invite-banner img {
    width: 100%;
    object-fit: cover;
    display: block;
    margin: 25px 0 10px 0;
}

/* 본문 설명 */
.invite-description {
    text-align: center;
    margin: 70px 0 0px;
}

.invite-description h2 {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.invite-description h2::after {
    content: '';
    display: block;
    width: 100%;
    height: 3px;
    background-color: #ed4747;
    margin: 8px auto 0;
    border-radius: 2px;
}

.invite-description p {
    font-size: 20px;
    line-height: 1.8;
    color: #444;
}

.invite-description p strong {
    color: #ed4747;
    font-weight: 600;
}

/* 초대 링크 영역 */
.invite-link-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 10px 0 0;
}

/* 부드럽게 깜빡이는 효과 */
.blink-text {
    animation: blink 1.8s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}
/* BASIC css end */

