:root{
  --bg:#ffffff;
  --text:#111111;
  --muted:rgba(0,0,0,.55);
  --line:rgba(0,0,0,.10);
  --shadow:0 10px 30px rgba(0,0,0,.10);
  --radius:22px;

  --melon:#23d160;
  --melonHover:#16a34a;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
.container{max-width:980px;margin:0 auto;padding:0 16px}

/* =========================
   ✅ HEADER: 로고만 (단일 로고 / 햄버거 없음)
   ========================= */
.header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(255,255,255,.92);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
  border-bottom:1px solid var(--line);
}

.headerBar{
  height:64px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:12px 18px;
  max-width:1100px;
  margin:0 auto;
}

/* ✅ 로고만 중앙 정렬 */
.headerBar--center{
  justify-content:center;
}

.brand{display:inline-flex;align-items:center;min-width:0}
.brandImg{
  height:46px;           /* PC 로고 크기 */
  width:auto;
  max-width:260px;
  object-fit:contain;
}

@media (max-width:768px){
  .headerBar{height:60px;padding:10px 14px}
  .brandImg{height:40px;max-width:220px}  /* 모바일 로고 크기 */
}

/* =========================
   ✅ HERO 배너 (클릭하면 유튜브)
   ========================= */
.hero{width:100%;margin:0;padding:16px 0 12px}
.heroInner{max-width:1100px;margin:0 auto;padding:0 16px}

.heroLink{
  position:relative;
  display:block;
  border-radius:var(--radius);
  overflow:hidden;
  background:#000;
  box-shadow:var(--shadow);
}
.heroImg{width:100%;height:auto;display:block}

.playBadge{
  position:absolute;
  left:50%;
  top:50%;
  transform:translate(-50%,-50%);
  width:72px;height:72px;
  border-radius:999px;
  background:rgba(0,0,0,.55);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:28px;
  line-height:1;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.heroLink:hover .playBadge{background:rgba(0,0,0,.70)}

/* =========================
   ✅ 섹션/타이틀
   ========================= */
.section{margin:18px 0}
.sectionTitle{
  font-size:15px;
  font-weight:900;
  margin:10px 0;
}

/* =========================
   ✅ 바로가기 버튼 리스트
   ========================= */
.btnList{display:grid;grid-template-columns:1fr;gap:10px}
.btn{
  display:flex;align-items:center;justify-content:space-between;gap:12px;
  padding:13px 14px;
  border-radius:16px;
  background:#f6f6f6;
  border:1px solid var(--line);
  transition:transform .06s ease, background .12s ease;
}
.btn:hover{background:#eeeeee;transform:translateY(-1px)}
.btnTitle{font-weight:900;line-height:1.2}
.btnDesc{font-size:12px;color:var(--muted);margin-top:2px}

/* =========================
   ✅ 원클릭 섹션(플레이브/엔믹스 느낌)
   ========================= */
.oneclickPanel{
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  border:1px solid rgba(0,0,0,.06);
  overflow:hidden;
  background:linear-gradient(135deg, rgba(180,190,255,.45), rgba(255,210,230,.35));
}
.oneclickHead{
  padding:16px 16px 8px;
}
.oneclickKicker{
  font-size:12px;
  font-weight:900;
  color:rgba(0,0,0,.55);
  margin-bottom:6px;
}
.oneclickTitle{
  font-size:20px;
  font-weight:900;
  margin:0;
}
.oneclickSub{
  margin:8px 0 0;
  font-size:12px;
  color:rgba(0,0,0,.55);
  line-height:1.5;
}

.oneclickGrid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:12px;
  padding:14px 16px 18px;
}
@media (max-width:768px){
  .oneclickTitle{font-size:18px}
  .oneclickGrid{grid-template-columns:repeat(2, 1fr)}
}

.ocBtn{
  display:flex;
  align-items:center;
  gap:12px;
  padding:14px 14px;
  border-radius:18px;
  background:rgba(255,255,255,.82);
  border:1px solid rgba(0,0,0,.08);
  box-shadow:0 8px 20px rgba(0,0,0,.06);
  cursor:pointer;
  transition:transform .08s ease, background .12s ease;
}
.ocBtn:hover{transform:translateY(-1px);background:rgba(255,255,255,.92);}

.ocIcon{
  width:38px;height:38px;
  border-radius:14px;
  background:#fff;
  border:1px solid rgba(0,0,0,.08);
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  flex:0 0 auto;
}
.ocIcon img{width:22px;height:22px;object-fit:contain;display:block}

.ocText{min-width:0}
.ocName{font-weight:900}
.ocSub{font-size:12px;color:var(--muted);margin-top:2px}

.ocArrow{
  margin-left:auto;
  font-weight:900;
  opacity:.6;
}

/* =========================
   ✅ HOME: Guide CTA (bigger, nicer)
   ========================= */
.ctaGuide{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;

  padding:18px 18px;
  border-radius:20px;

  background:linear-gradient(135deg, rgba(180,190,255,.35), rgba(255,210,230,.30));
  border:1px solid rgba(0,0,0,.06);
  box-shadow:0 12px 28px rgba(0,0,0,.10);

  transition:transform .10s ease, box-shadow .15s ease, filter .15s ease;
}

.ctaGuide:hover{
  transform:translateY(-2px);
  box-shadow:0 16px 34px rgba(0,0,0,.14);
  filter:saturate(1.05);
}

.ctaGuideText{min-width:0}
.ctaGuideTitle{
  font-size:18px;
  font-weight:1000;
  letter-spacing:-0.02em;
}
.ctaGuideDesc{
  margin-top:6px;
  font-size:13px;
  color:rgba(0,0,0,.60);
  font-weight:700;
}

.ctaGuideArrow{
  font-weight:1000;
  font-size:18px;
  opacity:.75;
}

/* =========================
   ✅ HOME: Social cards (NMIXX vibe)
   ========================= */
.socialCard{
  margin-top:12px;
  border-radius:22px;
  background:rgba(255,255,255,.92);
  border:1px solid rgba(0,0,0,.08);
  box-shadow:0 10px 28px rgba(0,0,0,.10);
  padding:16px;
}

.socialHead{
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap:10px;
  margin-bottom:12px;
}

.socialTitle{
  font-size:18px;
  font-weight:1000;
  letter-spacing:-0.02em;
}

.socialDesc{
  font-size:13px;
  color:rgba(0,0,0,.55);
  font-weight:700;
}

.socialGrid{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.socialBtn{
  display:inline-flex;
  align-items:center;
  gap:10px;

  padding:10px 12px;
  border-radius:16px;

  background:#fff;
  border:1px solid rgba(0,0,0,.08);
  box-shadow:0 8px 18px rgba(0,0,0,.06);

  transition:transform .10s ease, background .12s ease, box-shadow .12s ease;
}

.socialBtn:hover{
  transform:translateY(-1px);
  box-shadow:0 10px 22px rgba(0,0,0,.10);
  background:rgba(255,255,255,.98);
}

.socialIcon{
  width:34px;height:34px;
  border-radius:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  border:1px solid rgba(0,0,0,.08);
  background:rgba(0,0,0,.03);
}

/* ✅ 이미지 아이콘 사이즈 */
.socialIcon img{
  width:20px;
  height:20px;
  object-fit:contain;
  display:block;
}

.socialName{
  font-weight:900;
  font-size:13px;
  color:#111;
}

/* =========================
   footer
   ========================= */
.footer{
  border-top:1px solid var(--line);
  margin-top:28px;
}
.footerInner{
  padding:18px 0;
  color:var(--muted);
  font-size:12px;
}

/* =========================
   ✅ GUIDE page (Plave vibe)
   ========================= */

/* 접근성 숨김 라벨 */
.srOnly{
  position:absolute !important;
  width:1px;height:1px;
  padding:0;margin:-1px;
  overflow:hidden;clip:rect(0,0,0,0);
  white-space:nowrap;border:0;
}

.h1{
  font-size:28px;
  margin:18px 0 6px;
  letter-spacing:-0.02em;
}

.guideTop{
  padding-top:8px;
}

.guideLead{
  margin:0 0 14px;
  color:rgba(0,0,0,.55);
  font-size:14px;
}

.guideFilter{
  display:flex;
  align-items:center;
  gap:10px;
  margin:8px 0 16px;
}

.guideSelect{
  width:100%;
  max-width:260px;
  appearance:none;
  -webkit-appearance:none;

  padding:12px 14px;
  border-radius:999px;
  border:1px solid rgba(0,0,0,.08);
  background:rgba(255,255,255,.90);
  box-shadow:0 10px 25px rgba(0,0,0,.06);
  font-weight:900;
  cursor:pointer;

  background-image:
    linear-gradient(45deg, transparent 50%, rgba(0,0,0,.55) 50%),
    linear-gradient(135deg, rgba(0,0,0,.55) 50%, transparent 50%);
  background-position:
    calc(100% - 22px) calc(50% - 3px),
    calc(100% - 16px) calc(50% - 3px);
  background-size:6px 6px, 6px 6px;
  background-repeat:no-repeat;
}

.guidePanel{
  border-radius:var(--radius);
  overflow:hidden;
  border:1px solid rgba(0,0,0,.06);
  box-shadow:var(--shadow);
  background:linear-gradient(180deg, rgba(240,240,255,.65), rgba(255,235,245,.65));
  padding:14px;
}

.guideGrid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:12px;
}

@media (max-width:980px){
  .guideGrid{grid-template-columns:repeat(3, 1fr)}
}
@media (max-width:768px){
  .guideGrid{grid-template-columns:repeat(2, 1fr)}
}

.gCard{
  position:relative;
  display:block;
  border-radius:18px;
  overflow:hidden;

  background:rgba(255,255,255,.78);
  border:1px solid rgba(0,0,0,.06);
  box-shadow:0 10px 25px rgba(0,0,0,.08);

  padding:16px;
  min-height:148px;

  transition:transform .10s ease, box-shadow .15s ease;
}

.gCard:hover{
  transform:translateY(-2px);
  box-shadow:0 14px 30px rgba(0,0,0,.12);
}

.gCard::after{
  content:"";
  position:absolute;
  inset:-40px -40px auto auto;
  width:140px;
  height:140px;
  border-radius:999px;
  background:rgba(255,255,255,.35);
  transform:rotate(15deg);
}

.gCardTop{
  position:relative;
  z-index:1;
}

.gBrand{
  font-size:13px;
  font-weight:900;
  opacity:.9;
}

.gTitle{
  margin-top:8px;
  font-size:26px;
  font-weight:1000;
  letter-spacing:-0.03em;
}

.gSub{
  margin-top:8px;
  font-size:16px;
  font-weight:900;
  opacity:.95;
  letter-spacing:-0.02em;
}

.gMeta{
  position:absolute;
  left:14px;
  bottom:12px;
  font-size:12px;
  color:rgba(0,0,0,.70);
  font-weight:800;
  z-index:1;
}

/* 개별 카드 테마 */
.gCard--melon{background:linear-gradient(135deg, rgba(34,197,94,.25), rgba(255,255,255,.85));}
.gCard--genie{background:linear-gradient(135deg, rgba(59,130,246,.20), rgba(255,255,255,.85));}
.gCard--bugs{background:linear-gradient(135deg, rgba(249,115,22,.20), rgba(255,255,255,.85));}
.gCard--flo{background:linear-gradient(135deg, rgba(99,102,241,.22), rgba(255,255,255,.85));}
.gCard--vibe{background:linear-gradient(135deg, rgba(168,85,247,.22), rgba(255,255,255,.85));}
.gCard--spotify{background:linear-gradient(135deg, rgba(34,197,94,.20), rgba(255,255,255,.85));}
.gCard--apple{background:linear-gradient(135deg, rgba(244,63,94,.18), rgba(255,255,255,.85));}
.gCard--sh{background:linear-gradient(135deg, rgba(14,165,233,.18), rgba(255,255,255,.85));}
.gCard--etc{background:linear-gradient(135deg, rgba(148,163,184,.28), rgba(255,255,255,.85));}

/* 스트리밍리스트 박스 */
.listBox{
  border-radius:18px;
  background:rgba(255,255,255,.78);
  border:1px solid rgba(0,0,0,.06);
  box-shadow:0 10px 25px rgba(0,0,0,.08);
  padding:16px;
}

.listTitle{
  margin:0;
  font-size:20px;
  font-weight:1000;
  letter-spacing:-0.02em;
}

.listDesc{
  margin:8px 0 14px;
  color:rgba(0,0,0,.55);
  font-size:13px;
}

.listImg{
  width:100%;
  border-radius:14px;
  border:1px solid rgba(0,0,0,.06);
  box-shadow:0 12px 25px rgba(0,0,0,.10);
}
