.fanclub-profile-wrapper {
    position: relative;
    margin-top: -50px;
    margin-bottom: 50px;
}

.fanclub-profile-card {
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 30px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.fanclub-image-container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.fanclub-logo-wrapper {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.fanclub-logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fanclub-profile-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.fanclub-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.fanclub-header h2 {
    margin-bottom: 0;
    margin-right: 15px;
}

.fanclub-official-badge {
    display: inline-flex;
    align-items: center;
    padding: 5px 12px;
    border-radius: 30px;
    color: white;
    font-size: 14px;
    font-weight: 500;
}

.fanclub-official-badge i {
    margin-right: 5px;
}

.fanclub-description {
    margin-bottom: 25px;
    color: var(--secondary);
}

.fanclub-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    color: var(--secondary-2);
}

.stat-item i {
    margin-right: 8px;
    font-size: 18px;
}

.fanclub-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    flex-wrap: wrap;
}

.fanclub-social {
    text-align: right;
}

.fanclub-social h6 {
    margin-bottom: 10px;
    color: var(--secondary-2);
}

.social-icons ul {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.social-icons li a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--surface);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 14px;
}

.social-icons li a:hover {
    background-color: var(--primary);
    color: var(--white);
}

.membership-info-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.membership-icon {
    transition: all 0.3s ease;
}

.membership-info-card:hover .membership-icon {
    transform: scale(1.05);
}

.membership-features {
    margin: 15px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.feature-item i {
    margin-right: 12px;
    font-size: 18px;
}

.feature-item span {
    font-weight: 500;
}

/* 이미 가입된 회원을 위한 스타일 */
.membership-status-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 40px 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.member-welcome-icon {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.member-actions .tf-btn {
    min-width: 180px;
    padding: 12px 24px;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.member-actions .tf-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

@media (max-width: 991px) {
    .fanclub-image-container {
        padding: 20px;
    }
    
    .fanclub-logo-wrapper {
        width: 160px;
        height: 160px;
        margin: 0 auto;
    }
    
    .fanclub-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .fanclub-header h2 {
        margin-bottom: 10px;
        margin-right: 0;
    }
    
    .fanclub-official-badge {
        margin-bottom: 15px;
    }
}

/* News Section 이미지 스타일 */
.wg-blog .image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-radius: 8px;
    position: relative;
}

.wg-blog .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
    border-radius: 8px;
}

.wg-blog:hover .image img {
    transform: scale(1.05);
}

/* 반응형 대응 */
@media (max-width: 1200px) {
    .wg-blog .image {
        height: 220px;
    }
}

@media (max-width: 991px) {
    .wg-blog .image {
        height: 200px;
    }
}

@media (max-width: 767px) {
    .wg-blog .image {
        height: 180px;
    }
    
    .fanclub-profile-wrapper {
        margin-top: -30px;
    }
    
    .fanclub-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .fanclub-social {
        text-align: left;
    }
    
    .social-icons ul {
        justify-content: flex-start;
    }
    
    .member-actions {
        flex-direction: column;
        gap: 15px;
    }
    
    .member-actions .tf-btn {
        width: 100%;
        min-width: auto;
    }
}