@charset "utf-8";

/* ========================================
   에브리뷰 NEW 메인 페이지 스타일 (재구성 버전)
   접두사: mnew-
   
   ✅ 모든 원본 스타일 완벽 보존
   ✅ 섹션별로 PC → 반응형 순서로 재배치
   
   버전: 2024.11 정리본
   ======================================== */

/* ========== 1. 실시간 라이브 피드 ========== */
.mnew-live-feed-container {
    background: linear-gradient(135deg, #f0f4ff 0%, #e8f0ff 100%);
    padding: 1rem 0;
    margin: 2.5rem 0 0;
}

.mnew-live-feed {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 0.75rem 1.5rem;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 40, 183, 0.1);
}

.mnew-live-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #ff4444;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.875rem;
    white-space: nowrap;
}

.mnew-live-dot {
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    animation: mnew-pulse 2s infinite;
}

@keyframes mnew-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.mnew-feed-scroll {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.mnew-feed-item {
    display: inline-block;
    padding: 0 2rem;
    font-size: 0.95rem;
    color: #333;
    animation: mnew-scroll 20s linear infinite;
    white-space: nowrap;
}

@keyframes mnew-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}


/* ========== 2. 유튜브 하이라이트 ========== */
.mnew-youtube-highlight {
    position: relative;
    border: 2px solid #ff0000 !important;
    box-shadow: 0 0px 30px rgba(255, 0, 0, 0.2) !important;
}

.mnew-new-badge {
    position: absolute;
    top: -10px;
    right: 10px;
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(255, 0, 0, 0.3);
    z-index: 10;
}

.mnew-badge-youtube {
    background: #fff0f0;
    color: #ff0000;
    font-size: 11px;
    font-weight: 400;
    padding: 3px 7px;
    border-radius: 14px;
    white-space: nowrap;
}





/* ========== 3. 절약 계산기 (좌우 레이아웃 - 고급) ========== */
.mnew-calculator-section {
    padding: 1rem 0 5rem;
	background: linear-gradient(180deg, #ffffff 0%, #edf0f5 35%, #f8f9fb 100%);
}

.mnew-calculator-container {
    background: white;
    border-radius: 1.88rem;
    padding: 3rem;
    box-shadow: 0 1.5rem 4rem rgba(22, 28, 45, 0.1);
	border: 1px solid #f2f2f2;
}

.mnew-section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    color: #161c2d;
    margin-bottom: 0.5rem;
    letter-spacing: -0.05rem;
}

.mnew-section-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: #666;
    margin-bottom: 3rem;
}

.mnew-calculator-layout {
    display: flex;
    gap: 2.5rem;
    align-items: flex-start;
}

/* 좌측: OTT 선택 영역 (2단 그리드) */
.mnew-ott-selector-left {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.mnew-ott-checkbox-row {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 1rem 1rem;
    border: 2px solid #e8e8e8;
    border-radius: 0.875rem;
    cursor: pointer;
    transition: all 0.25s ease;
    background: white;
    position: relative;
}

/* 마지막 항목 (라프텔) - 좌측 1칸만 차지 */
.mnew-ott-checkbox-row:nth-child(7) {
    grid-column: 1 / 2;
}

/* 선택되지 않은 상태 */
.mnew-ott-checkbox-row:hover {
    border-color: #d0d0d0;
    background: #fafafa;
}

/* 선택된 상태 - 아주 연한 파란색 배경 */
.mnew-ott-checkbox-row:has(input[type="checkbox"]:checked) {
    border-color: #3772ff;
    background: #f5f8ff;
    box-shadow: 0 2px 8px rgba(55, 114, 255, 0.12);
}

.mnew-ott-checkbox-row input[type="checkbox"] {
    display: none;
}

/* 로고 이미지 */
.mnew-ott-checkbox-row img {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
}

/* OTT 정보 영역 */
.mnew-ott-info {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    flex: 1;
}

/* OTT 이름 */
.mnew-ott-name {
    font-size: 1rem;
    font-weight: 500;
    color: #333;
    line-height: 1.3;
}

/* 프리미엄 텍스트 */
.mnew-ott-grade {
    font-size: 0.75rem;
    color: #999;
    font-weight: 400;
}

/* NEW 뱃지 - 부드러운 라운딩 */
.mnew-mini-badge {
    background: #ff0000;
    color: white;
    padding: 3px 7px;
    border-radius: 8px;
    font-size: 0.65rem;
    font-weight: 500;
    margin-left: 4px;
    vertical-align: middle;
}

/* 원형 체크박스 - 우측 배치 */
.mnew-checkbox-circle {
    width: 22px;
    height: 22px;
    border: 2px solid #d0d0d0;
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
    transition: all 0.25s ease;
    background: white;
    margin-left: auto;
}

/* 선택된 상태의 원형 체크박스 */
.mnew-ott-checkbox-row input[type="checkbox"]:checked + img + .mnew-ott-info + .mnew-checkbox-circle {
    background: #3772ff;
    border-color: #3772ff;
}

.mnew-ott-checkbox-row input[type="checkbox"]:checked + img + .mnew-ott-info + .mnew-checkbox-circle::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 13px;
    font-weight: 700;
}

/* 우측: 계산 결과 영역 */
.mnew-calculator-result-right {
    flex: 0 0 410px;
}

.mnew-result-box {
    background: #f8f9fb;
    border-radius: 1rem;
    padding: 0rem;
    display: flex;
    flex-direction: column;
    border: 1px solid #d7d7d7;
}

/* 개별 구독 시 행 */
.mnew-result-row.mnew-subtle-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
    margin-top: 1.3rem;
}

.mnew-result-label {
    color: #333;
    font-weight: 500;
	margin-left: 1.8rem;
}

.mnew-result-label2 {
    color: #333;
    font-weight: 400;
}

/* 선택 개수 뱃지 - 라운딩된 스타일 */
.mnew-count-badge {
    background: #ffeb3b;
    color: #333;
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.2rem 0.5rem;
    border-radius: 1rem;
	margin-right: 0.3rem;
}

.mnew-result-value {
    font-weight: 600;
    color: #333;
    font-size: 1.125rem;
	margin-right: 2rem;
}

/* 간격 */
.mnew-spacer {
    height: 1.3rem;
}

/* 에브리뷰 이용 시 + 절약 정보 그룹 */
.mnew-primary-group {
    background: linear-gradient(0deg, #3772ff 0%, #003fd9 100%);
    border-radius: 0 0 1rem 1rem;
    padding: 1rem 1.5rem 1.5rem ;
}

/* 에브리뷰 이용 시 행 */
.mnew-result-row.mnew-primary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.3rem;
}

.mnew-result-label-primary {
    color: #ffeb3b;
    font-weight: 600;
    font-size: 1.125rem;
	margin-left: 0.5rem;
}

.mnew-result-label-primary2 {
    color: #ffeb3b;
    font-weight: 600;
    font-size: 1.125rem;
}

.mnew-result-value-primary {
    color: #ffeb3b;
    font-weight: 700;
    font-size: 1.6rem;
	margin-right: 0.5rem;
}


/* 절약 정보 영역 - 새로운 2줄 레이아웃 */
.mnew-savings-info {
    background: rgba(255, 255, 255, 0.25);
    border-radius: 0.75rem;
    padding: 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    text-align: center;
    position: relative;
}

/* 아이콘 */
.mnew-savings-icon {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

/* 첫 번째 줄: 한 달에 N원 · 1년에 N원 */
.mnew-savings-line1 {
    font-size: 0.9rem;
    color: white;
    font-weight: 400;
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

/* 두 번째 줄: N% 절약 가능해요! */
.mnew-savings-line2 {
    font-size: 1rem;
    color: white;
    font-weight: 500;
    line-height: 1.5;
}

/* 밑줄 스타일 */
.mnew-underline {
    text-decoration: underline;
    text-decoration-color: #ffeb3b;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    color: #ffeb3b;
    font-weight: 500;
}


/* 블랙 버튼 */
.mnew-cta-button-black {
    width: 100%;
    background: #2d2d2d;
    color: white;
    border: none;
    border-radius: 0.875rem;
    padding: 1.125rem;
    font-size: 1.0625rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.mnew-cta-button-black:hover {
    background: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}


/* ========== 절약 계산기 - 반응형 ========== */
@media (max-width: 768px) {
	.mnew-calculator-container {
        padding: 2rem 1.5rem;
    }
    
    .mnew-section-title {
        font-size: 1.5rem;
    }

	.mnew-section-subtitle {
		margin-bottom: 2rem;
	}	
	
    /* 절약 계산기 모바일 레이아웃 */
    .mnew-calculator-layout {
        flex-direction: column;
        gap: 2rem;
    }
    
    /* 좌측 - 모바일에서는 1단 */
    .mnew-ott-selector-left {
        grid-template-columns: 1fr;
    }
    
    .mnew-ott-checkbox-row:nth-child(7) {
        grid-column: 1;
    }
    
    .mnew-calculator-result-right {
        flex: 1;
        width: 100%;
    }
    
    .mnew-ott-checkbox-row {
        padding: 0.75rem 0.875rem;
    }
    
    .mnew-ott-checkbox-row img {
        width: 32px;
        height: 32px;
    }
    
    .mnew-ott-name {
        font-size: 0.95rem;
    }
    
    .mnew-ott-grade {
        font-size: 0.7rem;
    }
    
    .mnew-checkbox-circle {
        width: 20px;
        height: 20px;
    }
    
    .mnew-result-box {
        padding: 0rem;
        min-height: auto;
    }
    
    .mnew-result-row.mnew-subtle-row {
        font-size: 0.95rem;
    }
    
    .mnew-result-value {
        font-size: 1rem;
    }
    
    .mnew-result-label-primary {
        font-size: 0.8rem;
    }
    
    .mnew-result-value-primary {
        font-size: 1.2rem;
    }
    
	.mnew-spacer {
		height: 0.5rem;
	}
	
    .mnew-primary-group {
        padding: 1rem;
    }
    
    .mnew-savings-amount > span:first-child {
        font-size: 1.5rem;
    }
    
    .mnew-savings-percent {
        font-size: 1rem;
    }
    
    .mnew-savings-label {
        font-size: 0.9375rem;
    }
}

/* ========== 4. 실시간 활동 피드 ========== */
.mnew-activity-section {
    padding: 4rem 0;
}

.mnew-activity-feed {
    background: white;
    border-radius: 1.25rem;
    padding: 1.5rem;
    box-shadow: 0 0.5rem 2rem rgba(22, 28, 45, 0.08);
    max-height: 400px;
    overflow-y: auto;
}

.mnew-activity-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-bottom: 1px solid #f0f0f0;
    animation: mnew-fadeIn 0.5s ease;
}

.mnew-activity-item:last-child {
    border-bottom: none;
}

@keyframes mnew-fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.mnew-activity-icon {
    font-size: 1.5rem;
    min-width: 40px;
    text-align: center;
}

.mnew-activity-text {
    flex: 1;
    font-size: 0.95rem;
    color: #333;
    font-weight: 500;
}

.mnew-activity-time {
    font-size: 0.8rem;
    color: #999;
    white-space: nowrap;
}


/* ========== 5. 순환 통계 ========== */
.mnew-stats-section {
    padding: 2.5rem 0;
    background: linear-gradient(135deg, #3772ff 0%, #084aea 100%);
    color: white;
}

.mnew-rotating-stat {
    position: relative;
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mnew-stat-item {
    position: absolute;
    opacity: 0;
    transition: opacity 1s ease;
    text-align: center;
    width: 100%;
}

.mnew-stat-item.mnew-active {
    opacity: 1;
    z-index: 1;
}

.mnew-stat-item h3 {
    font-size: 1.75rem;
    font-weight: 500;
    letter-spacing: -0.02rem;
}

.mnew-stat-number {
    font-weight: 700;
    color: #fee500;
    font-size: 2rem;
}


/* ========== 6. 비교 우위 섹션 (NEW DESIGN) ========== */
.mnew-comparison-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.mnew-comparison-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ffe4e8 0%, #ffd4da 100%);
    color: #d63031;
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    margin: 0 auto;
    display: block;
    width: fit-content;
    margin-bottom: 1.5rem;
}

.mnew-comparison-main-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    line-height: 1.4;
    margin-bottom: 0.75rem;
}

.mnew-comparison-subtitle {
    font-size: 1rem;
    color: #999;
    text-align: center;
    margin-bottom: 3rem;
}

.mnew-comparison-container {
    display: grid;
    grid-template-columns: 0.8fr auto 0.8fr;
    gap: 2rem;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
}

/* 좌측: 개별 구독 */
.mnew-comparison-left {
    background: #f5f5f5;
    border-radius: 1.5rem;
    padding: 2rem 2.5rem;
}

.mnew-comparison-side-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1.5rem;
    text-align: center;
}

.mnew-comparison-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
}

.mnew-comparison-icon-red {
    width: 24px;
    height: 24px;
    background: #ffe4e8;
    color: #ff0000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 700;
    flex-shrink: 0;
}

.mnew-comparison-icon-gray {
    width: 24px;
    height: 24px;
    background: #e0e0e0;
    color: #999;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 700;
    flex-shrink: 0;
}

.mnew-comparison-text {
    font-size: 0.9375rem;
    color: #333;
    line-height: 1.4;
}

/* 중앙: VS (중앙 정렬) */
.mnew-comparison-vs {
    font-size: 2rem;
    font-weight: 800;
    color: #bdbbbb;
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: center;
}

/* 우측: 에브리뷰 */
.mnew-comparison-right {
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
    border-radius: 1.5rem;
    padding: 2rem 2.5rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.mnew-comparison-right .mnew-comparison-side-title {
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 5px;
}

.mnew-comparison-logo {
    color: #ffd700;
    font-size: 1.5rem;
}

.mnew-comparison-right .mnew-comparison-text {
    color: #ffffff;
}

.mnew-comparison-icon-green {
    width: 24px;
    height: 24px;
    background: #00b894;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 700;
    flex-shrink: 0;
}

/* 모바일 반응형 */

/* ========== 비교 우위 - 반응형 ========== */
@media (max-width: 768px) {
    .mnew-comparison-section {
        padding: 3rem 0;
    }
    
    .mnew-comparison-main-title {
        font-size: 1.5rem;
    }
    
    .mnew-comparison-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .mnew-comparison-vs {
        display: none;
    }
    
    .mnew-comparison-left,
    .mnew-comparison-right {
        padding: 1.5rem 1rem;
    }
}

/* ========== 7. 인기 조합 추천 ========== */
.mnew-popular-section {
    padding: 2rem 0 4.5rem;
}

.mnew-combo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.mnew-combo-card {
    background: white;
    border-radius: 1.25rem;
    padding: 2rem 1.5rem;
    box-shadow: 0 0.5rem 2rem rgba(22, 28, 45, 0.08);
    text-align: center;
    position: relative;
    border: 1px solid #e0e0e0;
}

/* 순위 뱃지 (카드 외부 좌상단) */
.mnew-combo-rank {
    position: absolute;
    top: -16px;
    left: 22px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    color: white;
    font-size: 0.875rem;
    font-weight: 700;
    padding: 0.4rem 0.9rem;
    border-radius: 1.5rem;
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
    z-index: 10;
}

.mnew-combo-otts {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    margin-top: 0.5rem;
}

.mnew-combo-otts img {
    width: 40px;
    height: 40px;
}

.mnew-plus {
    color: #999;
    font-weight: 600;
}

/* 유튜브 N 뱃지 (동그란 스타일 - 위치 조정) */
.mnew-ott-with-badge {
    position: relative;
    display: inline-block;
}

.mnew-n-badge {
    position: absolute;
    top: -7px;
    right: 30px;
    width: 18px;
    height: 18px;
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 500;
    z-index: 10;
}

.mnew-popular-note {
    text-align: center;
    margin-top: 2rem;
    padding: 1rem;
    background: #f8f9fb;
    border-radius: 0.75rem;
    color: #666;
    font-size: 0.9375rem;
}

.mnew-combo-name {
    font-size: 1.125rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.75rem;
}

.mnew-combo-price {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.mnew-combo-original {
    font-size: 0.875rem;
    color: #999;
    text-decoration: line-through;
}

.mnew-combo-discounted {
    font-size: 1.5rem;
    font-weight: 700;
    color: #3772ff;
}

.mnew-combo-savings {
    display: inline-block;
    background: #fee500;
    color: #392020;
    padding: 0.35rem 1rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.mnew-combo-button {
    width: 100%;
    background: #484848;
    color: white;
    border: none;
    border-radius: 0.6rem;
    padding: 0.75rem;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mnew-combo-button:hover {
    background: #333;
}

/* 모바일 반응형 */

/* ========== 비교 우위 - 반응형 ========== */
@media (max-width: 768px) {
	.mnew-popular-section {
		padding: 2rem 0 2.5rem;
	}
}




/* ========== 8. 유튜브 프리미엄 신규 오픈 (COMPACT) ========== */
.mnew-youtube-special {
    padding: 4rem 0;
    background: linear-gradient(46deg, #fff0f0 0%, #e7ecff 100%);
}

.mnew-youtube-container {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem 2.5rem;
    text-align: center;
    position: relative;
    box-shadow: 0 8px 32px rgba(60, 60, 60, 0.08);
    max-width: 800px;
    margin: 0 auto;
}

/* 첫번째 줄: 로고 + 타이틀 + NEW (가로 정렬) */
.mnew-youtube-header-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.mnew-youtube-logo-small {
    width: 50px;
    height: auto;
}

.mnew-youtube-title-inline {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

.mnew-youtube-new-badge-inline {
    background: #007eff;
    color: white;
    padding: 0.25rem 0.6rem;
    border-radius: 1.25rem;
    font-size: 0.7rem;
    font-weight: 500;
    box-shadow: 0 2px 8px ;
}

/* 두번째 줄: 서브 메시지 */
.mnew-youtube-subtitle-compact {
    font-size: 1rem;
    color: #666;
    margin-bottom: 1.75rem;
}

/* 네번째 영역: 금액 강조 */
.mnew-youtube-pricing-highlight {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #fff9f9 0%, #fff3f3 100%);
    border-radius: 1.25rem;
    margin-bottom: 1.75rem;
    border: 2px solid #ffe0e0;
}

.mnew-youtube-price-before,
.mnew-youtube-price-after {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.mnew-youtube-price-label {
    font-size: 0.8125rem;
    color: #999;
    font-weight: 500;
}

.mnew-youtube-price-original {
    font-size: 1.125rem;
    color: #999;
    text-decoration: line-through;
    font-weight: 600;
}

.mnew-youtube-arrow-big {
    font-size: 1.75rem;
    color: #ff6b6b;
    font-weight: 700;
}

.mnew-youtube-price-sale {
    font-size: 2rem;
    color: #ff0000;
    font-weight: 700;
}

/* 세번째 영역: 4가지 특징 (한 줄, 보조 설명 포함) */
.mnew-youtube-features-row {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.mnew-youtube-feature-card {
    background: #fafbfc;
    border: 1px solid #e8eaed;
    border-radius: 0.875rem;
    padding: 1.25rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
    flex: 1;
    min-width: 140px;
    max-width: 180px;
}

.mnew-youtube-feature-card:hover {
    background: white;
    border-color: #ff6b6b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.15);
}

.mnew-youtube-feature-card img {
    width: 50px;
    height: 50px;
    margin-bottom: 0.625rem;
}

.mnew-youtube-feature-card h3 {
    font-size: 0.9375rem;
    color: #1a1a1a;
    font-weight: 700;
    margin-bottom: 0.375rem;
    white-space: nowrap;
}

.mnew-youtube-feature-card p {
    font-size: 0.75rem;
    color: #666;
    margin: 0;
    line-height: 1.4;
}


.mnew-youtube-feature-card2 {
    background: #fafbfc;
    border: 1px solid #e8eaed;
    border-radius: 0.875rem;
    padding: 1.25rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
    flex: 1;
    min-width: 140px;
    max-width: 180px;
}

.mnew-youtube-feature-card2:hover {
    background: white;
    border-color: #ff6b6b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.15);
}

.mnew-youtube-feature-card2 img {
    width: 40px;
    height: 40px;
    margin-bottom: 0.625rem;
}

.mnew-youtube-feature-card2 h3 {
    font-size: 0.9375rem;
    color: #1a1a1a;
    font-weight: 700;
    margin-bottom: 0.375rem;
    white-space: nowrap;
}

.mnew-youtube-feature-card2 p {
    font-size: 0.75rem;
    color: #666;
    margin: 0;
    line-height: 1.4;
}



/* CTA 버튼 */
.mnew-youtube-cta-compact {
    width: 100%;
    max-width: 400px;
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
    color: white;
    border: none;
    border-radius: 0.875rem;
    padding: 1rem 2rem;
    font-size: 1.0625rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(255, 0, 0, 0.25);
}

.mnew-youtube-cta-compact:hover {
    background: linear-gradient(135deg, #cc0000 0%, #990000 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.35);
}

/* 모바일 반응형 */

/* ========== 유튜브 프리미엄 - 반응형 ========== */
@media (max-width: 768px) {
    .mnew-youtube-special {
        padding: 3rem 0;
    }
    
    .mnew-youtube-container {
        padding: 1.5rem 1.25rem;
    }
    
    .mnew-youtube-header-line {
        flex-wrap: wrap;
    }
    
    .mnew-youtube-logo-small {
        width: 35px;
    }
    
    .mnew-youtube-title-inline {
        font-size: 1.35rem;
		letter-spacing: -0.05rem;
    }
    
    .mnew-youtube-pricing-highlight {
        flex-direction: row !important;
        gap: 1rem;
        padding: 1.25rem;
    }
    
    .mnew-youtube-arrow-big {
        transform: rotate(0deg) !important;
        font-size: 1.5rem;
    }
    
    .mnew-youtube-price-before,
    .mnew-youtube-price-after {
        flex: 1;
        text-align: center;
    }
    
    .mnew-youtube-price-original {
        font-size: 1rem;
    }
    
    .mnew-youtube-price-sale {
        font-size: 1.5rem;
    }
    
    
    .mnew-youtube-features-row {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .mnew-youtube-feature-card {
        max-width: 100%;
    }
    
    .mnew-youtube-cta-compact {
        font-size: 0.9375rem;
        padding: 0.875rem 1.5rem;
    }
}

/* ========== 9. 신뢰성 & 안전 섹션 ========== */
.mnew-trust-section {
    padding: 4rem 0;
    background: #f8f9fb;
}

.mnew-trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.mnew-trust-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 0.5rem 1.5rem rgba(22, 28, 45, 0.08);
}

.mnew-trust-icon {
    width: 60px;
    height: 60px;
    background: #e8f0ff;
    color: #3772ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.mnew-trust-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #333;
    line-height: 1.5;
}

.mnew-trust-info {
    text-align: center;
    margin-top: 2rem;
    color: #666;
}

.mnew-trust-info p {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}


/* ========== 10. 최종 CTA ========== */
.mnew-final-cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, #3772ff 0%, #084aea 100%);
    text-align: center;
}

.mnew-final-cta h2 {
    color: white;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    letter-spacing: -0.05rem;
}


/* PC/태블릿에서는 줄바꿈 숨김 */
.mnew-mobile-br {
    display: none;
}

/* PC에서는 span 구조 무시 */
.mnew-cta-line2 {
    display: contents;
}

.mnew-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.mnew-cta-primary,
.mnew-cta-secondary {
    padding: 1.25rem 3rem;
    border-radius: 1rem;
    font-size: 1.125rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.mnew-cta-primary {
    background: white;
    color: #3772ff;
}

.mnew-cta-primary:hover {
    background: #f0f4ff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

.mnew-cta-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.mnew-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}


/* ========== 최종 CTA - 반응형 ========== */
@media (max-width: 768px) {
	.mnew-final-cta {
		padding: 2.5rem 0 2.8rem;
	}
	
	.mnew-live-feed {
        flex-direction: column;
        gap: 0.75rem;
        padding: 1rem;
    }
    
    .mnew-calculator-container {
        padding: 2rem 1.5rem;
    }
    
    .mnew-section-title {
        font-size: 1.5rem;
    }
    
    .mnew-ott-selector {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .mnew-combo-grid {
        grid-template-columns: 1fr;
    }
    
    .mnew-cta-buttons {
        flex-direction: column;
    }
    
    .mnew-cta-primary,
    .mnew-cta-secondary {
        width: 100%;
    }
}

/* ========== 유틸리티 클래스 ========== */
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.d-flex { display: flex; }
.align-items-center { align-items: center; }
.fw-semibold { font-weight: 500; }
.fw-normal { font-weight: 400; }
.fw-bold { font-weight: 600; }
/* NEW 뱃지 모바일 대응 */
@media (max-width: 768px) {
    .mnew-mini-badge {
        font-size: 0 !important;
        display: inline-block !important;
        padding: 2px 4px !important;
    }
    
    .mnew-mini-badge::before {
        display: inline-block;
        content: 'N';
        font-size: 0.5rem;
        font-weight: 500;
    }
    
    .mnew-savings-icon {
        font-size: 1.5rem;
    }
    
    .mnew-savings-line1 {
        font-size: 0.85rem;
    }
    
    .mnew-savings-line2 {
        font-size: 0.95rem;
    }
}

/* ========================================
   실시간 라이브 피드 - 통합 & 개선 버전
   ======================================== */

/* 컨테이너 - 우측 하단 고정 */
.live-feed-toast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 9999;
    pointer-events: none;
}

/* 카드 - 기본 상태 (숨김) */
.live-feed-card {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-radius: 1rem;
    padding: 1rem 1.25rem;
    box-shadow: 0 8px 32px rgba(22, 28, 45, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.8);
    min-width: 250px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    
    /* 초기 상태 - 화면 밖 */
    transform: translateX(150%);
    opacity: 0;
    transition: all 0.5s ease-in-out;
}

/* 보이는 상태 (JavaScript로 제어) */
.live-feed-card.show {
    transform: translateX(0);
    opacity: 1;
}

/* LIVE 뱃지 */
.live-feed-badge {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
    color: white;
    padding: 0.35rem 0.55rem;
    border-radius: 0.5rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    flex-shrink: 0;
}

/* 라이브 도트 - 깜빡임 */
.live-dot {
    width: 6px;
    height: 6px;
    background: #38ff6c;
    border-radius: 50%;
    animation: pulse 1s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.4;
        transform: scale(0.8);
    }
}

/* 콘텐츠 영역 */
.live-feed-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
}

/* 아이콘 */
.live-feed-icon {
    font-size: 1.75rem;
    flex-shrink: 0;
}

/* 텍스트 영역 */
.live-feed-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.live-feed-message {
    font-size: 0.9375rem;
    color: #333;
    font-weight: 500;
    line-height: 1.4;
}

/* 시간 표시 */
.live-feed-time {
    font-size: 0.75rem;
    color: #999;
    font-weight: 400;
}

/* ========== 모바일 반응형 ========== */
@media (max-width: 768px) {
    .live-feed-toast {
        bottom: 1rem;
        right: 1rem;
        left: 1rem;
        display: flex;
        justify-content: center;
    }
    
    .live-feed-card {
        min-width: auto;
        max-width: 100%;
        padding: 0.6rem 1.2rem;
    }
    
    /* 모바일에서는 하단에서 슬라이드 */
    .live-feed-card {
        transform: translateY(150%);
    }
    
    .live-feed-card.show {
        transform: translateY(0);
    }
    
    .live-feed-badge {
        font-size: 0.65rem;
        padding: 0.3rem 0.55rem;
    }
    
    .live-feed-icon {
        font-size: 1.5rem;
    }
    
    .live-feed-message {
        font-size: 0.875rem;
    }
    
    .live-feed-time {
        font-size: 0.7rem;
    }
}

/* ========== 다크모드 대응 ========== */
@media (prefers-color-scheme: dark) {
    .live-feed-card {
        background: rgba(30, 30, 30, 0.98);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .live-feed-message {
        color: #f0f0f0;
    }
}/* ========================================
   인기 컨텐츠 섹션
   ======================================== */

.popular-content-section {
    padding: 2.5rem 0 5rem;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.popular-content-header {
    text-align: center;
    margin-bottom: 2rem;
}

.popular-content-header .section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
}

.popular-content-header .section-subtitle {
    font-size: 1.125rem;
    color: #666;
    font-weight: 400;
}

.popular-content-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.content-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
}

.content-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.content-image {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.content-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.content-card:hover .content-image img {
    transform: scale(1.05);
}

.content-badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    display: flex;
    gap: 0.5rem;
}

.badge-rank {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    color: white;
    padding: 0.375rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(255, 107, 107, 0.3);
}

.content-info {
    padding: 1.25rem;
}

.content-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.content-desc {
    font-size: 0.875rem;
    color: #666;
    margin-bottom: 0.75rem;
    display: -webkit-box;              /* ✅ Flexbox처럼 줄 제한 가능하게 */
	-webkit-line-clamp: 2;             /* ✅ 최대 2줄까지만 표시 */
	-webkit-box-orient: vertical;
	overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal; 
}

/* OTT 정보 (새로 추가) */
.content-ott-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.3rem;
	justify-content: space-between;
}

.content-ott-info img {
    width: 24px;
    height: 24px;
    border-radius: 4px;
}

.content-ott-info span {
    font-size: 0.875rem;
    color: #333;
    font-weight: 600;
}

.content-meta {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.meta-item {
    font-size: 0.8125rem;
    color: #999;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.popular-content-footer {
    text-align: center;
}

.btn-view-more {
    background: linear-gradient(135deg, #3772ff 0%, #2959cc 100%);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 2rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(55, 114, 255, 0.3);
}

.btn-view-more:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(55, 114, 255, 0.4);
}

.btn-view-more i {
    font-size: 1.25rem;
}

.footer-note {
    margin-top: 1rem;
    font-size: 0.875rem;
    color: #999;
}

/* 모바일 반응형 */
@media (max-width: 1200px) {
    .popular-content-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .popular-content-section {
        padding: 3rem 0;
    }

    .popular-content-header .section-title {
        font-size: 1.5rem;
    }

    .popular-content-header .section-subtitle {
        font-size: 0.875rem;
    }

    .popular-content-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .content-image {
        height: 200px;
    }

    .btn-view-more {
        width: 100%;
        justify-content: center;
    }
	.footer-note {
		font-size: 0.75rem;
	}
}

@media (max-width: 480px) {
    .popular-content-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.75rem;
            white-space: normal !important;
    }

	.footer-note {
		font-size: 0.65rem;
	}
}


/* ========================================
   신뢰성 & 안전 섹션 (개선)
   ======================================== */

.trust-section-improved {
    padding: 5rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
        white-space: normal !important;
    }

.trust-section-improved .section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 0.75rem;
        white-space: normal !important;
    }

.trust-section-improved .section-subtitle {
    font-size: 1.125rem;
    color: #666;
    text-align: center;
    margin-bottom: 3rem;
        white-space: normal !important;
    }

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
        white-space: normal !important;
    }

.trust-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
        white-space: normal !important;
    }

.trust-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
        white-space: normal !important;
    }

.trust-image {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3772ff 0%, #5a8fff 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 16px rgba(55, 114, 255, 0.2);
        white-space: normal !important;
    }

.trust-image svg {
    width: 40px;
    height: 40px;
    color: white;
        white-space: normal !important;
    }

.trust-content {
    width: 100%;
        white-space: normal !important;
    }

.trust-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
        white-space: normal !important;
    }

.trust-desc {
    font-size: 0.88rem;
    color: #666;
    line-height: 1.6;
        white-space: normal !important;
    }

.trust-info {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    background: #f8f9fa;
    border-radius: 1rem;
        white-space: normal !important;
    }

.trust-info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    color: #666;
        white-space: normal !important;
    }

.trust-info-item i {
    font-size: 1.25rem;
    color: #3772ff;
        white-space: normal !important;
    }

/* 모바일 반응형 */
@media (max-width: 1024px) {
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
            white-space: normal !important;
    }
        white-space: normal !important;
    }

@media (max-width: 768px) {
    .trust-section-improved {
        padding: 3rem 0;
            white-space: normal !important;
    }

    .trust-section-improved .section-title {
        font-size: 1.5rem;
            white-space: normal !important;
    }

    .trust-section-improved .section-subtitle {
        font-size: 0.875rem;
            white-space: normal !important;
    }

    .trust-grid {
        gap: 1rem;
            white-space: normal !important;
    }

    .trust-card {
        padding: 1.5rem 1rem;
            white-space: normal !important;
    }

    .trust-image {
        width: 60px;
        height: 60px;
            white-space: normal !important;
    }

    .trust-image svg {
        width: 30px;
        height: 30px;
            white-space: normal !important;
    }

    .trust-info {
        flex-direction: column;
        gap: 1rem;
            white-space: normal !important;
    }
        white-space: normal !important;
    }

@media (max-width: 480px) {
	.trust-grid {
        margin-bottom: 0rem;
		grid-template-columns: 1fr;
            white-space: normal !important;
    }
        white-space: normal !important;
    }
	

/* ========================================
   순환 통계 애니메이션
   ======================================== */

.mnew-rotating-stat {
    position: relative;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
        white-space: normal !important;
    }

.mnew-stat-item {
    position: absolute;
    width: 100%;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
    pointer-events: none;
        white-space: normal !important;
    }

.mnew-stat-item.mnew-active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
        white-space: normal !important;
    }

.mnew-stat-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    margin: 0;
        white-space: normal !important;
    }

.mnew-stat-number {
    color: #ffd700 !important;  /* 골드색 강제 적용 */
    color: #3772ff;
    font-weight: 700;
    font-size: 1.75rem;
        white-space: normal !important;
    }

/* 모바일 반응형 */
@media (max-width: 768px) {
    .mnew-rotating-stat {
        min-height: 80px;
            white-space: normal !important;
    }
    
    .mnew-stat-item h3 {
        font-size: 1.25rem;
        line-height: 1.6;
            white-space: normal !important;
    }
    
    .mnew-stat-number {
    color: #ffd700 !important;  /* 골드색 강제 적용 */
        font-size: 1.5rem;
            white-space: normal !important;
    }
        white-space: normal !important;
    }


/* ========================================
   최종 CTA 카운트업 애니메이션
   ======================================== */

.mnew-final-cta h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2rem;
    line-height: 1.4;
        white-space: normal !important;
    }    /* 모바일에서만 줄바꿈 표시 */
    .mnew-mobile-br {
        display: inline !important;
    }
    
    /* 두 번째 줄은 줄바꿈 금지 */
    .mnew-cta-line2 {
        display: block !important;
        text-align: center !important;
        width: 100% !important;
    }
}

.mnew-cta-amount {
    color: #3772ff;
    font-size: 2.75rem;
    font-weight: 800;
    display: inline-block;
    min-width: 150px;
    text-align: center;
    transition: all 0.1s ease;
}

/* 숫자가 변할 때 살짝 튀는 효과 */
@keyframes numberPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.mnew-cta-amount.animating {
    animation: numberPulse 0.3s ease;
}

/* 모바일 반응형 */
@media (max-width: 768px) {
    .mnew-final-cta h2 {
        font-size: 1.3rem;
    }
    
    .mnew-cta-amount {
        font-size: 2rem;
        min-width: 120px;
    }
}

@media (max-width: 480px) {
    .mnew-final-cta h2 {
        font-size: 1.25rem;
        line-height: 1;
            white-space: normal !important;
    }    /* 모바일에서만 줄바꿈 표시 */
    .mnew-mobile-br {
        display: inline !important;
    }
    
    /* 두 번째 줄은 줄바꿈 금지 */
    .mnew-cta-line2 {
        display: block !important;
        text-align: center !important;
        width: 100% !important;
    }
}
    
    .mnew-cta-amount {
        font-size: 1.75rem;
        
        display: inline-block;
        
    }
}
/* ========================================
   순환 통계 색상 수정 + 롤링 효과
   ======================================== */

/* 기존 스타일 수정 */
.mnew-stat-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;  /* 흰색으로 변경! */
    margin: 0;
}

.mnew-stat-number {
    color: #ffd700;  /* 밝은 골드색으로 변경! */
    font-weight: 700;
    font-size: 1.75rem;
}

/* 롤링 효과를 위한 컨테이너 */
.rolling-container {
    display: inline-block;
    position: relative;
    vertical-align: middle;
    min-width: 120px;
}

.rolling-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #ffd700;
    font-weight: 700;
    font-size: 1.75rem;
}

.rolling-item .ott-icon {
    font-size: 1.5rem;
}

.rolling-item .ott-name {
    display: inline-block;
}
}

.mnew-cta-amount {
    color: #ffd700;  /* 밝은 골드색 */
}


/* 모바일 반응형 */
@media (max-width: 768px) {
    .rolling-container {
        min-width: 80px;
    }
    
    .rolling-item {
        font-size: 1.5rem;
    }
    
    .rolling-item .ott-icon {
        font-size: 1.25rem;
    }
}
/* ========================================
   text-shadow 제거 & 롤링 스타일 개선
   ======================================== */

/* 순환 통계 - text-shadow 제거 */
.mnew-stat-number {
    color: #ffd700 !important;
    font-weight: 700;
    font-size: 1.5rem;
    /* text-shadow 제거! */
}

/* 최종 CTA - text-shadow 제거 */
.mnew-cta-amount {
    color: #ffd700;
    font-size: 2.75rem;
    font-weight: 800;
    display: inline-block;
    min-width: 150px;
    text-align: center;
    /* text-shadow 제거! */
}

/* 롤링 컨테이너 개선 */
.rolling-container {
    display: inline-block;
    position: relative;
    min-width: 120px;
    vertical-align: middle;
}

.rolling-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #ffd700;
    font-weight: 700;
    font-size: 1.75rem;
    opacity: 1;
    transform: translateY(0);
    transition: all 0.3s ease;
}

.rolling-item .ott-icon {
    font-size: 1.5rem;
}

.rolling-item .ott-name {
    display: inline-block;
}

/* 모바일 반응형 */
@media (max-width: 768px) {
    .mnew-cta-amount {
        font-size: 2rem;
        min-width: 120px;
    }
    
    .rolling-container {
        min-width: 100px;
    }
    
    .rolling-item {
        font-size: 1.5rem;
    }
    
    .rolling-item .ott-icon {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .mnew-cta-amount {
        font-size: 1.75rem;
        
        display: inline-block;
        
    }
}

/* ========================================
   깜빡이는 효과 (부드러운 페이드)
   ======================================== */

.blink-txt {
    display: inline-flex;
    align-items: center;
    color: #fff;
    font-weight: 400;
    font-size: 1.5rem;
	margin: 0 15px;
}

.blink-effect {
    display: inline-flex;
    align-items: center;
    color: #ffd700;
    font-weight: 700;
    font-size: 1.5rem;  /* 흰색 텍스트와 동일 */
}

.blink-effect .ott-name,
.blink-effect .time-text {
    display: inline-block;
    color: #ffd700;  /* 노란색 통일! */
}

/* 모바일 */
@media (max-width: 768px) {
    .blink-effect {
        font-size: 1.5rem;  /* 흰색 텍스트와 동일 */
    }
    .blink-effect .ott-icon {
        font-size: 1.25rem;
    }
}
/* ========== 공지사항 롤링 배너 ========== */
.mnew-notice-section {
    background: #0d3777;
    position: relative;
    width: 100%;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.5s ease-out, opacity 0.5s ease-out, padding 0.5s ease-out;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.mnew-notice-section.show {
    max-height: 100px;
    opacity: 1;
    padding: 0.5rem 0;
}

.mnew-notice-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    position: relative;
}

/* X 버튼 스타일 */
.mnew-notice-close-btn {
    position: absolute;
    right: 1rem;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.mnew-notice-close-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.mnew-notice-icon {
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
    animation: shake 2s ease-in-out infinite;
}

@keyframes shake {
    0%, 100% { transform: rotate(0deg); }
    10%, 30%, 50%, 70%, 90% { transform: rotate(-10deg); }
    20%, 40%, 60%, 80% { transform: rotate(10deg); }
}

.mnew-notice-content {
    overflow: hidden;
    height: 28px;
    display: flex;
    justify-content: center;
}

.mnew-notice-list {
    /* 애니메이션 제거 - JS로 제어 */
}

.mnew-notice-item {
    height: 28px;
    display: none; /* 기본적으로 숨김, JS가 제어 */
    align-items: center;
    gap: 0.625rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mnew-notice-item:hover {
    opacity: 0.8;
    transform: translateX(5px);
}

.mnew-notice-badge {
    background: white;
    color: #667eea;
    padding: 0.1rem 0.7rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
}

.mnew-notice-text {
    color: white;
    font-size: 0.9375rem;
    font-weight: 500;
    white-space: nowrap;
}

/* 공지사항 팝업 */
.mnew-notice-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mnew-notice-popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.mnew-notice-popup-content {
    position: relative;
    background: white;
    border-radius: 1.25rem;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    animation: popupSlideUp 0.3s ease-out;
}

@keyframes popupSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mnew-notice-popup-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    border-bottom: 1px solid #eee;
}

.mnew-notice-popup-header h3 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
}

.mnew-notice-popup-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #999;
    transition: all 0.3s ease;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mnew-notice-popup-close:hover {
    color: #333;
    transform: rotate(90deg);
}

.mnew-notice-popup-body {
    padding: 1.5rem;
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #333;
}

.mnew-notice-popup-body p {
    margin: 0 0 1rem 0;
}

.mnew-notice-popup-body p:last-child {
    margin-bottom: 0;
}

.mnew-notice-popup-footer {
    padding: 1rem 1.5rem;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: flex-end;
}

.mnew-notice-popup-confirm {
    background: #667eea;
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mnew-notice-popup-confirm:hover {
    background: #5568d3;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

/* ========== 공지사항 닫기 확인 모달 ========== */
.mnew-notice-alert-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mnew-notice-alert-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.mnew-notice-alert-content {
    position: relative;
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    animation: alertSlideUp 0.3s ease-out;
    text-align: center;
}

@keyframes alertSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mnew-notice-alert-title {
    margin: 0 0 1.5rem 0;
    font-size: 1.125rem;
    font-weight: 700;
    color: #1a1a1a;
}

.mnew-notice-alert-buttons {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
}

.mnew-notice-alert-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
    max-width: 180px;
}

.mnew-notice-alert-cancel {
    background: #f5f5f5;
    color: #666;
}

.mnew-notice-alert-cancel:hover {
    background: #e0e0e0;
    transform: translateY(-2px);
}

.mnew-notice-alert-confirm {
    background: #667eea;
    color: white;
}

.mnew-notice-alert-confirm:hover {
    background: #5568d3;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

/* ========== 유튜브 영상 팝업 ========== */
.mnew-video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mnew-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
}

.mnew-video-container {
    position: relative;
    width: 90%;
    max-width: 1000px;
    animation: videoFadeIn 0.4s ease-out;
}

@keyframes videoFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.mnew-video-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 2rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.mnew-video-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.mnew-video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 1rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.mnew-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 1rem;
}

/* ========== 히어로 섹션 애니메이션 ========== */
.content1 {
    animation: heroFadeIn 1s ease-out;
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.content1 h2,
.content1 h3 {
    animation: textSlideIn 0.8s ease-out;
}

@keyframes textSlideIn {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.content1 .btn-style,
.content1 .btn-style2 {
    animation: buttonBounce 1s ease-out 0.5s both;
}

@keyframes buttonBounce {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    60% {
        transform: translateY(-5px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.content1 .imgArea img {
    animation: floatImage 3s ease-in-out infinite;
}

@keyframes floatImage {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* 모바일 대응 */
@media (max-width: 768px) {
    .mnew-notice-section {
        padding: 0;
    }
    
    .mnew-notice-content {
        height: 24px;
    }
    
    .mnew-notice-item {
        height: 24px;
    }
    
    .mnew-notice-text {
        font-size: 0.8125rem;
    }
    
    .mnew-notice-close-btn {
        width: 24px;
        height: 24px;
        font-size: 1rem;
        right: 0.5rem;
    }
    
    .mnew-notice-alert-content {
        width: 95%;
        padding: 1.5rem;
    }
    
    .mnew-notice-alert-title {
        font-size: 1rem;
        margin-bottom: 1.25rem;
    }
    
    .mnew-notice-alert-buttons {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .mnew-notice-alert-btn {
        max-width: 100%;
        width: 100%;
    }
    
    .mnew-video-close {
        top: -45px;
        width: 36px;
        height: 36px;
        font-size: 1.5rem;
    }
    
    .mnew-video-container {
        width: 95%;
    }
    
    .mnew-notice-popup-content {
        width: 100%;
        max-width: 100%;
        height: 100vh;
        max-height: 100vh;
        border-radius: 0;
    }
}
/* ========== 스크롤 인터랙션 ========== */
/* 초기 상태: 숨김 */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* 나타난 상태 */
.scroll-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* 다양한 딜레이 */
.scroll-reveal-delay-1 {
    transition-delay: 0.1s;
}

.scroll-reveal-delay-2 {
    transition-delay: 0.2s;
}

.scroll-reveal-delay-3 {
    transition-delay: 0.3s;
}

/* 좌우에서 나타나는 효과 */
.scroll-reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.scroll-reveal-left.is-visible {
    opacity: 1;
    transform: translateX(0);
}

.scroll-reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.scroll-reveal-right.is-visible {
    opacity: 1;
    transform: translateX(0);
}

/* 확대 효과 */
.scroll-reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.scroll-reveal-scale.is-visible {
    opacity: 1;
    transform: scale(1);
}

/* ========== 섹션별 상세 모션 ========== */

/* 5. 인기컨텐츠 - 순위별 순차 등장 (아래→위) */
.popular-content-section .content-card {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.popular-content-section .content-card.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.popular-content-section .content-card:nth-child(1) { transition-delay: 0.1s; }
.popular-content-section .content-card:nth-child(2) { transition-delay: 0.2s; }
.popular-content-section .content-card:nth-child(3) { transition-delay: 0.3s; }
.popular-content-section .content-card:nth-child(4) { transition-delay: 0.4s; }

/* 6. 에브리뷰의 차별점 */
/* 전체 박스 펄스 효과 */
.mnew-comparison-right {
    animation: none;
}

.mnew-comparison-right.is-visible {
    animation: boxPulse 0.6s ease-out;
}

@keyframes boxPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* 항목 순차 등장 (위→아래) */
.mnew-comparison-right .mnew-comparison-item {
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.mnew-comparison-right .mnew-comparison-item.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.mnew-comparison-right .mnew-comparison-item:nth-child(2) { transition-delay: 0.1s; }
.mnew-comparison-right .mnew-comparison-item:nth-child(3) { transition-delay: 0.2s; }
.mnew-comparison-right .mnew-comparison-item:nth-child(4) { transition-delay: 0.3s; }
.mnew-comparison-right .mnew-comparison-item:nth-child(5) { transition-delay: 0.4s; }
.mnew-comparison-right .mnew-comparison-item:nth-child(6) { transition-delay: 0.5s; }

/* 7. 추천조합 - 순위별 순차 등장 */
.mnew-combo-card {
    opacity: 0 !important;
    transform: translateY(40px) !important;
    transition: opacity 0.6s ease-out, transform 0.6s ease-out !important;
}

.mnew-combo-card.is-visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* 순차 등장 딜레이 - 빠르게 */
.mnew-combo-card.is-visible:nth-child(1) { 
    transition-delay: 0s !important; 
}
.mnew-combo-card.is-visible:nth-child(2) { 
    transition-delay: 0.2s !important; 
}
.mnew-combo-card.is-visible:nth-child(3) { 
    transition-delay: 0.4s !important; 
}

/* 8. 유튜브 - 내용만 간단히 */
.mnew-youtube-container {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.mnew-youtube-container.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* 9. 안전하고 투명 - 카드만 순차 */
.trust-card {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.trust-card.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.trust-card:nth-child(1) { transition-delay: 0.1s; }
.trust-card:nth-child(2) { transition-delay: 0.2s; }
.trust-card:nth-child(3) { transition-delay: 0.3s; }
.trust-card:nth-child(4) { transition-delay: 0.4s; }/* ============================================================
   반응형 디자인 - 태블릿 및 모바일 최적화
   PC 버전(1200px 이상)은 기존 스타일 유지
   ============================================================ */

/* ========================================
   태블릿 (1024px 이하)
   ======================================== */
@media (max-width: 1024px) {
    
    /* 전체 컨테이너 패딩 조정 */
    .ctrArea {
        padding: 0 2rem;
    }
    
    /* Hero 섹션 */
    
	.content1 ul {
		display:flex; 
		justify-content:space-between; 
		align-items:center;
		gap: 2rem;
	}
	
    .content1 .ctrArea > ul > li {
        width: 100%;
        text-align: center;
    }
    
    .content1 .imgArea {
        order: -1;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .content1 h2 {
        font-size: 1.8rem;
    }
    
    .content1 h3 {
        font-size: 1.4rem;
    }
    
    /* 절약 계산기 */
    .mnew-calculator-layout {
        flex-direction: column;
        gap: 2rem;
    }
    
    .mnew-calculator-container {
        padding: 2rem;
    }
    
    /* 비교 우위 섹션 */
    .mnew-comparison-container {
        flex-direction: column;
    }
    
    /* 인기 조합 */
    .mnew-combo-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ========================================
   모바일 (768px 이하)
   ======================================== */
@media (max-width: 768px) {
    
    /* 전체 컨테이너 패딩 조정 */
    .ctrArea {
        padding: 0 1.25rem;
    }
    
    /* 섹션 타이틀 */
    .mnew-section-title {
        font-size: 1.5rem;
        margin-top: 1rem;
    }
    
    .mnew-section-subtitle {
        font-size: 1rem;
    }
    
    /* ========== 공지사항 롤링 배너 ========== */
    .mnew-notice-section {
        padding: 0;
    }
    
    .mnew-notice-container {
        gap: 0.5rem;
        padding: 0.2rem 0;
    }
    
    .mnew-notice-icon {
        font-size: 1rem;
    }
    
    .mnew-notice-text {
        font-size: 0.813rem;
    }
    
    .mnew-notice-badge {
        font-size: 0.688rem;
        padding: 0.125rem 0.375rem;
    }
    
    /* ========== Hero 섹션 ========== */
    .content1 {
        padding: 2rem 0;
    }
    
    .content1 h2 {
        font-size: 1.5rem;
    }
    
    .content1 h3 {
        font-size: 1.2rem;
    }
    
    .content1 .card-body h2 {
        font-size: 1.3rem;
    }
    
    .content1 .card-body h5 {
        font-size: 0.95rem;
    }
    
    .content1 .imgArea {
        max-width: 300px;
    }
    
    .btn-style {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }
    
    /* ========== 실시간 라이브 피드 ========== */
    .mnew-live-feed {
        gap: 0.75rem;
        padding: 0.5rem 0.75rem;
    }
    
    .mnew-live-badge {
        font-size: 0.75rem;
        padding: 0.375rem 0.75rem;
    }
    
    .mnew-feed-item {
        font-size: 0.875rem;
    }
    
    /* ========== 절약 계산기 ========== */
    .mnew-calculator-section {
        padding: 2rem 0 3rem;
    }
    
    .mnew-calculator-container {
        padding: 1.5rem;
        border-radius: 1.25rem;
    }
    
    .mnew-ott-selector-left {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.625rem;
        width: 100%;
    }
    
    .mnew-ott-checkbox-row {
        padding: 0.875rem !important;
        width: 100% !important;
        min-width: 0 !important;
        justify-content: flex-start !important;
        gap: 0.75rem !important;
        box-sizing: border-box !important;
    }
    
    .mnew-ott-checkbox-row .mnew-ott-info {
        flex: 1 1 auto !important;
        min-width: 0;
    }
    
    .mnew-checkbox-circle {
        margin-left: auto !important;
        flex-shrink: 0 !important;
    }
    
    .mnew-ott-checkbox-row img {
        width: 32px;
        height: 32px;
    }
    
    .mnew-ott-name {
        font-size: 0.938rem;
    }
    
    .mnew-ott-price {
        font-size: 0.813rem;
    }
    
    /* 우측 결과 영역 */
    .mnew-result-right {
        padding: 1.5rem;
    }
    
    .mnew-result-title {
        font-size: 1.125rem;
    }
    
    .mnew-result-amount {
        font-size: 2rem;
    }
    
    .mnew-result-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    /* 개별 구독 시 행 - 세로 중간 정렬 */
    .mnew-result-row.mnew-subtle-row {
        align-items: center;
        margin-top: 0.5rem;
        padding: 0.5rem 0;
        font-size: 1.125rem;
    }
    
    .mnew-result-label {
        margin-left: 1.4rem;
        font-size: 0.8rem;
    }
    
    .mnew-result-value {
        margin-right: 1.6rem;
        font-size: 0.9rem;
    }
    
    /* ========== 인기 컨텐츠 ========== */
    .popular-content-section {
        padding: 2rem 0 4rem;
    }
    
    .content-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem;
    }
    
    .content-card {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .content-image {
        width: 100%;
        height: 240px;
        flex-shrink: 0;
        object-fit: cover;
    }
    
    .content-title {
        font-size: 1.125rem;
    }
    
    .content-desc {
        font-size: 0.875rem;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
	
	.badge-rank {
		background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
		color: white;
		padding: 0.2rem 0.5rem;
		border-radius: 0.5rem;
		font-size: 0.75rem;
		font-weight: 700;
		box-shadow: 0 2px 8px rgba(255, 107, 107, 0.3);
	}
		
	.content-card {
		border-radius: 0.5rem;
	}
	
	.content-ott-info img {
		width: 20px;
		height: 20px;
		border-radius: 4px;
	}

	.content-ott-info span {
		font-size: 0.75rem;
		color: #333;
		font-weight: 600;
	}
	
	
	
    
    /* ========== 순환 통계 ========== */
    .stats-section {
        padding: 2rem 0;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-card {
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 1rem;
    }
	
	.mnew-stats-section {
		padding: 1.5rem 0;
	}

	.mnew-stat-item h3 {
		font-size: 1rem;
	}
	
    
    /* ========== 비교 우위 ========== */
    .mnew-comparison-section {
        padding: 3.5rem 0 2rem;
    }
	
	.mnew-comparison-subtitle {
		font-size: 0.875rem;
		color: #999;
		text-align: center;
		margin-bottom: 2rem;
	}
    
    .mnew-comparison-container {
        display: flex !important;
        flex-direction: column !important;
        gap: 0rem !important;
        max-width: 100% !important;
        padding: 0;
    }
    
    .mnew-comparison-left {
        padding: 1.5rem;
        width: 100%;
        box-sizing: border-box;
    }
    
    .mnew-comparison-right {
        padding: 1.5rem;
        width: 100%;
        box-sizing: border-box;
    }
    
    .mnew-comparison-vs {
        font-size: 1.5rem !important;
        font-weight: 800 !important;
        padding: 0.75rem 0 !important;
        text-align: center !important;
        order: 0 !important;
        display: block !important;
        color: #bdbbbb !important;
    }
    
    .mnew-comparison-left {
        order: -1;
    }
    
    .mnew-comparison-right {
        order: 1;
    }
    
    .mnew-comparison-side-title {
        font-size: 1.125rem;
        margin-bottom: 1rem;
    }
    
    .mnew-comparison-item {
        gap: 0.5rem;
        padding: 0.5rem 0;
    }
    
    .mnew-comparison-text {
        font-size: 0.875rem;
    }
    
    .mnew-comparison-icon-red,
    .mnew-comparison-icon-gray,
    .mnew-comparison-icon-green {
        width: 20px;
        height: 20px;
        font-size: 0.75rem;
    }
    
    /* ========== 인기 조합 ========== */
    .mnew-combo-section {
        padding: 2rem 0;
    }
    
    .mnew-combo-list {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .mnew-combo-card {
        padding: 1.25rem;
    }
    
    .mnew-combo-rank {
        font-size: 0.875rem !important;
        width: 36px !important;
        height: 36px !important;
        padding: 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        line-height: 1 !important;
    }
    
    .mnew-combo-logos {
        gap: 0.5rem;
        flex-wrap: wrap;
    }
    
    .mnew-combo-logos img {
        width: 36px;
        height: 36px;
    }
    
    .mnew-combo-price-original {
        font-size: 0.875rem;
    }
    
    .mnew-combo-price-sale {
        font-size: 1.25rem;
    }
    
	.mnew-popular-note {
		color: #666;
		font-size: 0.75rem;
	}
	
	
    /* ========== 유튜브 특별 ========== */

	.mnew-youtube-header-line {
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 0.5rem;
		margin-bottom: 0.75rem;
	}

	.mnew-youtube-new-badge-inline {
		background: #007eff;
		color: white;
		padding: 0.2rem 0.4rem;
		border-radius: 1.25rem;
		font-size: 0.6rem;
		font-weight: 500;
		box-shadow: 0 2px 8px ;
	}

	/* 두번째 줄: 서브 메시지 */
	.mnew-youtube-subtitle-compact {
		font-size: 0.875rem;
	}
	
	
	.mnew-youtube-section {
        padding: 2rem 0;
    }
    
    .mnew-youtube-container {
        flex-direction: column;
        padding: 1.5rem;
    }
    
    .mnew-youtube-left {
        width: 100%;
        max-width: none;
        margin-bottom: 1.5rem;
    }
    
    .mnew-youtube-right {
        text-align: center;
    }
    
    .mnew-youtube-title {
        font-size: 1.25rem;
    }
    
    .mnew-youtube-desc {
        font-size: 0.938rem;
    }
    
    .mnew-youtube-features-row {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.75rem !important;
    }
    
    .mnew-youtube-feature-card,
    .mnew-youtube-feature-card2 {
        max-width: 100% !important;
        min-width: 0 !important;
    }
    
    /* ========== 신뢰성 & 안전 ========== */
    .trust-safety-section {
        padding: 2rem 0;
    }
    
    .trust-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem;
    }
    
    .trust-card {
        padding: 1.5rem;
    }
    
    .trust-card-title {
        font-size: 1.125rem;
    }
    
    .trust-card-desc {
        font-size: 0.875rem;
    }
	
	.trust-section-improved .section-subtitle {
		margin-bottom: 2rem;
	}

	.trust-title {
		font-size: 1.1rem;
		font-weight: 700;
		color: #1a1a1a;
		margin-bottom: 0.75rem;
		letter-spacing: -0.05rem;
	}

	.trust-desc {
		font-size: 0.7rem;
		color: #666;
		line-height: 1.6;
		letter-spacing: -0.05rem;
	}

	
    
    /* ========== 최종 CTA ========== */
    .final-cta-section {
        padding: 2rem 0 3rem;
    }
    
    /* ========== 공유 기능 섹션 ========== */
    .content4 {
        padding-top: 3.5rem !important;
    }
    
    .final-cta-title {
        font-size: 1.5rem;
    }
    
    .final-cta-subtitle {
        font-size: 0.938rem;
    }
    
    .final-cta-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .final-cta-btn {
        width: 100%;
        padding: 1rem;
        font-size: 1rem;
    }
}

/* ========================================
   작은 모바일 (480px 이하)
   ======================================== */
@media (max-width: 480px) {
    
    /* 전체 컨테이너 패딩 조정 */
    .ctrArea {
        padding: 0 1rem;
    }
    
    /* 섹션 타이틀 */
    .mnew-section-title {
        font-size: 1.4rem;
		letter-spacing: -0.1rem;
    }
    
    .mnew-section-subtitle {
        font-size: 0.875rem;
    }
    
    /* Hero 섹션 */
    .content1 h2 {
        font-size: 1.25rem;
    }
    
    .content1 h3 {
        font-size: 1rem;
    }
    
    .content1 .card-body h2 {
        font-size: 1.125rem;
    }
    
    .content1 .card-body h5 {
        font-size: 0.875rem;
    }
    
    /* 절약 계산기 */
    .mnew-calculator-container {
        padding: 1.25rem;
    }
    
    .mnew-ott-selector-left {
        grid-template-columns: 1fr;
    }
    
    /* 체크박스 숨김 - 작은 화면에서는 박스 자체가 선택형으로 보임 */
    .mnew-checkbox-circle {
        display: none;
    }
    
    /* 유튜브 NEW 뱃지 - 아이콘 우상단에 배치 */
    .mnew-ott-checkbox-row {
        position: relative;
    }
    
    .mnew-ott-checkbox-row .mnew-mini-badge {
        position: absolute;
        top: 0.6rem;
        left: 0.4rem;
        margin-left: 0;
        z-index: 1;
        font-size: 0.55rem;
        padding: 2px 5px;
    }
    
    /* 절약 금액 텍스트 중앙 정렬 */
    .mnew-savings-line1 {
        font-size: 0.813rem !important;
        display: flex !important;
        justify-content: center !important;
        gap: 0.25rem !important;
        line-height: 1.4 !important;
        text-align: center !important;
    }
    
    .mnew-savings-icon {
        font-size: 1rem !important;
    }
    
    .mnew-result-amount {
        font-size: 1.75rem;
    }
    
    .mnew-comparison-item {
        gap: 0.75rem;
    }
    
    /* 인기 컨텐츠 */
    .content-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.75rem !important;
    }
    
    .content-card {
        flex-direction: column !important;
    }
    
    .content-image {
        width: 100% !important;
        height: 200px !important;
    }
    
    .content-title {
        font-size: 1rem;
    }
    
    .content-desc {
        font-size: 0.813rem;
    }
    
    /* 통계 카드 */
    .stat-number {
        font-size: 1.75rem;
    }
    
    .stat-label {
        font-size: 0.938rem;
    }
    
    /* 인기 조합 */
    .mnew-combo-rank {
        font-size: 0.75rem !important;
        width: 30px !important;
        height: 30px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        line-height: 1 !important;
    }
    
    .mnew-combo-logos img {
        width: 32px;
        height: 32px;
    }
    
    .mnew-combo-price-sale {
        font-size: 1.125rem;
    }
    
    /* 유튜브 */
    .mnew-youtube-title {
        font-size: 1.125rem;
    }
    
    .mnew-youtube-desc {
        font-size: 0.875rem;
    }
    
    .mnew-youtube-features-row {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.625rem !important;
    }
    
    .mnew-youtube-feature-card,
    .mnew-youtube-feature-card2 {
        padding: 1rem 0.75rem !important;
    }
    
    .mnew-youtube-feature-card h3,
    .mnew-youtube-feature-card2 h3 {
        font-size: 0.938rem !important;
    }
    
    .mnew-youtube-feature-card p,
    .mnew-youtube-feature-card2 p {
        font-size: 0.813rem !important;
    }
    
    .mnew-youtube-pricing-highlight {
        flex-direction: row !important;
        gap: 0.5rem;
        padding: 1rem;
    }
    
    .mnew-youtube-price-before {
        flex: 0.7 !important;
    }
    
    .mnew-youtube-price-after {
        flex: 1.3 !important;
    }
    
    .mnew-youtube-arrow-big {
        transform: rotate(0deg) !important;
        font-size: 1.25rem;
        flex-shrink: 0;
    }
    
    .mnew-youtube-price-label {
        font-size: 0.75rem !important;
    }
    
    .mnew-youtube-price-original {
        font-size: 0.875rem;
    }
    
    .mnew-youtube-price-sale {
        font-size: 1.25rem;
    }
    
    /* 신뢰 섹션 */
    .trust-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.75rem !important;
    }
    
    .trust-card {
        padding: 1.25rem !important;
    }
    
    .trust-card-title {
        font-size: 1rem !important;
    }
    
    .trust-card-desc {
        font-size: 0.813rem !important;
    }
    
    /* 신뢰성 섹션 하단 정보 숨김 */
    .trust-info {
        display: none !important;
    }
    
    /* CTA 버튼 */
    .final-cta-btn,
    .mnew-cta-primary,
    .mnew-cta-secondary {
        padding: 0.75rem 1rem !important;
        font-size: 1rem !important;
    }
    
    .mnew-final-cta h2 {
        font-size: 1.3rem !important;
        line-height: 1.5 !important;
        word-break: keep-all !important;
        max-width: 220px !important;
        margin: 0 auto 2rem !important;
        white-space: normal !important;
    }    /* 모바일에서만 줄바꿈 표시 */
    .mnew-mobile-br {
        display: inline !important;
    }
    
    /* 두 번째 줄은 줄바꿈 금지 */
    .mnew-cta-line2 {
        display: block !important;
        text-align: center !important;
        width: 100% !important;
    }
}
    
    .mnew-cta-button-black,
    .mnew-youtube-cta-compact {
        padding: 0.75rem 1.25rem !important;
        font-size: 1rem !important;
    }
    
    
    /* 실시간 라이브 피드 - 네비바 위로 위치 조정 */
    .live-feed-toast {
        bottom: 4.5rem !important;
    }
}

/* ========================================
   추가 모바일 최적화
   ======================================== */
@media (max-width: 768px) {
    
    /* 숨김 처리 */
    .hidePc {
        display: block !important;
    }
    
    /* 테이블 반응형 */
    table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    /* 버튼 터치 영역 확대 */
    button,
    .btn-style,
    .mnew-notice-close-btn {
        min-height: 44px;
        min-width: 44px;
    }
    
    /* 입력 필드 최적화 */
    input[type="text"],
    input[type="email"],
    input[type="password"],
    textarea {
        font-size: 16px; /* iOS 줌 방지 */
    }
    
    /* 모달 반응형 */
    .mnew-notice-popup-content {
        width: 90%;
        max-width: 400px;
        padding: 1.5rem;
    }
    
    .mnew-notice-alert-content {
        width: 90%;
        max-width: 350px;
        padding: 1.5rem;
    }
}