/* 회원사혜택 페이지 스타일 */

/* 메인 컨테이너 */
.membership-benefits {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 0;
}

/* 소개 섹션 */
.benefits-intro {
    text-align: center;
    margin-bottom: 50px;
}

.benefits-intro h2 {
    font-size: 28px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.benefits-intro p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* 회원사 등급 그리드 */
.membership-tiers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

/* 등급 카드 */
.tier-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.tier-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* 등급별 색상 */
.tier-card.gold {
    border-color: #ffe55c;
    background: linear-gradient(135deg, #fff 0%, #fffef0 100%);
}

.tier-card.diamond {
    border-color: #b9f2ff;
    background: linear-gradient(135deg, #fff 0%, #f0fdff 100%);
}

.tier-card.platinum {
    border-color: #e5e4e2;
    background: linear-gradient(135deg, #fff 0%, #f9f9f9 100%);
}

/* 등급 헤더 */
.tier-header {
    text-align: center;
    margin-bottom: 25px;
}

.tier-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
}

.tier-name {
    font-size: 22px;
    color: #333;
    margin-bottom: 5px;
    font-weight: 700;
}

.tier-subtitle {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

/* 혜택 리스트 */
.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    font-size: 15px;
    line-height: 1.5;
}

.benefits-list li::before {
    content: "•";
    font-weight: bold;
    margin-right: 10px;
    margin-top: 2px;
    flex-shrink: 0;
}

/* 준비중 페이지 스타일 */
.coming-soon-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    text-align: center;
    padding: 40px 20px;
}

.coming-soon-icon {
    font-size: 3rem;
    color: #6c757d;
    margin-bottom: 20px;
}

.coming-soon-title {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.coming-soon-message {
    font-size: 16px;
    color: #666;
    line-height: 1.5;
}

/* 태블릿 반응형 */
@media (max-width: 1024px) {
    .membership-tiers {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

/* 모바일 반응형 */
@media (max-width: 768px) {
    .membership-benefits {
        padding: 20px 0;
    }
    
    .benefits-intro h2 {
        font-size: 24px;
    }
    
    .benefits-intro {
        margin-bottom: 30px;
    }
    
    .membership-tiers {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 30px;
    }
    
    .tier-card {
        padding: 20px;
    }
    
    .tier-name {
        font-size: 20px;
    }

    .coming-soon-container {
        min-height: 300px;
        padding: 30px 15px;
    }
    
    .coming-soon-icon {
        font-size: 2.5rem;
    }
    
    .coming-soon-title {
        font-size: 20px;
    }
    
    .coming-soon-message {
        font-size: 14px;
    }
}
