/* ============================================================
   에브리뷰 V3 메인 프로토타입 스타일
   - 전량 신규 작성 / prefix: v3-main-
   - 기존 CSS(eview_v3.css, eview_new_sub.css) 미사용
   - 폰트 기준: 기본 대비 +1pt (본문 17px / 서브 15px / 캡션 14px)
   - 브랜드: 블루 #084aea / 오렌지 #FF6142 / 메인 #000 / 서브 #666
   ============================================================ */

html, body { margin: 0; padding: 0; }
.v3-main-wrap, .v3-main-wrap * { margin:0; padding:0; box-sizing:border-box; }
.v3-main-wrap {
    font-family: Pretendard, 'Noto Sans KR', 'Malgun Gothic', 'Apple SD Gothic Neo', sans-serif;
    font-size: 17px;               /* 기본 16 → 17 (+1pt) */
    line-height: 1.6;
    color: #000;
    background: #fff;
    letter-spacing: -0.01em;
    overflow-x: hidden;
}
.v3-main-wrap img { vertical-align: middle; }
.v3-main-wrap button { font-family: inherit; cursor: pointer; }
.v3-main-wrap a { text-decoration: none; color: inherit; }

/* 공통 컨테이너 / 섹션 */
.v3-main-inner { max-width: 1500px; margin: 0 auto; padding: 0 28px; }
.v3-main-w1200 { max-width: 1200px; }   /* 달라진점 / 뜨는서비스·기다리는파티 / 인기콘텐츠 / 유튜브 */
.v3-main-w900  { max-width: 900px; }    /* 안심비교 */
.v3-main-w1800 { max-width: 1800px; }   /* 열린파티 */
.v3-main-sec { padding: 88px 0; }
.v3-main-sec-title { font-size: 33px; font-weight: 800; line-height: 1.35; text-align: center; padding-right:16px; }
.v3-main-sec-sub { font-size: 18px; color: #666; text-align: center; margin-top: 12px; }

/* 공통 뱃지 */
.v3-main-badge {
    display: inline-flex; align-items: center; gap: 5px;
    font-size: 14px; font-weight: 700; line-height: 1;
    padding: 7px 12px; border-radius: 999px;
}
.v3-main-badge-verify { background: #e8effe; color: #084aea; }
.v3-main-badge-free  { background: #fff0ec; color: #FF6142; }

/* ------------------------------------------------------------
   S1. 히어로
   ------------------------------------------------------------ */
.v3-main-hero { padding: 96px 0 84px; background: linear-gradient(180deg, #f6f8fd 0%, #fff 100%); position: relative; overflow: hidden; }
.v3-main-hero .v3-main-inner { display: flex; flex-direction: column; align-items: center; text-align: center; position: relative; z-index: 2; }
/* 텍스트 가독성: 콘텐츠 뒤 화이트 글로우 (배경 아이콘 위에 깔림) */
.v3-main-hero .v3-main-inner::before {
    content: ""; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
    width: 78%; height: 115%; z-index: -1; pointer-events: none;
    background: radial-gradient(closest-side, rgba(255,255,255,.95) 25%, rgba(255,255,255,.65) 58%, rgba(255,255,255,0) 100%);
}

/* 히어로 배경 서비스 아이콘 - 롤링 텍스트 동기
   모션: 아래에서 등장(감속) → 거의 정지 상태로 느리게 드리프트 → 점차 가속하며 위로 소멸
   퇴장이 진행되는 동안 다음 워드의 아이콘이 겹쳐 등장 (지속시간은 JS에서 워드별 지정) */
.v3-main-hero-bg { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.v3-main-hero-bg-ico {
    --ico-op: .52;
    position: absolute; width: 110px; height: 110px; border-radius: 28px;   /* 텍스트(52px) 대비 약 2배 */
    background: #eef1f8; display: flex; align-items: center; justify-content: center;
    font-size: 44px; font-weight: 900; color: #b9c4de; overflow: hidden;
    filter: blur(1.8px); opacity: 0;
    animation: v3MainIcoLife 2.1s forwards;
    box-shadow: 0 10px 30px rgba(0,0,0,.10);
}
/* 근경(해당 서비스 대표): 선명하게 - 텍스트와 함께 주인공 역할 */
.v3-main-hero-bg-ico.v3-main-ico-near { --ico-op: .92; filter: blur(0); box-shadow: 0 16px 38px rgba(0,0,0,.16); }
.v3-main-hero-bg-ico img { width: 100%; height: 100%; object-fit: cover; }
/* 깊이감: near(선명·큼) / far(블러·작음) 2단 */
.v3-main-hero-bg-ico.v3-main-ico-far { --ico-op: .42; filter: blur(3.2px); }
/* 최후면 정적 레이어: 항상 희미하게 깔려있는 서비스 아이콘들 */
.v3-main-hero-bg-sico {
    position: absolute; border-radius: 22%;
    background: #eef1f8; display: flex; align-items: center; justify-content: center;
    font-weight: 900; color: #ccd5e8; overflow: hidden;
    filter: blur(4px); opacity: .13;
    animation: v3MainIcoBob 8s ease-in-out infinite;
}
.v3-main-hero-bg-sico img { width: 100%; height: 100%; object-fit: cover; }
/* 마지막 워드 정착 후 둥둥 드리프트 */
@keyframes v3MainIcoBob {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-13px); }
}
@keyframes v3MainIcoLife {
    0%   { transform: translateY(100px) scale(.9); opacity: 0;   animation-timing-function: cubic-bezier(.15,.65,.3,1); }
    24%  { transform: translateY(8px)   scale(1);  opacity: var(--ico-op, .52); animation-timing-function: linear; }
    58%  { transform: translateY(-10px) scale(1);  opacity: var(--ico-op, .52); animation-timing-function: cubic-bezier(.65,.05,.85,.4); }
    100% { transform: translateY(-130px) scale(1); opacity: 0; }
}

/* 히어로 CTA 호버 툴팁 - 삐뚤한 스티커형 말풍선 */
.v3-main-hero-btn { position: relative; }
.v3-main-hero-tip {
    position: absolute; bottom: calc(100% + 18px);
    width: max-content; max-width: 270px; padding: 13px 18px;
    background: #fff; font-size: 15px !important; line-height: 1.5; font-weight: 800;
    opacity: 0; visibility: hidden; pointer-events: none; white-space: normal;
    transition: opacity .22s, transform .28s cubic-bezier(.34,1.8,.5,1), visibility .22s;
    box-shadow: 0 10px 24px rgba(0,0,0,.10);
}
.v3-main-hero-btn-find .v3-main-hero-tip {
    left: -8%; color: #FF6142 !important; border: 2.5px solid #FF6142;
    border-radius: 24px 22px 22px 4px;                    /* 왼쪽 아래 뾰족 = 스티커 꼬리 */
    transform: rotate(-5deg) scale(.55); transform-origin: bottom left;
}
.v3-main-hero-btn-make .v3-main-hero-tip {
    right: -8%; color: #084aea !important; border: 2.5px solid #084aea;
    border-radius: 22px 24px 4px 22px;                    /* 오른쪽 아래 뾰족 */
    transform: rotate(5deg) scale(.55); transform-origin: bottom right;
}
.v3-main-hero-btn:hover .v3-main-hero-tip,
.v3-main-hero-btn:focus-visible .v3-main-hero-tip {
    opacity: 1; visibility: visible;
}
.v3-main-hero-btn-find:hover .v3-main-hero-tip,
.v3-main-hero-btn-find:focus-visible .v3-main-hero-tip { transform: rotate(-5deg) scale(1); }
.v3-main-hero-btn-make:hover .v3-main-hero-tip,
.v3-main-hero-btn-make:focus-visible .v3-main-hero-tip { transform: rotate(5deg) scale(1); }
.v3-main-hero-title {
    font-size: 52px; font-weight: 900; line-height: 1.25; letter-spacing: -0.02em;
}
.v3-main-hero-roll {
    display: inline-block; position: relative;
    height: 1.25em; overflow: hidden; vertical-align: bottom;
    text-align: center; min-width: 6.6em;   /* 긴 필러 워드(프라임비디오도 등) 대비 */
}
.v3-main-hero-roll-track { display: block; transition: transform .45s cubic-bezier(.5,0,.2,1); }
.v3-main-hero-roll-item { display: block; height: 1.25em; color: #084aea; }
.v3-main-hero-roll-item .v3-main-roll-suffix { color: #000; }   /* 서비스명 뒤 '도'는 검정 */
.v3-main-hero-roll-item.v3-main-roll-final { color: #FF6142; }
.v3-main-hero-sub { font-size: 20px; color: #333; letter-spacing: -0.7px; margin-top: 22px; }
.v3-main-hero-btns { display: flex; gap: 14px; margin-top: 38px; flex-wrap: wrap; justify-content: center; }
.v3-main-hero-btn {
    display: inline-flex; flex-direction: column; align-items: center; gap: 3px;
    min-width: 240px; padding: 18px 30px; border-radius: 16px; border: 0;
    color: #fff; transition: transform .12s, box-shadow .12s;
}
.v3-main-hero-btn:hover { transform: translateY(-2px); }
.v3-main-hero-btn strong { font-size: 20px; font-weight: 800; }
.v3-main-hero-btn span { font-size: 15px; opacity: .9; }
.v3-main-hero-btn-find { background: #FF6142; box-shadow: 0 8px 22px rgba(255,97,66,.28); }
.v3-main-hero-btn-make { background: #084aea; box-shadow: 0 8px 22px rgba(8,74,234,.28); }

/* ------------------------------------------------------------
   S2. 달라진 것 3가지
   ------------------------------------------------------------ */
.v3-main-new {
    background: linear-gradient(180deg, #e7efff 0%, #f4f8ff 100%);
    position: relative; overflow: hidden;
}
/* 장식 블롭: 좌상 블루 / 우하 오렌지 */
.v3-main-new::before, .v3-main-new::after {
    content: ""; position: absolute; border-radius: 50%; filter: blur(70px); pointer-events: none;
}
.v3-main-new::before { width: 420px; height: 420px; background: rgba(8,74,234,.10); top: -140px; left: -120px; }
.v3-main-new::after  { width: 380px; height: 380px; background: rgba(255,97,66,.10); bottom: -140px; right: -100px; }
.v3-main-new .v3-main-inner { position: relative; z-index: 2; }
.v3-main-new-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 46px; }
.v3-main-new-card {
    border: 1px solid #eaecef; border-radius: 20px; padding: 34px 28px 30px;
    background: #fff; overflow: hidden; position: relative;
    transition: box-shadow .15s, transform .15s;
    display: flex; flex-direction: column;   /* 3카드 정렬 통일 */
}
.v3-main-new-card:hover { box-shadow: 0 14px 34px rgba(0,0,0,.07); transform: translateY(-3px); }
.v3-main-new-ico {
    width: 54px; height: 54px; border-radius: 16px; font-size: 27px;
    display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.v3-main-new-ico-blue   { background: linear-gradient(135deg, #e3edff, #cfdfff); }
.v3-main-new-ico-green  { background: linear-gradient(135deg, #e4f6e9, #ccecd7); }
.v3-main-new-ico-orange { background: linear-gradient(135deg, #ffece6, #ffd9cd); }
.v3-main-new-card h3 { font-size: 23px; font-weight: 800; margin-bottom: 12px; }
.v3-main-new-card p { font-size: 16px; color: #666; }
.v3-main-new-card p strong { color: #000; font-weight: 700; }
.v3-main-new-visual {
    margin-top: auto; padding-top: 26px;      /* 비주얼 영역 하단 고정 */
    min-height: 96px; display: flex; align-items: center; justify-content: center;
}

/* 카드1 : 카테고리 마퀴 */
.v3-main-marquee { margin: 0 -28px; overflow: hidden; position: relative; width: calc(100% + 56px); }
.v3-main-marquee::before, .v3-main-marquee::after {
    content: ""; position: absolute; top: 0; bottom: 0; width: 40px; z-index: 1;
}
.v3-main-marquee::before { left: 0; background: linear-gradient(90deg, #fff, transparent); }
.v3-main-marquee::after { right: 0; background: linear-gradient(-90deg, #fff, transparent); }
.v3-main-marquee-track { display: flex; gap: 10px; width: max-content; animation: v3MainMarquee 18s linear infinite; }
@keyframes v3MainMarquee { to { transform: translateX(-50%); } }
.v3-main-marquee-chip {
    flex-shrink: 0; font-size: 15px; font-weight: 600; color: #444;
    background: #f4f6f9; border-radius: 999px; padding: 8px 15px; white-space: nowrap;
}
.v3-main-marquee-chip.v3-main-chip-hl { background: #fff0ec; color: #FF6142; font-weight: 800; }

/* 카드2 : 결합 아이콘 스택 */
.v3-main-combo { display: flex; align-items: center; justify-content: center; gap: 0; flex-wrap: nowrap; }
.v3-main-combo-ico, .v3-main-combo-eq, .v3-main-combo-party { flex-shrink: 0; }   /* 모바일 눌림 방지 */
/* 우→좌 순차 스택: 아이콘이 오른쪽에서 쌓이고 = '하나의 파티'로 완성되는 사이클(5초) */
.v3-main-combo-ico:nth-child(1) { animation: v3MainStack1 5s ease-in-out infinite; }
.v3-main-combo-ico:nth-child(2) { animation: v3MainStack2 5s ease-in-out infinite; }
.v3-main-combo-ico:nth-child(3) { animation: v3MainStack3 5s ease-in-out infinite; }
.v3-main-combo-eq    { animation: v3MainStackEq 5s ease-in-out infinite; }
.v3-main-combo-party { animation: v3MainStackParty 5s ease-in-out infinite; }
@keyframes v3MainStack1 {
    0%       { transform: translateX(100px); opacity: 0; }
    9%, 90%  { transform: translateX(0); opacity: 1; }
    97%,100% { transform: translateX(0); opacity: 0; }
}
@keyframes v3MainStack2 {
    0%, 13%  { transform: translateX(100px); opacity: 0; }
    23%, 90% { transform: translateX(0); opacity: 1; }
    97%,100% { transform: translateX(0); opacity: 0; }
}
@keyframes v3MainStack3 {
    0%, 28%  { transform: translateX(100px); opacity: 0; }
    38%, 90% { transform: translateX(0); opacity: 1; }
    97%,100% { transform: translateX(0); opacity: 0; }
}
@keyframes v3MainStackEq {
    0%, 42%  { opacity: 0; }
    50%, 90% { opacity: 1; }
    97%,100% { opacity: 0; }
}
@keyframes v3MainStackParty {
    0%, 46%  { transform: scale(.7); opacity: 0; }
    56%, 90% { transform: scale(1); opacity: 1; }
    97%,100% { transform: scale(1); opacity: 0; }
}
.v3-main-combo-ico {
    width: 52px; height: 52px; border-radius: 14px; border: 3px solid #fff;
    background: #f4f6f9; display: flex; align-items: center; justify-content: center;
    font-size: 21px; font-weight: 800; color: #084aea;
    box-shadow: 0 4px 12px rgba(0,0,0,.10); overflow: hidden;
}
.v3-main-combo-ico + .v3-main-combo-ico { margin-left: -14px; }
.v3-main-combo-ico img { width: 100%; height: 100%; object-fit: cover; }
.v3-main-combo-eq { font-size: 22px; font-weight: 800; color: #666; margin: 0 14px; }
.v3-main-combo-party {
    display: inline-flex; align-items: center; gap: 7px;
    background: #e8effe; color: #084aea; font-size: 16px; font-weight: 800;
    border-radius: 14px; padding: 13px 18px;
}

/* 카드3 : 무료공유 */
.v3-main-freegift { text-align: center; position: relative; }
.v3-main-freegift-tag {
    display: inline-flex; align-items: center; gap: 8px;
    background: #fff0ec; color: #FF6142; font-size: 17px; font-weight: 800;
    border-radius: 14px; padding: 13px 20px;
    animation: v3MainGiftPulse 2.6s ease-in-out infinite;
}
@keyframes v3MainGiftPulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.06); } }
.v3-main-freegift-heart {
    position: absolute; bottom: 60%; font-size: 15px; opacity: 0;
    animation: v3MainHeartUp 3.4s ease-in infinite;
}
.v3-main-freegift-heart:nth-child(2) { left: 26%; animation-delay: 0s; }
.v3-main-freegift-heart:nth-child(3) { left: 68%; animation-delay: 1.7s; }
@keyframes v3MainHeartUp {
    0%   { transform: translateY(0) scale(.8); opacity: 0; }
    15%  { opacity: .9; }
    70%  { opacity: .35; }
    100% { transform: translateY(-46px) scale(1.15); opacity: 0; }
}

/* ------------------------------------------------------------
   S3. 지금 열린 파티들
   ------------------------------------------------------------ */
.v3-main-live { background: linear-gradient(180deg, #f7f9fc 0%, #eef2f9 100%); }
/* 확정 파티 카드 UI 준용 (메인 간소화 버전: 모집현황·즉시참여 제외) - 실적용 시 공통 컴포넌트 이식 */
.v3-main-live-carousel { position: relative; margin-top: 42px; }
.v3-main-live-viewport { overflow: hidden; }
.v3-main-live-track {
    display: flex; gap: 18px;
    transition: transform .55s cubic-bezier(.25,.7,.3,1);
    will-change: transform;
}
.v3-main-live-card {
    flex-shrink: 0;
    background: #fff; border: 1px solid #e6e9ee; border-radius: 16px;
    padding: 30px 20px 20px;
    display: flex; flex-direction: column;
    transition: box-shadow .15s;
}
.v3-main-live-card:hover { box-shadow: 0 12px 28px rgba(0,0,0,.08); }
/* 좌우 내비게이션 버튼 */
.v3-main-live-nav {
    position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
    width: 38px; height: 38px; border-radius: 50%; border: 1px solid #e2e6ec;
    background: #fff; color: #333; font-size: 36px; font-weight: 500; line-height: 1;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 8px 20px rgba(0,0,0,.12);
    transition: transform .12s, box-shadow .12s;
}
.v3-main-live-nav:hover { transform: translateY(-50%) scale(1.07); box-shadow: 0 10px 26px rgba(0,0,0,.16); }
.v3-main-live-nav-prev { left: -20px; }
.v3-main-live-nav-next { right: -20px; }
/* 상단: 서비스 아이콘(+결합 스택) | 우측 개설자 */
.v3-main-live-head { display: flex; align-items: center; gap: 8px; }
.v3-main-live-icons { display: flex; align-items: center; flex-shrink: 0; }
.v3-main-live-ico {
    width: 44px; height: 44px; border-radius: 12px; border: 2px solid #fff;
    background: #f4f6f9; display: flex; align-items: center; justify-content: center;
    font-size: 18px; font-weight: 800; color: #084aea; overflow: hidden;
    box-shadow: 0 3px 8px rgba(0,0,0,.08);
}
.v3-main-live-ico + .v3-main-live-ico { margin-left: -14px; }
.v3-main-live-ico img { width: 100%; height: 100%; object-fit: cover; }
.v3-main-live-ico-plus {
    width: 26px; height: 26px; border-radius: 50%; margin-left: -12px; z-index: 2;
    background: #333; color: #fff; font-size: 12px; font-weight: 800;
    display: flex; align-items: center; justify-content: center; border: 2px solid #fff;
}
.v3-main-live-host { margin-left: auto; display: flex; align-items: center; gap: 5px; font-size: 14px; color: #555; font-weight: 600; white-space: nowrap; }
.v3-main-live-host-av { font-size: 17px; line-height: 1; }
.v3-main-live-host-img { width: 24px; height: 24px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
/* 서비스명(크고 진하게) + 정가(취소선) 스택 - 아이콘 우측 */
.v3-main-live-svcbox { flex: 1; min-width: 0; margin-left: 3px; }
.v3-main-live-svc {
    font-size: 20px; font-weight: 800; line-height: 1.25;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
/* 칩(결합형·검증·무료 등) */
.v3-main-live-chip {
    display: inline-block; font-size: 11px; font-weight: 700; line-height: 1;
    padding: 3px 6px; border-radius: 4px; margin-left: 6px; vertical-align: middle;
    white-space: nowrap;
}
.v3-main-live-chip-combo { color: #6c3ec1; background: #f0e8ff; }
.v3-main-live-chip-verify { color: #0a6e3a; background: #e2f7ec; }
.v3-main-live-chip-free { color: #c07400; background: #fff5e0; }
.v3-main-live-orig { font-size: 13px; color: #666; line-height: 1.3; margin-top: 3px; }
.v3-main-live-orig del { color: #999; }
/* 참여비용(오렌지 강조) + 이용방식 뱃지 */
.v3-main-live-price-row {
    display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-top: 18px;
}
.v3-main-live-price { font-size: 21px; font-weight: 900; color: #FF6142; white-space: nowrap; }
.v3-main-live-price .v3-main-price-unit { font-size: 14px; font-weight: 500; }   /* '월'/'원' 단위 경량 표기 */
.v3-main-live-price.v3-main-price-free { color: #FF6142; }
.v3-main-live-paybadge {
    flex-shrink: 0; font-size: 12px; font-weight: 700; line-height: 1;
    color: #084aea; background: #e8effe; border-radius: 999px; padding: 6px 10px;
}
.v3-main-live-paybadge.v3-main-paybadge-term { color: #1d8a3e; background: #e4f6ec; }
/* 모집 공고 제목 */
.v3-main-live-title {
    margin-top: 12px; font-size: 14px; font-weight: 500; color: #444;
    line-height: 1.4; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
/* 버튼: 상세보기 단일 */
.v3-main-live-btns { display: flex; margin-top: 16px; }
.v3-main-live-btn {
    flex: 1; font-size: 15px; font-weight: 700; border-radius: 10px; padding: 12px 0;
    transition: filter .12s;
}
.v3-main-live-btn:hover { filter: brightness(.95); }
.v3-main-live-btn-detail { background: #f9f9f9; color: #444; border: 1.5px solid #d9dee6; }
.v3-main-live-more { text-align: center; margin-top: 40px; }
.v3-main-live-more a { font-size: 17px; font-weight: 700; color: #084aea; }
.v3-main-live-more a:hover { text-decoration: underline; }

/* ------------------------------------------------------------
   S4. 지금 뜨는 서비스 + 기다리는 파티 (결합 보조 밴드)
   ------------------------------------------------------------ */
.v3-main-trend { padding: 64px 0; background: #fff; }
.v3-main-trend-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.v3-main-trend-box {
    border: 1px solid #eaecef; border-radius: 20px; padding: 30px 30px 26px;
    display: flex; flex-direction: column;   /* 버튼 하단 고정용 */
}
.v3-main-trend-box h3 { font-size: 22px; font-weight: 800; display: flex; align-items: center; gap: 8px; }
.v3-main-trend-box-sub { font-size: 15px; color: #666; margin-top: 4px; }

/* 좌: 떠오르는 인기 서비스 */
.v3-main-hot-list { margin-top: 20px; display: flex; flex-direction: column; }
.v3-main-hot-item { display: flex; align-items: center; gap: 13px; padding: 11px 4px; }
.v3-main-hot-item + .v3-main-hot-item { border-top: 1px solid #f1f3f6; }
.v3-main-hot-rank { font-size: 18px; font-weight: 900; color: #084aea; width: 22px; text-align: center; flex-shrink: 0; }
.v3-main-hot-ico {
    width: 38px; height: 38px; border-radius: 10px; flex-shrink: 0;
    background: #f4f6f9; display: flex; align-items: center; justify-content: center;
    font-size: 16px; font-weight: 800; color: #084aea; overflow: hidden;
}
.v3-main-hot-ico img { width: 100%; height: 100%; object-fit: cover; }
.v3-main-hot-name { flex: 1; font-size: 17px; font-weight: 700; }
.v3-main-hot-delta { font-size: 14px; font-weight: 800; }
.v3-main-hot-delta.v3-main-up  { color: #FF6142; }
.v3-main-hot-delta.v3-main-down { color: #084aea; }
.v3-main-hot-delta.v3-main-delta-new { color: #084aea; }   /* '.v3-main-new'(달라진점 섹션)와의 클래스 충돌 해소로 개명 */
.v3-main-hot-delta.v3-main-keep { color: #bbb; font-weight: 600; }

/* 우: 개설을 기다려요 */
#v3MainWaitArea { flex: 1; }
.v3-main-wait-list { margin-top: 20px; display: flex; flex-direction: column; }
.v3-main-wait-item { display: flex; align-items: center; gap: 13px; padding: 11px 4px; }
.v3-main-wait-item + .v3-main-wait-item { border-top: 1px solid #f1f3f6; }
.v3-main-wait-ico {
    width: 38px; height: 38px; border-radius: 10px; flex-shrink: 0;
    background: #f4f6f9; display: flex; align-items: center; justify-content: center;
    font-size: 17px; overflow: hidden;
}
.v3-main-wait-ico img { width: 100%; height: 100%; object-fit: cover; }
.v3-main-wait-text { flex: 1; font-size: 16px; }
.v3-main-wait-text strong { font-weight: 800; }
.v3-main-wait-count { font-size: 16px; font-weight: 800; color: #FF6142; white-space: nowrap; }
.v3-main-wait-actions { display: flex; gap: 10px; margin-top: auto; padding-top: 20px; }  /* 목록 수와 무관하게 박스 하단 고정 */
.v3-main-wait-link {
    flex: 1; font-size: 16px; font-weight: 800; border: 0; border-radius: 12px;
    padding: 14px 10px 14px 0; color: #fff; transition: transform .12s, filter .12s;
}
.v3-main-wait-link:hover { transform: translateY(-2px); filter: brightness(.95); }
.v3-main-wait-link-notify { background: #FF6142; box-shadow: 0 6px 16px rgba(255,97,66,.25); }
.v3-main-wait-link-make   { background: #084aea; box-shadow: 0 6px 16px rgba(8,74,234,.25); }
/* 대기 데이터 없음/부족 시 대체 표시 */
.v3-main-wait-empty {
    margin-top: 20px; font-size: 16px; color: #666; line-height: 1.7;
    background: #fafbfd; border: 1px dashed #dfe4ec; border-radius: 14px;
    padding: 24px 20px; text-align: center;
}
.v3-main-wait-empty strong { color: #000; }
.v3-main-wait-empty-ico { display: block; font-size: 30px; margin-bottom: 8px; }
/* ▼▼▼ DEMO (START) 빈 상태 테스트 버튼 - 실적용 시 삭제 ▼▼▼ */
.v3-main-wait-demo-toggle {
    margin-left: auto; font-size: 12px; font-weight: 600; color: #aab2c0;
    background: #f4f6f9; border: 1px solid #e6eaf0; border-radius: 999px; padding: 5px 10px;
}
.v3-main-wait-demo-toggle:hover { color: #666; }
/* ▲▲▲ DEMO (END) ▲▲▲ */

/* ------------------------------------------------------------
   S6. 안심 비교
   ------------------------------------------------------------ */
.v3-main-safe { background: linear-gradient(180deg, #f5f7fb 0%, #eef1f7 100%); position: relative; overflow: hidden; }
.v3-main-safe::before {
    content: ""; position: absolute; width: 380px; height: 380px; border-radius: 50%;
    background: rgba(8,74,234,.07); filter: blur(70px); bottom: -120px; left: -110px; pointer-events: none;
}
.v3-main-safe .v3-main-inner { position: relative; z-index: 2; }
.v3-main-safe-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 46px; }
.v3-main-safe-card { border-radius: 20px; padding: 36px 32px; background: #fff; }
.v3-main-safe-card-general { border: 2px solid #FF6142; }
.v3-main-safe-card-verify  { border: 2px solid #084aea; }
.v3-main-safe-card .v3-main-badge { margin-bottom: 16px; }
.v3-main-safe-card h3 { font-size: 24px; font-weight: 800; margin-bottom: 18px; }
.v3-main-safe-card ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.v3-main-safe-card li { font-size: 17px; display: flex; gap: 9px; align-items: flex-start; }
.v3-main-safe-check { font-weight: 800; flex-shrink: 0; }
.v3-main-safe-card-general .v3-main-safe-check { color: #FF6142; }
.v3-main-safe-card-verify  .v3-main-safe-check { color: #084aea; }
.v3-main-safe-go {
    display: block; width: 100%; margin-top: 24px; border: 0; border-radius: 12px;
    font-size: 17px; font-weight: 700; color: #fff; padding: 14px 0; transition: filter .12s;
}
.v3-main-safe-go:hover { filter: brightness(.94); }
.v3-main-safe-card-general .v3-main-safe-go { background: #FF6142; }
.v3-main-safe-card-verify  .v3-main-safe-go { background: #084aea; }
.v3-main-safe-common {
    margin: 26px auto 0; text-align: center;
    font-size: 16px; color: #666;
    border-radius: 14px; padding: 16px 0 0;
}

/* ------------------------------------------------------------
   S8. 최종 CTA
   ------------------------------------------------------------ */
.v3-main-final { background: #0b1530; padding: 90px 0; }
.v3-main-final .v3-main-sec-title { color: #fff; }
.v3-main-final-btns { display: flex; gap: 14px; justify-content: center; margin-top: 40px; flex-wrap: wrap; }

/* ------------------------------------------------------------
   ★★★ [신규제작] V2 topMenu 구조용 GNB 스타일 (layout.css 미보유로 신규 작성) START
   ------------------------------------------------------------ */
.header { position: sticky; top: 0; z-index: 100; background: #fff; border-bottom: 1px solid #eef0f3; }

/* 모바일 헤더 */
.Mheader { display: none; position: sticky; top: 0; z-index: 100; background: #fff; border-bottom: 1px solid #eef0f3; }
.Mheader-inner { padding: 0 18px; display: flex; align-items: center; justify-content: space-between; }
.Mheader .logo { margin: 0; }


@media (max-width: 900px) {
    .header { display: none; }
    .Mheader { display: block; }
}
/* ★★★ [신규제작] GNB 스타일 END */

/* ------------------------------------------------------------
   푸터 (프로토용/* ------------------------------------------------------------
   푸터 (프로토용 - 실적용 시 기존 공통 푸터로 교체)
   ------------------------------------------------------------ */
.v3-main-footer { background: #060b1c; padding: 44px 0 52px; border-top: 1px solid rgba(255,255,255,.08); }
.v3-main-footer-links { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; }
.v3-main-footer-links a { font-size: 15px; font-weight: 600; color: #cdd3e0; }
.v3-main-footer-links a:hover { color: #fff; text-decoration: underline; }
.v3-main-footer-links span { color: #3a4160; }
.v3-main-footer-logo { text-align: center; margin-top: 26px; font-size: 20px; font-weight: 900; color: #fff; letter-spacing: -0.02em; }
.v3-main-footer-info { text-align: center; font-size: 14px; color: #8b93a7; margin-top: 14px; line-height: 1.8; }
.v3-main-footer-notice { text-align: center; font-size: 13px; color: #6a7288; margin-top: 14px; line-height: 1.7; }

/* ------------------------------------------------------------
   반응형
   ------------------------------------------------------------ */
@media (max-width: 900px) {

    .v3-main-inner { padding: 0 20px; }

    .v3-main-sec { padding: 64px 0; }
    .v3-main-sec-title { font-size: 26px; }
    .v3-main-sec-sub { font-size: 16px; }
    .v3-main-hero { padding: 100px 0 40px; }
    .v3-main-hero-btns { margin-top: 50px; }
    .v3-main-hero-title { font-size: 34px; }
    .v3-main-hero-sub { font-size: 17px; }
    .v3-main-hero-btn { min-width: 150px; min-height: 50px; flex: 1 1 45%; padding: 12px 18px; }
    .v3-main-hero-btn strong { font-size: 18px; }
    .v3-main-hero-btn span { font-size: 12px; }
    .v3-main-new-grid { grid-template-columns: 1fr; }
    .v3-main-combo-ico { width: 44px; height: 44px; border-radius: 12px; font-size: 18px; }
    .v3-main-combo-eq { font-size: 18px; margin: 0 10px; }
    .v3-main-combo-party { font-size: 14px; padding: 11px 14px; }
    .v3-main-trend { padding: 48px 0; }
    .v3-main-trend-grid { grid-template-columns: 1fr; }
    .v3-main-new-grid { margin-top: 30px; }
    .v3-main-safe-grid { margin-top: 30px; }
    /* 모바일: 아이콘 크기 통일(!important로 인라인 size 무력화) + 표시 개수 제한으로 엉킴 방지 */
    .v3-main-hero-bg-ico { width: 62px !important; height: 62px !important; font-size: 25px !important; border-radius: 16px !important; }
    .v3-main-hero-bg .v3-main-hero-bg-ico:nth-child(n+9) { display: none; }
    .v3-main-hero-title { font-size: 32px; }
    .v3-main-hero-roll { min-width: 6.2em; }
    .v3-main-hero-tip { display: none; } /* 터치 환경에서는 툴팁 미표시 */
    .v3-main-safe-grid { grid-template-columns: 1fr; }
    /* 모바일: 정적 레이어 축소 노출 (숨김 해제 - 서비스가 많아 보이도록) */
    .v3-main-hero-bg-sico {
        width: 44px !important; height: 44px !important;   /* 인라인 크기 무력화 */
        font-size: 18px !important;
        filter: blur(3px);
        opacity: .16;                                        /* 소폭 상향으로 존재감 확보 */
    }
    .v3-main-hero-bg-sico:nth-child(n+7) { display: none; } /* 밀집 방지: 6개까지만 */
    .v3-main-wait-actions { flex-direction: column; }
    .v3-main-live-nav { width: 34px; height: 34px; font-size: 25px; }
    .v3-main-live-nav-prev { left: -15px; }
    .v3-main-live-nav-next { right: -15px; }
    .v3-main-trend-box { padding: 20px; }
    .v3-main-wait-item { padding: 11px 0; }
    .v3-main-content-grid { gap: 10px; }
    .v3-main-content-card { border-radius: 10px; }
    .v3-main-yt-head h2 { font-size: 26px; }
    .v3-main-yt-head-ico { width: 42px; height: 42px; }
    .v3-main-yt-feats { grid-template-columns: repeat(2, 1fr); }
    .v3-main-yt-price strong { font-size: 24px; }
    .v3-main-final { background: #182d65; padding: 50px 0; }

    .v3-main-safe-card h3 { font-size: 22px; }
    .v3-main-safe-card li { font-size: 15px; }
    .v3-main-safe-common { font-size: 14px; padding: 0; }
}

@media (prefers-reduced-motion: reduce) {
    .v3-main-wrap *, .v3-main-wrap *::before, .v3-main-wrap *::after {
        animation-duration: .01ms !important; transition-duration: .01ms !important;
    }
}

/* ============================================================
   ★★★ [이식:V2] everyview_new_main.css 발췌 START ★★★
   (ctrArea-main / 라이브피드 / 유튜브 / 인기컨텐츠 / 모션 / 반응형 선별)
   ============================================================ */
/* ========================================
   메인 전용 컨테이너 (ctrArea 충돌 방지)
   - content.css의 .ctrArea 역할을 메인에서만 복제
   ======================================== */
.ctrArea-main {
    max-width: 1200px;
    margin: 0 auto;
}

/* ========== 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%); }
}



/* ========================================
   실시간 라이브 피드 - 통합 & 개선 버전
   ======================================== */

/* 컨테이너 - 우측 하단 고정 */
.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;
    }

    /* ========== 8. 유튜브 프리미엄 V3 (신규) - eview_v3_main.css 파일로 분리됨 ========== */


}/* ========================================
   인기 컨텐츠 섹션
   ======================================== */

.popular-content-section {
    padding: 88px 0;
    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: 25px;
    font-size: 16px;
    color: #666;
}

/* 모바일 반응형 */
@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: 26px;
    }

    .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.8rem;
    }
}



/* 섹션별 상세 모션 (checkScroll JS와 세트) */
/* ========== 섹션별 상세 모션 ========== */

/* 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; }

/* 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);
}

/* 반응형 - 원본 미디어쿼리에서 이식 대상 규칙만 선별 재구성 */
@media (max-width: 1024px) {
    .ctrArea-main {
        padding: 0 2rem;
    }
}

@media (max-width: 768px) {
    .ctrArea-main {
        padding: 0 1.25rem;
    }
    .mnew-live-feed {
        gap: 0.75rem;
        padding: 0.5rem 0.75rem;
    }
    .popular-content-section {
        padding: 2rem 0 4rem;
    }
    .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;
    }
    .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;
    }
}

@media (max-width: 480px) {
    .ctrArea-main {
        padding: 0 1rem;
    }
    .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;
    }
    .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;
    }
    .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;
    }
}

/* index.html 인라인 패치 스타일 (모달 평점 배지 / z-index) */
/* 팝업(모달) 평점 배지 스타일 */
.modal-rating-badge {
    position: absolute;
    top: 8px;
    right: 61px;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    color: #FFD700;
    font-weight: 400;
    font-size: 14px;
    padding: 3px 10px 3px 8px;
    border-radius: 20px;
    z-index: 2;
}

.imgArea {
    position: relative;
}

/* 모달 이미지 래퍼도 relative로 */
#modal-image-wrapper-content {
    position: relative;
}

/* ========== 모달과 라이브 피드 z-index 수정 ========== */
.modal-overlay-content {
    z-index: 3000;
}

.live-feed-toast {
    z-index: 2100;
}

/* ★★★ [이식:V2] everyview_new_main.css 발췌 END ★★★ */

/* ============================================================
   ★★★ [보완:신규] 이식 마크업에 필요한 미보유 스타일 START
   (.ctrArea 폭: content.css 미보유 / 모달: content.css 소속 추정 미보유)
   ============================================================ */
.mnew-youtube-special .ctrArea { max-width: 1000px; margin: 0 auto; padding: 0 1rem; }
.mnew-youtube-sublink { text-align: center; margin-top: 16px; font-size: 15px; color: #999; }
.mnew-youtube-sublink a { color: #888; font-weight: 600; text-decoration: underline; }
.mnew-youtube-sublink a:hover { color: #FF6142; }
/* 인기컨텐츠 상세 모달 (실적용 시 원본 모달 CSS로 교체 가능) */
.modal-overlay-content {
    position: fixed; inset: 0; z-index: 3000; background: rgba(0,0,0,.55);
    display: flex; align-items: center; justify-content: center; padding: 20px;
}
.modal-overlay-content.hidden-content { display: none; }
.modal-box-content {
    background: #fff; border-radius: 18px; max-width: 480px; width: 100%;
    max-height: 88vh; overflow-y: auto; padding: 26px 26px 22px;
}
.modal-title-content { font-size: 22px; font-weight: 800; margin-bottom: 14px; }
.modal-image-content { border-radius: 12px; overflow: hidden; }
.modal-image-content img { width: 100%; display: block; }
.modal-description-content { font-size: 15px; color: #444; line-height: 1.65; margin-top: 14px; }
.modal-section-gap { height: 12px; }
.modal-info-line-content { font-size: 14px; color: #666; margin-top: 6px; }
.modal-btns-content { display: flex; gap: 10px; margin-top: 20px; }
.modal-btns-content button { flex: 1; font-size: 16px; font-weight: 700; border-radius: 10px; padding: 13px 0; cursor: pointer; }
.btn-close-content { background: #fff; color: #444; border: 1.5px solid #d9dee6; }
.btn-action-content { background: #084aea; color: #fff; border: 0; }
/* ★★★ [보완:신규] END ★★★ */

/* ========================================
   유튜브 프리미엄 V3 섹션
   ======================================== */

/* ------------------------------------------------------------
   S7. 유튜브 프리미엄
   ------------------------------------------------------------ */
.v3-main-yt { background: #fff; position: relative; overflow: hidden; }
.v3-main-yt::before {
    content: ""; position: absolute; width: 520px; height: 520px; border-radius: 50%;
    background: rgba(255, 0, 0, .05); filter: blur(80px); top: -160px; right: -140px; pointer-events: none;
}
.v3-main-yt .v3-main-inner { position: relative; z-index: 2; text-align: center; }
.v3-main-yt-head { display: flex; align-items: center; justify-content: center; gap: 13px; flex-wrap: wrap; }
.v3-main-yt-head-ico {
    width: 44px; height: 44px; border-radius: 12px; overflow: hidden;
    box-shadow: 0 6px 16px rgba(0,0,0,.12);
}
.v3-main-yt-head-ico img { width: 100%; height: 100%; object-fit: cover; }
.v3-main-yt-head h2 { font-size: 34px; font-weight: 900; }
.v3-main-yt-sub { font-size: 18px; color: #666; margin-top: 12px; }
.v3-main-yt-feats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 42px; }
.v3-main-yt-feat {
    text-align: center; background: #fafbfd; border: 1px solid #dadfe9; border-radius: 16px; padding: 22px 10px;
}
.v3-main-yt-feat-ico { font-size: 36px; }
.v3-main-yt-feat h4 { font-size: 20px; font-weight: 700; margin-top: 8px; }
.v3-main-yt-feat p { font-size: 14px; color: #666; margin-top: 3px; }
.v3-main-yt-price { margin-top: 40px; font-size: 20px; display: flex; align-items: baseline; justify-content: center; gap: 12px; flex-wrap: wrap; }
.v3-main-yt-price del { color: #999; font-size: 18px; }
.v3-main-yt-price-arrow { color: #bbb; }
.v3-main-yt-price strong { font-size: 30px; font-weight: 900; color: #084aea; }
.v3-main-yt-cta {
    display: block; width: fit-content; margin: 40px auto 0; border: 0; border-radius: 999px;
    background: #084aea; color: #fff; font-size: 19px; font-weight: 800; padding: 17px 46px;
    box-shadow: 0 10px 24px rgba(8,74,234,.28); transition: transform .12s;
}
.v3-main-yt-cta:hover { transform: translateY(-2px); }
.v3-main-yt-sublink { margin-top: 16px; font-size: 15px; color: #999; }
.v3-main-yt-sublink a { color: #888; font-weight: 600; text-decoration: underline; }
.v3-main-yt-sublink a:hover { color: #FF6142; }



[class^="v3-main-"], [class*=" v3-main-"],
[class^="v3-main-"] *, [class*=" v3-main-"] * {
    box-sizing: border-box;
}

.v3-main-hero, .v3-main-sec, .v3-main-trend, .v3-main-final,
.v3-main-gnb, .v3-main-footer {
    font-family: Pretendard, 'Noto Sans KR', 'Malgun Gothic', 'Apple SD Gothic Neo', sans-serif;
    font-size: 17px;
    line-height: 1.6;
    color: #000;
    letter-spacing: -0.01em;
}

.yt-premium-logo {
    width: 52px;
    height: auto;
    display: inline-block;
}
.v3-main-yt-feat img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    margin-bottom: 10px;
}

@media (max-width: 900px) {
    .v3-main-hero, .v3-main-sec, .v3-main-trend, .v3-main-final { font-size: 16px; }
    .yt-premium-logo { width: 40px; }
    .v3-main-yt-feat img { width: 32px; height: 32px; margin-bottom: 8px; }
    .v3-main-yt-head h2 { font-size: 26px; font-weight: 800; }
    .v3-main-yt-sub { font-size: 16px; }

    .v3-main-yt-feats { grid-template-columns: repeat(2, 1fr); }
    .v3-main-yt-feat h4 { font-size: 18px; }
    .v3-main-yt-price { font-size: 17px; }
    .v3-main-yt-price strong { font-size: 26px; font-weight: 800; }
}


/* ============================================================
   ★★★ [패치 2026-07-30 v3] 추가 수정 START ★★★
   ============================================================ */

/* --- (7) 매칭률 높은 인기 서비스: 스크롤 도착 시 1위부터 순차 등장 ---
   (index.html에서 IntersectionObserver가 .v3-main-hot-show 부여 / 항목별 transition-delay 인라인) */
.v3-main-hot-list .v3-main-hot-item {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity .5s ease, transform .5s ease;
}
.v3-main-hot-list.v3-main-hot-show .v3-main-hot-item {
    opacity: 1;
    transform: none;
}

/* --- (8) 일반/검증파티 비교 카드: 호버 확대 강화 --- */
.v3-main-safe-card {
    transition: transform .2s cubic-bezier(.3,.7,.4,1), box-shadow .2s ease;
}
.v3-main-safe-card:hover {
    transform: scale(1.035) translateY(-5px);
    box-shadow: 0 20px 44px rgba(0,0,0,.12);
}

/* ★★★ [패치 2026-07-30 v3] END ★★★ */

/* ─── 개설 알림신청 모달 (파티찾기 fp3-modal 동일) ─── */
.fp3-modal-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.45); z-index: 9999;
    display: flex; align-items: center; justify-content: center;
}
.fp3-modal-box {
    background: #fff; border-radius: 16px; padding: 32px 28px;
    max-width: 330px; width: 90%; position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    display: flex; flex-direction: column; gap: 12px;
}
.fp3-modal-close {
    position: absolute; top: 14px; right: 16px;
    background: #f0f0f0; border: none; border-radius: 50%;
    width: 28px; height: 28px; font-size: 16px; cursor: pointer;
    display: flex; align-items: center; justify-content: center; line-height: 1;
}
.fp3-modal-title { font-size: 17px; font-weight: 800; color: #111; }
.fp3-modal-desc { font-size: 13px; color: #888; line-height: 1.7; }
.fp3-modal-select {
    width: 100%; box-sizing: border-box;
    border: 1.5px solid #dde0eb; border-radius: 10px;
    padding: 11px 14px; font-size: 14px; color: #111;
    font-family: inherit; outline: none; transition: border-color 0.15s;
    background: #fff;
    cursor: pointer; appearance: none; -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none' stroke='%23888' stroke-width='1.5'%3E%3Cpath d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 14px center;
    padding-right: 36px;
}
.fp3-modal-select:focus { border-color: #4169E1; }
.fp3-modal-submit {
    padding: 13px; background: #4169E1; color: #fff; border: none;
    border-radius: 10px; font-size: 14px; font-weight: 700; cursor: pointer;
    font-family: inherit; transition: background 0.12s;
}
.fp3-modal-submit:hover { background: #3058d0; }
@media (max-width: 768px) {
    .fp3-modal-box { padding: 28px 20px; }
}

/* ── 개설 알림신청 모달: 모바일 좌우 여백 확보 (eview_v3.css 와 동일 규칙) ── */
@media (max-width: 640px) {
    /* 오버레이 패딩으로 박스가 화면 끝에 닿지 않도록 보장 */
    .fp3-modal-overlay { padding: 0 20px; box-sizing: border-box; }
    .fp3-modal-box { width: 100%; max-width: 340px; }
}