@charset "utf-8";

/* 채널 홈 전용 스타일시트 */

/* 웹폰트 임포트 */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Jua&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Sunflower:wght@300;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Gaegu:wght@300;400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Hi+Melody&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Nanum+Gothic:wght@400;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Nanum+Myeongjo:wght@400;700;800&display=swap');
@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.min.css');

/* 이모지 지원을 위한 폰트 추가 */
.profile-links .link-item span:first-child,
.profile-like-btn span,
.subscribe-btn span,
.support-title span,
.support-icon,
.feed-actions span,
.stat-icon {
    font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", "Twemoji Mozilla", "Android Emoji", "EmojiOne Color", sans-serif;
}

/* 채널 통계 위젯 스타일 */
.stats-widget {
    background: linear-gradient(135deg, #1e2936 0%, #22313F 100%);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 16px;
}

.stat-card {
    background: linear-gradient(145deg, rgba(52, 73, 94, 0.4), rgba(44, 62, 80, 0.4));
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent, rgba(246, 71, 71, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-4px) scale(1.02);
    border-color: rgba(246, 71, 71, 0.3);
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-card:hover .stat-icon {
    transform: scale(1.1) rotateZ(5deg);
}

.stat-card:hover .stat-number {
    color: #F64747;
}

.stat-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(246, 71, 71, 0.2), rgba(246, 71, 71, 0.1));
    border-radius: 12px;
    margin: 0 auto 12px;
    font-size: 24px;
    transition: all 0.3s ease;
    color: #F64747;
}

.stat-icon i {
    font-size: 24px;
    display: block;
}

.stat-info h4 {
    margin: 0 0 8px 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-number {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    color: #fefad4;
    transition: all 0.3s ease;
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, Roboto, sans-serif;
}

.stat-number a {
    color: inherit !important;
    text-decoration: none;
    position: relative;
}

.stat-number a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: currentColor;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.stat-number a:hover::after {
    transform: scaleX(1);
}

.stat-number a:hover {
    color: #F64747 !important;
}

/* 반응형 디자인 개선 */
@media (max-width: 768px) {
    .stats-widget {
        padding: 16px;
        margin-bottom: 16px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .stat-card {
        padding: 16px;
    }
    
    .stat-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .stat-icon i {
        font-size: 20px;
    }
    
    .stat-number {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

body { 
    background-color: #2C3E50 !important; 
    color: #fefad4;
}

/* 2단 레이아웃 컨테이너 */
.channel-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 20px;
    padding: 10px;
}

/* 우측 메인 컨텐츠 영역 */
.channel-main {
    flex: 1;
    min-width: 0;
}

.channel-banner-small {
    width: 100%;
    height: 200px;
    background: #22313F;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 12px;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
    border: 1px solid #34495E;
    display: flex;
    align-items: center;
    justify-content: center;
}

.channel-banner-small::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.banner-channel-name {
    position: absolute;
    top: 20px;
    left: 20px;
    color: #2c3e50;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.02em;
    text-shadow: 
        -1px -1px 0 #4f6983,
        1px -1px 0 #4f6983,
        -1px 1px 0 #4f6983,
        1px 1px 0 #4f6983,
        0 0 3px rgba(255, 255, 255, 0.5);
    z-index: 2;
}

.banner-divider {
    width: 500px;
    height: 5px;
    background: linear-gradient(90deg, transparent, #34495E, transparent);
    opacity: 0.6;
    z-index: 2;
}

.banner-logo {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 2;
}

.banner-logo img {
    height: 35px;
    width: auto;
    opacity: 0.8;
    filter: brightness(0) saturate(100%) invert(35%) sepia(15%) saturate(1284%) hue-rotate(171deg) brightness(85%) contrast(100%);
}

/* 배너가 있을 때는 로고 필터 제거 (원본 색상 사용) */
.channel-banner-small.has-banner .banner-logo img {
    filter: none;
    opacity: 0.9;
}

/* 탭 메뉴 */
.channel-tabs {
    background: #22313F;
    border-radius: 8px;
    padding: 0;
    margin-bottom: 20px;
    display: flex;
    overflow-x: auto;
    border: 1px solid #34495E;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin; /* Firefox - 얇은 스크롤바 표시 */
    scrollbar-color: rgba(246, 71, 71, 0.3) transparent; /* Firefox 스크롤바 색상 */
}

/* Webkit 브라우저용 스크롤바 스타일 */
.channel-tabs::-webkit-scrollbar {
    height: 6px; /* 스크롤바 높이 */
}

.channel-tabs::-webkit-scrollbar-track {
    background: transparent;
}

.channel-tabs::-webkit-scrollbar-thumb {
    background: rgba(246, 71, 71, 0.3);
    border-radius: 3px;
}

.channel-tabs::-webkit-scrollbar-thumb:hover {
    background: rgba(246, 71, 71, 0.5);
}

/* 모바일에서 스크롤 가능 힌트 */
@media (max-width: 768px) {
    /* 모바일에서 더 작은 패딩 */
    .tab-item {
        padding: 12px 20px;
        font-size: 14px;
    }
}

.tab-item {
    padding: 15px 25px;
    color: #e2fdf7;
    text-decoration: none;
    border-right: 1px solid #34495E;
    transition: all 0.3s;
    white-space: nowrap;
}

.tab-item:last-child {
    border-right: none;
}

.tab-item:hover {
    background: #2C3E50;
    color: #F64747;
}

.tab-item.active {
    background: #1E2936;
    border-bottom: 2px solid #F64747;
    color: #fefad4;
}

/* 피드 영역 */
.channel-feeds {
    background: #2C3E50;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
}

.feed-item {
    background: #22313F;
    border-radius: 5px;
    padding: 20px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    border: 1px solid #34495E;
    cursor: pointer;
}

.feed-item:last-child {
    margin-bottom: 0;
}

.feed-item:hover {
    background: #1b2935;
}

.feed-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    position: relative;
}

.feed-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: 1px solid #34495E;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    overflow: hidden;
}

.feed-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feed-meta {
    flex: 1;
}

.feed-author {
    color: #fefad4;
    font-weight: 600;
}

.feed-time {
    font-size: 12px;
    color: #7f8c8d;
    margin-top: 2px;
}

.feed-content {
    margin: 30px 0;
}

.feed-text {
    color: #ecf0f1;
    line-height: 1.6;
    margin-bottom: 10px;
}

.feed-image {
    width: 100%;
    border-radius: 8px;
    margin-top: 10px;
}

.feed-actions {
    display: flex;
    gap: 20px;
    padding: 15px 15px 0 0;
    border-top: 1px solid #34495E;
}

.action-btn {
    display: flex;
    height: 36px;
    align-items: center;
    gap: 5px;
    color: #e2fdf7;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s;
    background: none;
    border: none;
    cursor: pointer;
}

.action-btn:hover {
    color: #F64747;
}

.action-btn.active {
    color: #F64747;
}

.action-btn.active i {
    color: #F64747;
}

/* 피드 추가 스타일 - 피드 목록용 옵션 메뉴 */
.feed-item .feed-options {
    position: relative;
}

/* 피드 옵션 버튼 - 공통 스타일 (channel_home과 feed에서 모두 사용) */
.feed-option-btn {
    background: none;
    border: none;
    color: #8892a0;
    font-size: 20px;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.feed-option-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.feed-menu {
    position: absolute;
    right: 0;
    top: 100%;
    background: #2C3E50;
    border-radius: 8px;
    padding: 5px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    display: none;
    z-index: 10;
    min-width: 120px;
    border: 1px solid #34495E;
}

.feed-menu.active {
    display: block;
}

.feed-menu a {
    display: block;
    padding: 8px 15px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
}

.feed-menu a:hover {
    background: #34495E;
}

.feed-image-grid {
    margin-top: 10px;
}

.feed-image-grid img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
    aspect-ratio: 1;
}

.feed-video {
    width: 100%;
    border-radius: 8px;
    margin-top: 10px;
}

.feed-empty {
    text-align: center;
    padding: 60px 20px;
    background: #22313F;
    border: 1px solid #34495E;
    border-radius: 8px;
}

.empty-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.empty-message {
    color: #7f8c8d;
    margin-bottom: 20px;
    font-size: 16px;
}

.empty-action-btn {
    background: #F64747;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.empty-action-btn:hover {
    background: #d63636;
    transform: translateY(-2px);
}

.feed-load-more {
    text-align: center;
    margin: 20px 0;
    padding: 20px;
}

.load-more-btn {
    background: #22313F;
    color: #fff;
    border: 1px solid #34495E;
    padding: 10px 30px;
    border-radius: 25px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.load-more-btn:hover {
    background: #34495E;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* 피드 레이아웃 변형 */
.channel-feeds.grid-layout {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px;
}

.channel-feeds.timeline-layout .feed-item {
    position: relative;
    padding-left: 40px;
}

.channel-feeds.timeline-layout .feed-item::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 25px;
    width: 10px;
    height: 10px;
    background: #F64747;
    border-radius: 50%;
}

.channel-feeds.timeline-layout .feed-item::after {
    content: '';
    position: absolute;
    left: 14px;
    top: 35px;
    bottom: -15px;
    width: 2px;
    background: #34495E;
}

.channel-feeds.timeline-layout .feed-item:last-child::after {
    display: none;
}

.comment-write-box {
    background: #1a2332;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #34495E;
}

.comment-textarea {
    width: 100%;
    min-height: 80px;
    background: #2C3E50;
    border: 1px solid #34495E;
    border-radius: 5px;
    color: #e2fdf7;
    padding: 10px;
    resize: vertical;
    font-family: inherit;
}

.comment-textarea:focus {
    outline: none;
    border-color: #F64747;
}

.comment-submit-btn {
    background: #F64747;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    margin-top: 10px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s;
}

.comment-submit-btn:hover {
    background: #d63434;
    transform: translateY(-1px);
}

.comment-list {
    max-height: 400px;
    overflow-y: auto;
}

.comment-item {
    padding: 15px;
    border-bottom: 1px solid #2C3E50;
    transition: all 0.3s;
}

.comment-item:hover {
    background: rgba(52, 73, 94, 0.2);
}

.comment-header {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.comment-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #F64747;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    margin-right: 10px;
}

.comment-author {
    color: #fefad4;
    font-weight: 500;
}

.comment-time {
    color: #6b7280;
    font-size: 12px;
}

.comment-text {
    color: #e2fdf7;
    line-height: 1.5;
}

/* 섹션 공통 스타일 */
section {
    margin-bottom: 30px;
}

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

.section-title {
    font-size: 18px;
    font-weight: bold;
    color: #fefad4;
    position: relative;
    padding-bottom: 8px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 102%;
    height: 2px;
    background: #F64747;
    border-radius: 1px;
}

.view-all {
    background: transparent;
    border: 1px solid #34495E;
    color: #e2fdf7;
    padding: 6px 12px;
    border-radius: 5px;
    font-size: 13px;
    cursor: pointer;
}

/* 인기 콘텐츠 섹션 */
.popular-section {
    background: #22313F;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
}

.filter-tabs {
    display: flex;
    gap: 10px;
}

.filter-btn {
    padding: 6px 16px;
    background: #2C3E50;
    border: none;
    border-radius: 20px;
    color: #e2fdf7;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-btn:hover {
    background: #34495E;
}

.filter-btn.active {
    background: #F64747;
    color: white;
}

.popular-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.popular-item {
    cursor: pointer;
    transition: transform 0.3s;
}

.popular-item:hover {
    transform: translateY(-3px);
}

.popular-thumb {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    background: #34495E;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 10px;
}

.popular-thumb img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.popular-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    font-size: 12px;
    opacity: 0;
    transition: opacity 0.3s;
}

.popular-item:hover .popular-overlay {
    opacity: 1;
}

.ppv-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #F64747;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}

.popular-info h4 {
    font-size: 14px;
    color: #e2fdf7;
    margin-bottom: 5px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.popular-date {
    font-size: 12px;
    color: #e2fdf7;
    opacity: 0.7;
}

/* 목표 & 후원 진행률 섹션 */
.goal-section {
    background: #22313F;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
}

.goal-setting-btn {
    background: transparent;
    border: 1px solid #34495E;
    color: #e2fdf7;
    padding: 6px 12px;
    border-radius: 5px;
    font-size: 13px;
    cursor: pointer;
}

.goal-content {
    background: #2C3E50;
    padding: 20px;
    border-radius: 8px;
}

.goal-info h4 {
    color: #fefad4;
    font-size: 16px;
    margin-bottom: 10px;
}

.goal-info p {
    color: #e2fdf7;
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 1.5;
}

.goal-progress {
    margin-bottom: 5px;
}

.goal-progress-bar {
    width: 100%;
    height: 30px;
    background: #22313F;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    margin-bottom: 5px;
}

.goal-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #F64747, #ff6b6b);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 15px;
    transition: width 0.5s ease;
}

.goal-progress-text {
    color: white;
    font-weight: bold;
    font-size: 14px;
}

.goal-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0;
    margin-top: 8px;
    color: #fefad4;
    font-size: 14px;
    padding: 0 5px;
}

.goal-support-wrap {
    background: #22313F;
    padding: 15px;
    border-radius: 8px;
    margin-top: 8px;
}

.goal-quick-amounts {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.quick-amount-btn {
    padding: 6px 12px;
    background: #34495E;
    border: 1px solid #34495E;
    border-radius: 20px;
    color: #e2fdf7;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s;
}

.quick-amount-btn:hover {
    background: #2C3E50;
    border-color: #F64747;
    color: #F64747;
}

.goal-support-input {
    display: flex;
    align-items: center;
    background: #2C3E50;
    border: 1px solid #34495E;
    border-radius: 5px;
    margin-bottom: 12px;
    padding: 0 15px;
}

.goal-amount-input {
    flex: 1;
    background: transparent;
    border: none;
    color: #fefad4;
    font-size: 16px;
    padding: 10px;
    text-align: right;
    font-weight: bold;
    width: 100%;
    box-sizing: border-box;
}

.goal-amount-input:focus {
    outline: none;
}

.goal-amount-input::placeholder {
    color: #e2fdf7;
    opacity: 0.5;
}

.goal-amount-input::-webkit-inner-spin-button,
.goal-amount-input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.goal-amount-input[type=number] {
    -moz-appearance: textfield;
}

.goal-amount-unit {
    color: #e2fdf7;
    font-size: 14px;
    font-weight: normal;
}

.support-goal-btn {
    width: 100%;
    padding: 12px;
    background: #34495E;
    color: #fefad4;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.support-goal-btn:hover {
    background: #2C3E50;
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(0,0,0,0.3);
}

.support-goal-btn span {
    font-size: 16px;
}

/* 명예의 전당 섹션 */
.honor-section {
    background: #22313F;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
}

.honor-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.honor-item {
    display: flex;
    align-items: center;
    background: #2C3E50;
    padding: 15px;
    border-radius: 8px;
    transition: all 0.3s;
}

.honor-item:hover {
    transform: translateX(5px);
}

.honor-item.diamond {
    background: linear-gradient(135deg, #2C3E50, #34495E);
    border: 1px solid #5dade2;
}

.honor-item.gold {
    background: linear-gradient(135deg, #2C3E50, #34495E);
    border: 1px solid #f1c40f;
}

.honor-item.silver {
    background: linear-gradient(135deg, #2C3E50, #34495E);
    border: 1px solid #95a5a6;
}

.honor-rank {
    font-size: 20px;
    font-weight: bold;
    color: #F64747;
    margin-right: 5px;
    min-width: 40px;
}

.honor-info {
    flex: 1;
}

.honor-name {
    display: block;
    color: #fefad4;
    font-weight: bold;
    margin-bottom: 5px;
}

.honor-amount {
    color: #e2fdf7;
    font-size: 14px;
}

.honor-badge {
    font-size: 24px;
}

/* ========================================
   투표/설문 섹션 - 모던 디자인
   ======================================== */
.poll-section {
    background: #22313F !important;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 30px;
    border: 1px solid rgba(52, 73, 94, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.poll-section .section-header {
    padding: 20px 25px;
    margin-bottom: -20px;
}

.poll-section .section-title {
    color: #fefad4;
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: -0.5px;
}

.poll-content {
    padding: 25px;
}

.poll-content h4 {
    color: #e2fdf7;
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 24px 0;
    line-height: 1.4;
    letter-spacing: -0.5px;
}

.poll-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.poll-option {
    position: relative;
    background: rgba(44, 62, 80, 0.6);
    border: 2px solid transparent;
    border-radius: 12px;
    padding: 16px 20px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 56px;
    backdrop-filter: blur(8px);
}

.poll-option:hover {
    background: rgba(52, 73, 94, 0.8);
    border-color: rgba(246, 71, 71, 0.5);
    transform: translateX(4px);
    box-shadow: 0 4px 16px rgba(246, 71, 71, 0.15);
}

.poll-option:active {
    transform: translateX(4px) scale(0.98);
}

.poll-option span:first-child {
    color: #e2fdf7;
    font-size: 16px;
    font-weight: 500;
    z-index: 2;
    position: relative;
    flex: 1;
    padding-right: 15px;
}

.poll-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(34, 49, 63, 0.3);
    border-radius: 10px;
    overflow: hidden;
}

.poll-fill {
    height: 100%;
    background: linear-gradient(135deg, #F64747 0%, #d63434 100%);
    opacity: 0.15;
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.poll-fill::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 2px;
    background: rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.poll-percent {
    color: #F64747;
    font-size: 14px;
    font-weight: 700;
    z-index: 2;
    position: relative;
    background: rgba(246, 71, 71, 0.1);
    padding: 4px 12px;
    border-radius: 20px;
    border: 1px solid rgba(246, 71, 71, 0.2);
    min-width: 48px;
    text-align: center;
}

.poll-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(52, 73, 94, 0.3);
    flex-wrap: wrap;
    gap: 12px;
}

.poll-info span {
    color: #8B8B8B;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s ease;
}

.poll-info span:first-child {
    color: #4ECDC4;
    font-weight: 500;
}

/* 투표 메시지 */
.poll-message {
    margin-top: 16px;
    padding: 12px 16px;
    background: rgba(246, 71, 71, 0.1);
    border: 1px solid rgba(246, 71, 71, 0.2);
    border-radius: 8px;
    text-align: center;
    color: #F64747;
    font-size: 14px;
    font-weight: 500;
    backdrop-filter: blur(10px);
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 투표 불가능 상태 */
.poll-option[style*="cursor: not-allowed"] {
    background: rgba(44, 62, 80, 0.3);
    border-color: rgba(52, 73, 94, 0.3);
    opacity: 0.7;
}

.poll-option[style*="cursor: not-allowed"]:hover {
    transform: none;
    box-shadow: none;
    border-color: rgba(52, 73, 94, 0.3);
}

/* 반응형 - 모바일 */
@media (max-width: 768px) {
    .poll-section {
        border-radius: 12px;
        margin-bottom: 20px;
    }
    
    .poll-section .section-header {
        padding: 16px 20px;
    }
    
    .poll-content {
        padding: 20px;
    }
    
    .poll-content h4 {
        font-size: 18px;
        margin-bottom: 20px;
    }
    
    .poll-option {
        padding: 14px 16px;
        min-height: 48px;
    }
    
    .poll-option span:first-child {
        font-size: 15px;
    }
    
    .poll-percent {
        font-size: 13px;
        padding: 3px 10px;
        min-width: 44px;
    }
}

/* 채널 통계 위젯 */
.stats-widget {
    background: #22313F;
    border-radius: 8px;
    padding: 20px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.stat-card {
    background: #2C3E50;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s;
}

.stat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.stat-icon {
    font-size: 32px;
    margin-bottom: 10px;
}

.stat-info h4 {
    color: #e2fdf7;
    font-size: 14px;
    margin-bottom: 8px;
}

.stat-number {
    color: #fefad4;
    font-size: 24px;
    font-weight: bold;
    margin: 0;
}

.stat-number a,
.stats-widget .stat-number a,
.stat-info .stat-number a,
.stat-link {
    color: inherit !important;
    text-decoration: underline !important;
    display: inline-block !important;
    cursor: pointer !important;
}

.stat-number a:hover,
.stats-widget .stat-number a:hover,
.stat-info .stat-number a:hover,
.stat-link:hover {
    color: #F64747 !important;
    text-decoration: underline !important;
}

/* 출석 이벤트 섹션 */
.attendance-section {
    background: #22313F;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
    border: 1px solid #34495E;
}

.attendance-main {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.attendance-calendar-wrap {
    background: #2C3E50;
    border-radius: 8px;
    padding: 15px;
}

.attendance-setting-btn {
    background: transparent;
    border: 1px solid #34495E;
    color: #e2fdf7;
    padding: 6px 12px;
    border-radius: 5px;
    font-size: 13px;
    cursor: pointer;
}

.calendar-header {
    text-align: center;
    color: #fefad4;
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 14px;
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 3px;
    margin-bottom: 5px;
}

.weekday {
    text-align: center;
    font-size: 11px;
    color: #e2fdf7;
    opacity: 0.7;
}

.attendance-calendar {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 3px;
}

.attendance-day {
    aspect-ratio: 1;
    background: #34495E;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: #e2fdf7;
    position: relative;
    transition: all 0.3s;
    cursor: pointer;
}

.attendance-day:hover {
    background: #3e5a7e;
    transform: scale(1.1);
}

.attendance-day.checked {
    background: #27ae60;
    color: white;
}

.attendance-day.today {
    border: 2px solid #F64747;
    font-weight: bold;
}

.attendance-day.empty {
    opacity: 0.5;
}

.attendance-day.unlocked {
    background: #9b59b6;
}

.attendance-day.unlocked::after {
    content: '✨';
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

.attendance-check-area {
    background: #2C3E50;
    border-radius: 8px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.attendance-streak {
    text-align: center;
    margin-bottom: 25px;
}

.streak-number {
    font-size: 56px;
    font-weight: bold;
    /* color는 인라인 스타일로 동적 적용 */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    line-height: 1;
    margin-bottom: 10px;
}

.streak-label {
    font-size: 16px;
    color: #e2fdf7;
}

.attendance-check-btn {
    width: 220px;
    padding: 16px 24px;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.attendance-check-btn:hover {
    transform: translateY(-2px);
}

.attendance-check-btn.checked {
    background: #95a5a6;
    cursor: not-allowed;
}

.attendance-check-btn::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(45deg);
    transition: all 0.6s;
}

.attendance-check-btn:hover::before {
    left: 100%;
}

.attendance-rewards-wrap {
    /* 1줄로 변경 */
    display: block;
}

.reward-info {
    background: #2C3E50;
    border-radius: 8px;
    padding: 20px;
    overflow: hidden;
}

.reward-title {
    color: #fefad4;
    font-weight: bold;
    margin-bottom: 15px;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.reward-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding-bottom: 10px;
    -webkit-overflow-scrolling: touch;
}

.reward-list::-webkit-scrollbar {
    height: 6px;
}

.reward-list::-webkit-scrollbar-track {
    background: #34495E;
    border-radius: 3px;
}

.reward-list::-webkit-scrollbar-thumb {
    background: #F64747;
    border-radius: 3px;
}

.reward-list::-webkit-scrollbar-thumb:hover {
    background: #d63939;
}

.reward-item {
    flex: 0 0 auto;
    background: #34495E;
    border-radius: 8px;
    padding: 15px 20px;
    min-width: 200px;
    text-align: center;
    transition: all 0.3s;
    cursor: pointer;
}

.reward-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.reward-day {
    color: #e2fdf7;
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 8px;
    display: block;
}

.reward-content {
    color: #fefad4;
    font-size: 12px;
    margin-bottom: 10px;
    line-height: 1.4;
}

.reward-status {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 15px;
    font-size: 11px;
    margin-left: 8px;
    font-weight: bold;
}

.reward-status.locked {
    background: #7f8c8d;
    color: #ecf0f1;
}

.reward-status.unlocked {
    background: #27ae60;
    color: white;
}

.reward-status.countdown {
    background: #e74c3c;
    color: white;
}

/* ===== 모바일 프로필카드 완전 리디자인 (OnlyFans/X 스타일) ===== */
@media (max-width: 768px) {
    /* 모바일에서는 섹션 제목 전체 숨김 */
    .section-title {
        display: none;
    }
    
    .channel-container {
        flex-direction: column;
        position: relative;
        padding: 0;
    }
    
    .channel-sidebar {
        width: 100%;
    }
    
    /* 기존 모바일 상단 관리 버튼 (숨김) */
    .mobile-channel-controls {
        display: none !important;
    }
    
    /* 모바일 프로필카드 컨테이너 */
    .profile-card {
        background: transparent;
        border: none;
        border-radius: 0;
        padding: 0;
        max-height: none;
        overflow: visible;
    }
    
    .profile-card-mobile-layout {
        display: block !important;
        background: #22313F;
        border-radius: 5px;
        border: 1px solid #34495E;
        padding: 20px;
        position: relative;
        min-height: auto;
        max-height: 32vh;
        overflow: hidden;
        /* 내부 플렉스 레이아웃 설정 */
        flex-direction: row;
        gap: 15px;
        align-items: flex-start;
    }
    
    /* 우측 상단 설정 아이콘 */
    .mobile-settings-icon {
        position: absolute;
        top: 10px;
        right: 10px;
        z-index: 10;
    }
    
    .mobile-settings-icon a {
        display: block;
        font-size: 20px;
        text-decoration: none;
        opacity: 0.8;
        transition: opacity 0.2s;
    }
    
    .mobile-settings-icon a:hover {
        opacity: 1;
    }
    
    /* 좋아요 아이콘 버튼 */
    .mobile-like-icon {
        background: none;
        border: none;
        font-size: 20px;
        cursor: pointer;
        padding: 0;
        opacity: 0.8;
        transition: all 0.3s;
    }
    
    .mobile-like-icon:hover {
        opacity: 1;
        transform: scale(1.1);
    }
    
    .mobile-like-icon.liked {
        opacity: 1;
    }
    
    /* 상단 설정 버튼 - 제거됨 */
    .mobile-top-actions {
        display: none;
    }
    
    /* 프로필 헤더 */
    .mobile-profile-header {
        margin-bottom: 12px;
    }
    
    .profile-main-info {
        display: flex;
        gap: 12px;
        align-items: center;
    }
    
    /* 프로필 이미지 */
    .mobile-avatar {
        width: 70px;
        height: 70px;
        border-radius: 50%;
        border: 3px solid #34495E;
        background-size: cover;
        background-position: center;
        background-color: #2C3E50;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 28px;
        font-weight: bold;
        color: #fefad4;
        position: relative;
        flex-shrink: 0;
    }
    
    .subscriber-badge {
        position: absolute;
        bottom: -2px;
        right: -2px;
        width: 20px;
        height: 20px;
        background: #F64747;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 2px solid #22313F;
        color: #fff;
        font-size: 10px;
        font-weight: bold;
        line-height: 1;
    }
    
    /* 프로필 텍스트 정보 */
    .profile-text-info {
        flex: 1;
        min-width: 0;
        text-align: left;
    }
    
    .mobile-profile-name {
        font-size: 20px;
        font-weight: 800;
        background: linear-gradient(135deg, #fefad4 0%, #F64747 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        margin: 0;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 4px;
        line-height: 1.2;
        text-shadow: 0 0 20px rgba(254, 250, 212, 0.3);
        letter-spacing: -0.5px;
    }
    
    .mobile-profile-handle {
        font-size: 13px;
        color: #64748b;
        font-weight: 500;
        margin: 3px 0 15px 0;
        text-align: left;
        opacity: 1;
    }
    
    /* 미니 통계 */
    .mobile-mini-stats {
        display: flex;
        gap: 15px;
        margin-top: 8px;
    }
    
    .mini-stat {
        display: flex;
        flex-direction: column;
        align-items: center;
        flex: 1;
    }
    
    .mini-stat strong {
        color: #fefad4;
        font-weight: 700;
        font-size: 16px;
        line-height: 1;
    }
    
    .mini-stat span {
        color: #94a3b8;
        font-size: 10px;
        margin-top: 2px;
        text-transform: uppercase;
        letter-spacing: 0.3px;
    }
    
    /* 프로필 정보 섹션 */
    .mobile-profile-info {
        padding: 0;
        background: transparent;
    }
    
    /* 버튼 그룹 */
    .mobile-button-group {
        display: flex;
        gap: 5px;
        margin-bottom: 10px;
        flex-wrap: wrap;
    }
    
    .mobile-button-group button,
    .mobile-button-group a {
        padding: 5px 10px;
        border-radius: 14px;
        font-size: 11px;
        font-weight: 600;
        border: none;
        cursor: pointer;
        transition: all 0.2s;
        display: inline-flex;
        align-items: center;
        gap: 3px;
        text-decoration: none;
        line-height: 1.2;
    }
    
    .mobile-follow-btn {
        background: #F64747;
        color: #fff;
        flex: 1;
    }
    
    .mobile-follow-btn.following {
        background: transparent;
        color: #fefad4;
        border: 1px solid #34495E;
    }
    
    .mobile-subscribe-btn {
        background: linear-gradient(135deg, #F64747 0%, #d63939 100%);
        color: #fff;
        flex: 1;
    }
    
    .mobile-subscribe-btn.subscribed {
        background: #2C3E50;
        border: 1px solid #34495E;
        color: #e2fdf7;
    }
    
    .mobile-message-btn,
    .mobile-tip-btn {
        width: 28px;
        height: 24px;
        padding: 0;
        background: #2C3E50;
        color: #fefad4;
        border: 1px solid #34495E;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 12px;
        border-radius: 12px;
    }
    
    .mobile-edit-btn {
        background: transparent;
        color: #fefad4;
        border: 1px solid #34495E;
        flex: 1;
    }
    
    .mobile-create-btn {
        background: #F64747;
        color: #fff;
        flex: 1;
    }
    
    /* 통계 그리드 */
    .mobile-stats-grid {
        display: flex;
        gap: 20px;
        margin-bottom: 16px;
        padding-bottom: 16px;
        border-bottom: 1px solid #34495E;
    }
    
    .mobile-stat {
        flex: 1;
        text-align: center;
    }
    
    .stat-value {
        font-size: 18px;
        font-weight: 700;
        color: #fefad4;
        line-height: 1;
    }
    
    .stat-label {
        font-size: 12px;
        color: #e2fdf7;
        margin-top: 4px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        opacity: 0.7;
    }
    
    /* 바이오 */
    .mobile-bio {
        margin-top: 8px;
        padding: 8px 10px;
        background: rgba(44, 62, 80, 0.3);
        border-radius: 6px;
        border-left: 2px solid #F64747;
    }
    
    .mobile-bio p {
        font-size: 11px;
        line-height: 1.4;
        color: #e2fdf7;
        margin: 0;
    }
    
    /* 링크 칩 */
    .mobile-links {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .mobile-link-chip {
        display: inline-flex;
        align-items: center;
        gap: 4px;
        padding: 6px 12px;
        background: #2C3E50;
        border: 1px solid #34495E;
        border-radius: 16px;
        color: #e2fdf7;
        font-size: 13px;
        text-decoration: none;
        transition: all 0.2s;
    }
    
    .mobile-link-chip:active {
        transform: scale(0.95);
        background: #34495E;
    }
    
    /* 모바일 설정 버튼 (우측 상단) */
    .mobile-settings-btn {
        position: absolute;
        top: 10px;
        right: 10px;
        z-index: 10;
    }
    
    .mobile-settings-btn a {
        display: inline-block;
        width: 30px;
        height: 30px;
        background: #F64747;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        text-decoration: none;
    }
    
    /* 프로필카드 내부 레이아웃 - 2404줄 중복 제거 */
    
    /* 아바타 섹션 */
    .mobile-avatar-section {
        flex-shrink: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 5px;
        margin-top: -5px;
    }
    
    /* 프로필 아바타 */
    .profile-card .profile-avatar {
        width: 70px;
        height: 70px;
        font-size: 28px;
        margin: 0;
        border: 2px solid #2C3E50;
    }
    
    /* @handle 프로필 이미지 바로 밑 */
    .mobile-avatar-section .profile-handle {
        font-size: 11px;
        color: #e2fdf7;
        opacity: 0.8;
        margin: 0;
        text-align: center;
    }
    
    /* 정보 섹션 */
    .mobile-info-section {
        flex: 1;
        min-width: 0;
        display: flex;
        flex-direction: column;
        gap: 8px;
    }
    
    /* 채널명과 좋아요 버튼 한 줄에 */
    .mobile-name-like {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
    }
    
    .mobile-name-like .profile-name {
        font-size: 16px;
        margin: 0;
        font-weight: bold;
        flex: 1;
    }
    
    .mobile-name-like .profile-like-btn {
        padding: 4px 8px;
        font-size: 16px;
        margin: 0;
        border-radius: 50%;
        background: transparent;
        border: 1px solid #34495E;
        width: 32px;
        height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .mobile-name-like .profile-like-btn span:last-child {
        display: none;
    }
    
    /* 통계 정보 */
    .profile-card .profile-stats {
        display: flex;
        gap: 12px;
        padding: 0;
        margin: 0;
        border: none;
        background: none;
    }
    
    .profile-card .stat-item {
        display: flex;
        align-items: center;
        gap: 3px;
    }
    
    .profile-card .stat-count {
        font-size: 14px;
        font-weight: bold;
        color: #fefad4;
    }
    
    .profile-card .stat-label {
        font-size: 11px;
        color: #e2fdf7;
        opacity: 0.7;
    }
    
    /* 소개글 */
    .profile-card .profile-intro {
        background: transparent;
        padding: 0;
        margin: 0;
        border-radius: 0;
    }
    
    .profile-card .intro-text {
        font-size: 12px;
        line-height: 1.4;
        color: #e2fdf7;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }
    
    /* 조건부 표시를 위한 클래스 */
    .profile-card.hide-avatar .profile-avatar {
        display: none;
    }
    
    .profile-card.hide-channel-name .profile-name,
    .profile-card.hide-channel-name .profile-handle {
        display: none;
    }
    
    .profile-card.hide-like-button .profile-like-btn {
        display: none;
    }
    
    .profile-card.hide-stats .profile-stats {
        display: none;
    }
    
    .profile-card.hide-intro .profile-intro {
        display: none;
    }
    
    
    /* PC 레이아웃 숨김 */
    .profile-pc-layout {
        display: none !important;
    }
}

/* PC/모바일 레이아웃 분리 - 기본값 */
.profile-card-mobile-layout {
    display: none;
}

.profile-pc-layout {
    display: block;
}

/* 768px 미디어 쿼리는 위에 이미 있음 (2016-2555줄) */
    
    /* 작은 화면 (모바일)에서 추가 최적화 */
    @media (max-width: 480px) {
        
        .profile-card .profile-avatar {
            width: 120px;
            height: 120px;
            font-size: 24px;
        }
        
        .profile-card .profile-name {
            font-size: 16px;
        }
        
        .profile-card .profile-handle {
            font-size: 12px;
        }
        
        .profile-card .stat-count {
            font-size: 14px;
        }
        
        .profile-card .stat-label {
            font-size: 10px;
        }
    }
    
    /* 가로 모드에서 프로필 카드 조정 */
    @media (max-width: 768px) and (orientation: landscape) {
        .profile-card {
            min-height: 50vh;
            display: grid;
            grid-template-columns: auto 1fr;
            grid-template-rows: auto auto 1fr;
            gap: 10px;
            align-items: start;
            justify-content: start;
            text-align: left;
        }
        
        .profile-card .profile-avatar {
            grid-row: 1 / 3;
            margin: 0;
        }
        
        .profile-card .profile-name,
        .profile-card .profile-handle {
            grid-column: 2;
            margin: 0;
        }
        
        .profile-card .profile-like-btn {
            grid-column: 2;
            width: fit-content;
            margin: 0;
        }
        
        .profile-card .profile-stats {
            grid-column: 1 / -1;
            margin-top: 10px;
        }
        
        .profile-card .subscribe-btn,
        .profile-card .profile-intro,
        .profile-card .profile-links {
            grid-column: 1 / -1;
        }
    }

/* 768px 미디어 쿼리 밖 - 모바일 전용 추가 스타일 */
@media (max-width: 768px) {
    .channel-tabs {
        margin-bottom: 15px;
        /* 모바일에서 가로 스크롤 힌트를 위한 그라데이션 */
        position: relative;
    }
    
    .channel-tabs::after {
        content: '';
        position: absolute;
        right: 0;
        top: 0;
        bottom: 0;
        width: 30px;
        background: linear-gradient(to right, transparent, #22313F);
        pointer-events: none;
        z-index: 1;
    }
    
    .tab-item {
        padding: 12px 18px;
        font-size: 14px;
        flex-shrink: 0; /* 탭 항목이 줄어들지 않도록 */
    }
    
    .support-section {
        padding: 15px;
    }
    
    .support-btn {
        font-size: 13px;
        padding: 10px 8px;
    }
    
    .support-icon {
        font-size: 16px;
    }
    
    .popular-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .attendance-main {
        grid-template-columns: 1fr;
    }
    
    .attendance-calendar-wrap {
        max-width: 320px;
        margin: 0 auto;
    }
    
    .attendance-check-area {
        padding: 20px;
    }
    
    .streak-number {
        font-size: 48px;
    }
    
    .reward-item {
        min-width: 160px;
    }
    
    .attendance-calendar {
        gap: 5px;
    }
    
    .attendance-day {
        font-size: 12px;
    }
    
    .filter-tabs {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .filter-btn {
        white-space: nowrap;
    }
    
    .honor-item {
        padding: 12px;
    }
    
    .honor-rank {
        font-size: 16px;
        min-width: 30px;
    }
    
    .poll-option {
        padding: 12px;
    }
    
    .poll-option span:first-child {
        font-size: 16px;
    }
    
    .goal-progress {
        margin-bottom: 3px;
    }
    
    .goal-progress-bar {
        height: 25px;
        margin-bottom: 3px;
    }
    
    .goal-progress-text {
        font-size: 12px;
    }
    
    .goal-stats {
        font-size: 12px;
        margin-top: 5px;
        padding: 0 3px;
    }
    
    .goal-support-wrap {
        margin-top: 5px;
        padding: 12px;
    }
    
    .goal-amount-input {
        padding: 8px;
        font-size: 14px;
    }
    
    .support-goal-btn {
        padding: 10px;
        font-size: 14px;
    }
}

/* 스토리 비활성화 스타일 */
/* 스토리 비활성화된 콘텐츠 안내 메시지 스타일 */
.disabled-notice {
    text-align: center;
    padding: 40px 20px;
    color: #888;
}

.disabled-notice .disabled-icon {
    font-size: 48px;
    margin-bottom: 15px;
    opacity: 0.6;
}

.disabled-notice h3 {
    color: #bbb;
    margin-bottom: 10px;
    font-size: 18px;
}

.disabled-notice p {
    color: #888;
    font-size: 14px;
    line-height: 1.5;
}

/* 더보기 버튼 스타일 */
.popular-load-more {
    text-align: center;
    margin-top: 20px;
    padding: 20px 0;
}

.btn-load-more {
    background: linear-gradient(135deg, #2C3E50 0%, #34495E 100%);
    border: 1px dashed #1c1c1c;
    border-radius: 12px;
    color: #e2fdf7;
    padding: 12px 30px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-width: 140px;
    justify-content: center;
}

.btn-load-more:hover {
    background: linear-gradient(135deg, #34495E 0%, #2C3E50 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.btn-load-more:active {
    transform: translateY(0);
}

.btn-load-more.loading {
    cursor: not-allowed;
    opacity: 0.7;
}

.btn-load-more.loading .load-more-text {
    opacity: 0.6;
}

.btn-load-more.loading .load-more-icon {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.load-more-icon {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.btn-load-more:hover .load-more-icon {
    transform: scale(1.1);
}

/* 모바일 반응형 */
@media (max-width: 768px) {
    .btn-load-more {
        padding: 10px 25px;
        font-size: 14px;
        min-width: 120px;
    }
    
    .popular-load-more {
        margin-top: 15px;
        padding: 15px 0;
    }
}

/* 목표 액션 버튼 그룹 스타일 */
.goal-action-buttons {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.goal-action-buttons button {
    flex: 1;
    padding: 12px 16px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.support-goal-btn {
    background: linear-gradient(135deg, #745353 0%, #f64747 100%);
    color: white;
}

.support-goal-btn:hover {
    background: linear-gradient(135deg, #f64747 0%, #ec5f5f 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(93, 187, 99, 0.3);
}

.supporter-list-btn {
    background: linear-gradient(135deg, #602ee7 0%, #4a47f6 100%);
    color: white;
}

.supporter-list-btn:hover {
    background: linear-gradient(135deg, #4a47f6 0%, #602ee7 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(93, 187, 99, 0.3);
}

/* 마감일 표시 스타일 */
.goal-deadline {
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
    color: #F64747;
    font-size: 14px;
}

.deadline-icon {
    font-size: 16px;
}

.deadline-text strong {
    color: #FF6B6B;
    font-weight: 600;
}

/* 목표 비활성화 상태 */
.goal-disabled {
    padding: 40px;
    text-align: center;
    color: #7f8c8d;
}

.goal-disabled p {
    margin: 0;
    font-size: 15px;
}

/* 목표 헤더 버튼 그룹 */
.goal-header-buttons {
    display: flex;
    gap: 8px;
    align-items: center;
}

.goal-setting-btn,
.goal-close-btn {
    background: #34495E;
    border: 1px solid #4A5F7F;
    border-radius: 6px;
    color: #e2fdf7;
    padding: 8px 12px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.goal-setting-btn:hover {
    background: #2C3E50;
    border-color: #5A7FA7;
}

.goal-close-btn {
    background: #8B4513;
    border-color: #A0522D;
}

.goal-close-btn:hover {
    background: #A0522D;
    border-color: #CD853F;
}

/* 모바일 반응형 */
@media (max-width: 768px) {
    .goal-action-buttons {
        gap: 8px;
    }
    
    .goal-action-buttons button {
        padding: 10px 12px;
        font-size: 13px;
    }
    
    .support-goal-btn span,
    .supporter-list-btn span {
        font-size: 14px;
    }
    
    .goal-header-buttons {
        gap: 6px;
    }
    
    .goal-setting-btn,
    .goal-close-btn {
        padding: 6px 10px;
        font-size: 12px;
    }
}

/* 모달 애니메이션 */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        transform: translateX(-20px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* 목표가 없을 때 스타일 */
.goal-content.no-goal {
    text-align: center;
    padding: 40px 20px;
}

.no-goal-message {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.no-goal-icon {
    font-size: 48px;
    opacity: 0.5;
}

.no-goal-message h4 {
    margin: 0;
    color: #FFFFFF;
    font-size: 18px;
}

.no-goal-message p {
    margin: 0;
    color: #B0B0B0;
    font-size: 14px;
}

.btn-set-goal {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #4ECDC4;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s;
    margin-top: 10px;
}

.btn-set-goal:hover {
    background: #45B7BE;
    transform: translateY(-2px);
}

/* 태블릿 및 모바일에서 출석 달력 반응형 스타일 */
@media (max-width: 1024px) {
    .attendance-main {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    
    .attendance-calendar-wrap {
        width: 100%;
        max-width: none;
    }
    
    .attendance-calendar {
        gap: 8px;
    }
    
    .attendance-day {
        font-size: 14px;
        min-height: 50px;
    }
    
    .calendar-header {
        font-size: 18px;
        padding: 15px;
    }
    
    .weekday {
        font-size: 14px;
        padding: 10px 0;
    }
    
    .attendance-check-area {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .attendance-calendar {
        gap: 5px;
    }
    
    .attendance-day {
        font-size: 13px;
        min-height: 45px;
    }
    
    .attendance-day.unlocked::after {
        font-size: 16px;
        position: absolute;
        top: -5px;
        right: -5px;
    }
    
    .attendance-streak {
        margin-bottom: 20px;
    }
    
    .streak-number {
        font-size: 48px;
    }
    
    .attendance-check-btn {
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .attendance-section {
        padding: 15px;
    }
    
    .attendance-calendar {
        gap: 3px;
    }
    
    .attendance-day {
        font-size: 12px;
        min-height: 40px;
        border-radius: 6px;
    }
    
    .calendar-header {
        font-size: 16px;
        padding: 12px;
    }
    
    .weekday {
        font-size: 12px;
        padding: 8px 0;
    }
    
    .attendance-check-area {
        padding: 20px;
    }
    
    .streak-number {
        font-size: 40px;
    }
    
    .streak-label {
        font-size: 14px;
    }
    
    .attendance-check-btn {
        font-size: 16px;
        padding: 14px 20px;
    }
}

/* ========================================
   피드 필터 토글 (2025.10.29)
======================================== */
.feed-filter-toggle {
    background: #22313F;
    border-radius: 12px;
    margin-top: 12px;
    display: flex;
    flex-direction: column;
    border: 1px solid #34495E;
    overflow: hidden;
}

.filter-toggle-header {
    padding: 12px 16px;
    background: linear-gradient(135deg, #1a252f, #22313F);
    border-bottom: 1px solid #34495E;
    font-size: 13px;
    font-weight: 600;
    color: #e2fdf7;
    display: flex;
    align-items: center;
    gap: 6px;
}

.filter-toggle-header i {
    font-size: 14px;
    opacity: 0.8;
}

.filter-toggle-body {
    padding: 12px 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.filter-toggle-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.toggle-label {
    color: #e2fdf7;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    user-select: none;
    flex: 1;
    white-space: nowrap;
}

.toggle-label i {
    font-size: 16px;
    opacity: 0.7;
}

/* 눈 아이콘 */
.filter-eye-icon {
    font-size: 18px;
    margin-left: auto;
    transition: all 0.3s ease;
}

.filter-eye-icon.ti-eye {
    color: #F64747;
    opacity: 1;
}

.filter-eye-icon.ti-eye-off {
    color: #7f8c8d;
    opacity: 0.5;
}

/* 토글 스위치 */
.toggle-switch {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
    cursor: pointer;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #34495E;
    border-radius: 24px;
    transition: all 0.3s;
    border: 1px solid rgba(226, 253, 247, 0.1);
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 2px;
    background-color: #e2fdf7;
    border-radius: 50%;
    transition: all 0.3s;
}

.toggle-switch input:checked + .toggle-slider {
    background: linear-gradient(135deg, #F64747, #f97171);
    border-color: #F64747;
}

.toggle-switch input:checked + .toggle-slider:before {
    transform: translateX(20px);
}

.toggle-switch:hover .toggle-slider {
    box-shadow: 0 0 8px rgba(246, 71, 71, 0.3);
}

/* 모바일 대응 */
@media (max-width: 768px) {
    .feed-filter-toggle {
        padding: 10px 12px;
        gap: 8px;
    }

    .toggle-label {
        font-size: 12px;
    }

    .toggle-switch {
        width: 40px;
        height: 22px;
    }

    .toggle-slider:before {
        height: 16px;
        width: 16px;
    }

    .toggle-switch input:checked + .toggle-slider:before {
        transform: translateX(18px);
    }
}

/* ========================================
   필터 토스트 알림 (2025.10.29)
======================================== */
.filter-toast {
    position: fixed;
    top: 80px;
    right: 20px;
    background: linear-gradient(135deg, #22313F, #34495E);
    color: #e2fdf7;
    padding: 16px 24px;
    border-radius: 12px;
    border: 1px solid #F64747;
    box-shadow: 0 4px 20px rgba(246, 71, 71, 0.3);
    z-index: 9999;
    font-size: 14px;
    font-weight: 500;
    opacity: 0;
    transform: translateX(400px);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.filter-toast.show {
    opacity: 1;
    transform: translateX(0);
}

/* 모바일 대응 */
@media (max-width: 768px) {
    .filter-toast {
        right: 10px;
        left: 10px;
        top: 70px;
        text-align: center;
        padding: 14px 20px;
        font-size: 13px;
    }
}


/* ==================== 네비 도움말 모달 (2025.10.30) ==================== */

/* nav-item 안에 버튼 포함 (인덱스 네비 전용) */
.nav-menu .nav-item {
    position: relative;
    display: flex !important;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
}

/* 도움말 버튼 */
.nav-help-btn {
    background: rgba(255, 193, 7, 0.15);
    border: 1px solid rgba(255, 193, 7, 0.4);
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    padding: 0;
    flex-shrink: 0;
    margin-left: auto;
}

.nav-help-btn i {
    font-size: 13px;
    color: #FFC107;
}

.nav-help-btn:hover {
    background: rgba(255, 193, 7, 0.25);
    border-color: rgba(255, 193, 7, 0.6);
    transform: scale(1.15);
    box-shadow: 0 0 8px rgba(255, 193, 7, 0.3);
}

/* 모달 컨테이너 */
.nav-help-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* 모달 오버레이 */
.nav-help-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

/* 모달 콘텐츠 */
.nav-help-modal-content {
    position: relative;
    background: #22313F;
    border: 1px solid #34495E;
    border-radius: 16px;
    padding: 30px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: slideUp 0.3s ease-out;
    z-index: 1;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 닫기 버튼 */
.nav-help-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(246, 71, 71, 0.2);
    border: 1px solid rgba(246, 71, 71, 0.4);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    padding: 0;
    z-index: 999;
    font-size: 24px;
    color: #F64747;
    font-weight: 300;
    line-height: 1;
}

.nav-help-modal-close:hover {
    background: rgba(246, 71, 71, 0.4);
    transform: scale(1.1);
}

/* 모달 바디 */
.nav-help-modal-body {
    padding-right: 10px;
}

.nav-help-modal-body h3 {
    color: #fefad4;
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 20px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-help-modal-body h3 i {
    color: #F64747;
    font-size: 20px;
}

.nav-help-modal-body p {
    color: #e2fdf7;
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 12px 0;
}

.nav-help-modal-body .help-section {
    margin-bottom: 20px;
}

.nav-help-modal-body .help-section:last-child {
    margin-bottom: 0;
}

.nav-help-modal-body .help-title {
    color: #fefad4;
    font-size: 15px;
    font-weight: 600;
    margin: 0 0 10px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-help-modal-body .help-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-help-modal-body .help-list li {
    color: #e2fdf7;
    font-size: 13px;
    line-height: 1.6;
    padding: 6px 0 6px 24px;
    position: relative;
}

.nav-help-modal-body .help-list li:before {
    content: "•";
    position: absolute;
    left: 10px;
    color: #F64747;
    font-weight: bold;
    font-size: 16px;
}

.nav-help-modal-body .help-highlight {
    background: rgba(246, 71, 71, 0.1);
    border-left: 3px solid #F64747;
    padding: 12px 15px;
    border-radius: 8px;
    margin: 12px 0;
}

.nav-help-modal-body .help-highlight strong {
    color: #fefad4;
    font-weight: 600;
}

/* 커스텀 스크롤바 */
.nav-help-modal-content::-webkit-scrollbar {
    width: 8px;
}

.nav-help-modal-content::-webkit-scrollbar-track {
    background: rgba(52, 73, 94, 0.3);
    border-radius: 4px;
}

.nav-help-modal-content::-webkit-scrollbar-thumb {
    background: #F64747;
    border-radius: 4px;
}

.nav-help-modal-content::-webkit-scrollbar-thumb:hover {
    background: #f97171;
}

/* 모바일 대응 */
@media (max-width: 768px) {
    .nav-help-modal-content {
        width: 95%;
        max-height: 85vh;
        padding: 25px 20px;
    }

    .nav-help-modal-body h3 {
        font-size: 16px;
    }

    .nav-help-modal-body p {
        font-size: 13px;
    }

    .nav-help-modal-body .help-list li {
        font-size: 12px;
    }
}


/* ==================== 숨긴 채널 관리 버튼 (2025.11.01) ==================== */
.filter-manage-btn-inline {
    background: #1a252f;
    border: 1px solid #34495E;
    border-radius: 4px;
    padding: 3px 8px;
    color: #e2fdf7;
    font-size: 11px;
    font-weight: 500;
    cursor: pointer;
    margin-left: 6px;
    transition: all 0.2s ease;
}

.filter-manage-btn-inline:hover {
    background: #F64747;
    border-color: #F64747;
    color: #fff;
}


/* ==================== 숨긴 채널 모달 (2025.11.01) ==================== */
.hide-list-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hide-list-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
}

.hide-list-modal-content {
    position: relative;
    background: #22313F;
    border-radius: 16px;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid #34495E;
}

.hide-list-modal-header {
    padding: 20px 24px;
    border-bottom: 1px solid #34495E;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, #1a252f, #22313F);
    border-radius: 16px 16px 0 0;
}

.hide-list-modal-header h3 {
    margin: 0;
    font-size: 18px;
    color: #e2fdf7;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hide-list-modal-header h3 i {
    color: #F64747;
    font-size: 20px;
}

.hide-list-modal-close {
    background: none;
    border: none;
    color: #e2fdf7;
    font-size: 24px;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.hide-list-modal-close:hover {
    color: #F64747;
    transform: rotate(90deg);
}

.hide-list-modal-body {
    padding: 20px 24px;
    overflow-y: auto;
    max-height: calc(80vh - 80px);
}

/* 추가 영역 */
.hide-list-add-section {
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid #34495E;
}

.hide-list-add-section h4 {
    margin: 0 0 12px 0;
    font-size: 14px;
    color: #e2fdf7;
    display: flex;
    align-items: center;
    gap: 6px;
}

.hide-list-add-section h4 i {
    color: #F64747;
}

.hide-list-add-form {
    display: flex;
    gap: 8px;
}

.hide-list-input-wrapper {
    flex: 1;
    position: relative;
}

.hide-list-add-form input {
    width: 100%;
    background: #1a252f;
    border: 1px solid #34495E;
    border-radius: 8px;
    padding: 10px 14px;
    color: #e2fdf7;
    font-size: 14px;
    outline: none;
    transition: all 0.3s;
}

.hide-list-add-form input:focus {
    border-color: #F64747;
    box-shadow: 0 0 0 3px rgba(246, 71, 71, 0.1);
}

.hide-list-add-form input::placeholder {
    color: #7f8c8d;
}

/* 자동완성 */
.hide-list-autocomplete {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #1a252f;
    border: 1px solid #F64747;
    border-radius: 8px;
    margin-top: 4px;
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.hide-list-autocomplete-item {
    padding: 10px 14px;
    color: #e2fdf7;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
    border-bottom: 1px solid #34495E;
}

.hide-list-autocomplete-item:last-child {
    border-bottom: none;
}

.hide-list-autocomplete-item:hover {
    background: #22313F;
    color: #F64747;
}

.hide-list-autocomplete-empty {
    padding: 10px 14px;
    color: #7f8c8d;
    font-size: 13px;
    text-align: center;
}

.hide-list-add-btn {
    background: linear-gradient(135deg, #F64747, #f97171);
    border: none;
    border-radius: 8px;
    padding: 10px 20px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s;
    white-space: nowrap;
}

.hide-list-add-btn:hover {
    box-shadow: 0 4px 12px rgba(246, 71, 71, 0.4);
    transform: translateY(-2px);
}

/* 목록 영역 */
.hide-list-section h4 {
    margin: 0 0 12px 0;
    font-size: 14px;
    color: #e2fdf7;
    display: flex;
    align-items: center;
    gap: 6px;
}

.hide-list-section h4 i {
    color: #F64747;
}

.hide-list-count {
    background: #F64747;
    color: #fff;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    margin-left: 4px;
}

.hide-list-container {
    background: #1a252f;
    border-radius: 8px;
    padding: 12px;
    max-height: 400px;
    overflow-y: auto;
}

.hide-list-loading {
    text-align: center;
    padding: 40px 20px;
    color: #7f8c8d;
    font-size: 14px;
}

.hide-list-loading i {
    font-size: 24px;
    margin-bottom: 8px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hide-list-empty {
    text-align: center;
    padding: 40px 20px;
    color: #7f8c8d;
    font-size: 14px;
}

.hide-list-empty i {
    font-size: 48px;
    margin-bottom: 12px;
    opacity: 0.5;
    display: block;
}

/* 채널 카드 (심플 버전) */
.hide-list-item {
    background: #22313F;
    border: 1px solid #34495E;
    border-radius: 8px;
    padding: 12px 16px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    transition: all 0.2s;
}

.hide-list-item:hover {
    background: #2a3a4a;
    border-color: #F64747;
}

.hide-list-item-info {
    flex: 1;
    min-width: 0;
}

.hide-list-item-nick {
    font-size: 15px;
    font-weight: 600;
    color: #e2fdf7;
    margin-bottom: 4px;
}

.hide-list-item-date {
    font-size: 12px;
    color: #7f8c8d;
}

.hide-list-item-remove {
    background: none;
    border: 1px solid #e74c3c;
    border-radius: 6px;
    padding: 6px 14px;
    color: #e74c3c;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
    flex-shrink: 0;
}

.hide-list-item-remove:hover {
    background: #e74c3c;
    color: #fff;
}

/* 모바일 대응 */
@media (max-width: 768px) {
    .hide-list-modal-content {
        width: 95%;
        max-height: 90vh;
    }

    .hide-list-modal-header {
        padding: 16px 20px;
    }

    .hide-list-modal-header h3 {
        font-size: 16px;
    }

    .hide-list-modal-body {
        padding: 16px 20px;
    }

    .hide-list-add-form {
        flex-direction: column;
    }

    .hide-list-add-btn {
        width: 100%;
        justify-content: center;
    }

    .hide-list-item {
        padding: 10px 12px;
    }
}

/* ========================================
   블랙리스트 채널 제외 토글 (2025.11.01)
   ======================================== */
.hide-list-blacklist-section {
    background: #1a252f;
    border: 1px solid #34495E;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
}

.hide-list-blacklist-toggle {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.blacklist-help-text {
    color: #95a5a6;
    font-size: 12px;
    line-height: 1.5;
    margin: 0;
    padding-left: 52px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.blacklist-help-text i {
    color: #F64747;
    font-size: 13px;
}

/* 모바일 대응 */
@media (max-width: 768px) {
    .hide-list-blacklist-section {
        padding: 16px;
    }

    .blacklist-help-text {
        padding-left: 0;
        font-size: 11px;
    }
}
