@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&family=Cinzel:wght@400;700&display=swap');
@font-face {
  font-family: 'Pretendard';
  src: local('Pretendard'), url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard.css');
}

/* --- 기본 & 폰트 설정 --- */
:root {
    --bg-color: #0F0F0F;
    --text-color: #EAEAEA;
    --divider-color: #0077FF;
    --romans-font: 'Cinzel', serif;
    --verse-font: 'Nanum Myeongjo', serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Pretendard', 'Roboto', 'Cinzel', sans-serif;
  background-color: #0D0D0D;
  overflow-x: hidden;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch; /* iOS 스크롤 개선 */
}

html {
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch; /* iOS 스크롤 개선 */
}

body.opened {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch; /* iOS 스크롤 개선 */
  scroll-padding-top: 72px; /* 헤더 높이만큼 스크롤 패딩 추가 */
}

html.opened {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch; /* iOS 스크롤 개선 */
  scroll-padding-top: 72px; /* 헤더 높이만큼 스크롤 패딩 추가 */
}

/* 헤더와 메인 랜딩은 기본적으로 숨김 */
.main-header, .main-landing {
  display: none;
}

body.opened .main-header {
  display: flex;
}
body.opened .main-landing {
  display: flex;
}

body.opened .main-landing {
    background: url('imgs/title_back.jpg') center center/cover no-repeat !important;
    -webkit-background-size: cover !important;
    -moz-background-size: cover !important;
    -o-background-size: cover !important;
    background-size: cover !important;
    background-attachment: scroll !important;
    height: 1080px;
    max-height: 1080px;
}

/* 헤더 */
.main-header {
  width: 100vw;
  background: rgba(255,255,255,0.5);
  box-shadow: 0px 1px 2px rgba(0,0,0,0.05);
  backdrop-filter: blur(2px);
  display: flex;
  justify-content: center;
  align-items: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}

.main-header-inner {
  width: 1280px;
  max-width: 1280px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.main-header-logo img {
  width: 365px;
  height: auto;
  aspect-ratio: 365 / 17;
}

.main-header-nav {
  display: flex;
  gap: 28px;
}

.main-header-nav-item {
  color: #343434;
  font-size: 16px;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  line-height: 24px;
  position: relative;
  cursor: pointer;
}

.main-header-nav-item.active::after {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  background: #6D28D9;
  position: absolute;
  left: 0;
  top: 26px;
}

.main-header-register {
  width: 200px;
  height: 44px;
  background: black;
  border-radius: 30px;
  outline: 2px #0082FF solid;
  outline-offset: -2px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 16px;
  font-family: 'Pretendard', sans-serif;
  font-weight: 800;
  line-height: 24px;
  cursor: pointer;
}

/* 햄버거 메뉴 */
.hamburger-menu {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 10px;
}

.hamburger-line {
  width: 24px;
  height: 2px;
  background: #343434;
  transition: all 0.3s ease;
}

/* 모바일 메뉴 */
.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.60);
  backdrop-filter: blur(2px);
  flex-direction: column;
  padding: 16px 60px;
  gap: 28px;
}

.mobile-menu-item {
  color: #343434;
  font-size: 16px;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  line-height: 24px;
  position: relative;
  cursor: pointer;
  padding: 10px 0;
}

/* .mobile-menu-item.active::after {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  background: #6D28D9;
  position: absolute;
  left: 0;
  top: 26px;
} */

/* 메인 랜딩 */
.main-landing {
  width: 100vw;
  min-height: 1080px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.main-landing__content {
  width: 100vw;
  max-height: 1080px;
  min-height: 900px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(40px, 5vw, 80px);
  padding: clamp(72px, 8vw, 100px) 20px;
  box-sizing: border-box;
}

.main-landing__camp-title {
  width: clamp(400px, 50vw, 600px);
  height: auto;
  order: 1;
}

.main-landing__title-row {
  width: clamp(600px, 70vw, 1004px);
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  order: 2;
}

.main-landing__title-row img {
  width: 100%;
  height: auto;
  max-width: 1068px;
}

.main-landing__info {
  width: clamp(350px, 45vw, 500px);
  height: auto;
  order: 3;
}

.main-landing__arrow {
  width: clamp(60px, 8vw, 76px);
  height: auto;
  order: 4;
  margin-top: clamp(20px, 3vw, 40px);
}

.main-landing__arrow img {
  width: 100%;
  height: auto;
  animation: bounce 1.5s infinite;
}

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

/* --- 랜딩 페이지 컨테이너 --- */
#landing {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    z-index: 100;
    overflow: hidden;
    touch-action: pan-y pinch-zoom; /* 모바일 터치 개선 */
}

/* --- 좌/우 패널 (이미지 기반) --- */
.panel {
    position: relative;
    width: 50%;
    height: 100%;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-position: center;
    transition: transform 2s cubic-bezier(0.86, 0, 0.07, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.left-panel {
    background-image: url('imgs/left_panel.png');
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-position: center right;
    justify-content: flex-end;
}
.right-panel {
    background-image: url('imgs/right_panel.png');
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-position: center left;
    justify-content: flex-start;
}

.panel .content {
    padding: 0 8vw;
    position: relative;
    z-index: 2;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

/* --- 문 열림 애니메이션 --- */
body.opened {
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-color: #0D0D0D;
}
body.opened #landing .left-panel {
    transform: translateX(-100%);
}
body.opened #landing .right-panel {
    transform: translateX(100%);
}
body.opened #landing .divider {
    opacity: 0;
    transform: scaleX(0);
}

/* --- 중앙 구분선 --- */
.divider {
    position: absolute;
    left: 50%;
    top: 0;
    width: 12px;
    height: 100%;
    transform: translateX(-50%);
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, var(--divider-color) 20%, var(--divider-color) 80%, rgba(0,0,0,0) 100%);
    z-index: 101;
    transition: opacity 1s ease, transform 2s cubic-bezier(0.86, 0, 0.07, 1);
}
.divider::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://www.transparenttextures.com/patterns/concrete-wall.png');
    background-size: cover;
    mix-blend-mode: screen;
    opacity: 0.4;
    filter: brightness(2);
}

/* --- 텍스트 스타일 --- */
.verse-ref {
    font-family: var(--romans-font);
    font-size: clamp(2rem, 6vw, 4rem);
    font-weight: 400;
    text-align: right;
    letter-spacing: 0.2em;
}
.verse-num {
    font-family: var(--romans-font);
    font-size: clamp(1.5rem, 5vw, 3rem);
    font-weight: 400;
    text-align: right;
    color: #aaa;
}
.verse-text {
    font-family: var(--verse-font);
    font-size: clamp(1rem, 1.8vw, 1.4rem);
    line-height: 2.2;
    font-weight: 400;
}
.verse-text p {
    margin: 0;
}

/* --- 이미지 버튼 스타일 --- */
#open-btn {
    position: absolute;
    left: 40.83%;
    top: 76.66%;
    transform: translate(-50%, -50%);
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: transform 0.3s ease;
}
#open-btn img {
    height: auto;
    display: block;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.5));
}
#open-btn:hover {
    transform: scale(1.01);
}

/* --- 배경 그래픽 (못) --- */
.bg-graphic {
    position: absolute;
    width: 300px;
    height: 300px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="300" height="300"><path d="M150 0 L140 10 L145 150 L155 150 L160 10 Z" fill="%23222" /></svg>');
    background-repeat: no-repeat;
    background-size: 20px 150px;
    opacity: 0.1;
    z-index: 1;
}
.g-left {
    bottom: 10%; right: -5%;
    transform: rotate(20deg);
}
.g-right {
    top: 15%; left: 0%;
    transform: rotate(-10deg) scaleX(-1);
}

/* --- 메인 콘텐츠 --- */
#main-content {
    padding: 100px 5vw;
    display: none;
    background-color: rgba(15, 15, 15, 0.7);
    backdrop-filter: blur(10px);
}
#main-content section {
    max-width: 1000px;
    margin: 40px auto;
    padding: 40px;
    background-color: #1a1a1a;
    border-radius: 10px;
}
h2 {
    color: #0099FF;
}

/* MAIN WORD SECTION */
.main-word-section {
  width: 100vw;
  height: auto;
  min-height: 888px;
  background-image: url('imgs/main_word_back.png');
  background-position: center;
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 72px;
  padding-bottom: 40px;
  box-sizing: border-box;
}

.main-word-inner {
  width: 100vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.main-word-title {
  display: block;
  margin: 0 auto;
  margin-top: 0;
}

.main-word-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.main-word-en1, .main-word-en2 {
  color: #CEE3F7;
  font-size: 24px;
  font-family: 'Pretendard', sans-serif;
  font-weight: 500;
  line-height: 36px;
  text-align: center;
  margin-bottom: 20px;
}

.main-word-ko1, .main-word-ko2 {
  color: #fff;
  font-size: 20px;
  font-family: 'Pretendard', sans-serif;
  font-weight: 300;
  line-height: 30px;
  text-align: center;
  margin-bottom: 24px;
}

.main-word-ref1, .main-word-ref2 {
  color: #1FA6EA;
  font-size: 20px;
  font-family: 'Pretendard', sans-serif;
  font-weight: 500;
  line-height: 30px;
  text-align: center;
  margin-bottom: 0;
}

.main-word-block + .main-word-block {
  margin-top: 80px !important;
}

/* SECOND WORD SECTION */
.second-word-section {
  width: 100vw;
  height: 1055px;
  background: #0D0D0D;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 0;
  margin-top: 20px;
}

.second-word-inner {
  width: 100vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.second-word-title {
  width: 779px;
  max-width: 100vw;
  height: auto;
  display: block;
  margin: 0 auto;
}

.second-word-content {
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 133px;
  position: absolute;
  top: 248px;
  left: 0;
}

.second-word-col {
  /* display: flex; */
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.second-word-blue-big {
  color: #1FA6EA;
  font-size: 38px;
  font-family: 'Pretendard', sans-serif;
  font-weight: 500;
  line-height: 57px;
  margin-bottom: 0;
}

.second-word-blue-light {
  color: #CEE3F7;
  font-size: 38px;
  font-family: 'Pretendard', sans-serif;
  font-weight: 500;
  line-height: 57px;
  margin-bottom: 0;
}

.second-word-blue-bold {
  color: #1FA6EA;
  font-size: 18px;
  font-family: 'Pretendard', sans-serif;
  font-weight: 700;
  line-height: 27px;
}

.second-word-blue {
  color: #1FA6EA;
  font-size: 18px;
  font-family: 'Pretendard', sans-serif;
  font-weight: 500;
  line-height: 27px;
}

.second-word-blue-light.small {
  color: #CEE3F7;
  font-size: 18px;
  font-family: 'Pretendard', sans-serif;
  font-weight: 500;
  line-height: 27px;
}

.second-word-col2 {
  max-width: 600px;
  align-self: flex-end;
  text-align: right;
}

.second-word-col2 span {
  text-align: left;
  display: block;
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(60px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-up {
  opacity: 0;
  transform: translateY(60px);
}
.fade-up.in-view {
  animation: fadeUp 1s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}
.fade-up.delay-1 { animation-delay: 0.2s; }
.fade-up.delay-2 { animation-delay: 0.4s; }
.fade-up.delay-3 { animation-delay: 0.6s; }

/* SCHEDULE SECTION */
.schedule-section {
  width: 100%;
  margin-top: clamp(80px, 12vw, 124px);
  box-sizing: border-box;
  display: flex;
  justify-content: center;
}

.schedule-inner {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-sizing: border-box;
}

.schedule-title-img-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  padding: 0 40px;
  justify-content: flex-start;
}

.schedule-title-img {
  width: 295px;
  height: auto;
  margin-bottom: 55px;
  align-self: flex-start;
}

.schedule-box {
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(4.95px);
  border-radius: 30px;
  padding: 60px 0px;
  box-sizing: border-box;
}

.schedule-table {
  width: 100%;
  max-width: 1124px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.schedule-row {
  display: flex;
  align-items: flex-start;
  gap: 80px;
  width: 100%;
  border-bottom: 1px solid rgba(0, 130, 255, 0.2);
  padding-bottom: 28px;
}

.schedule-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.schedule-label {
  flex-shrink: 0;
  width: 120px;
  color: #0082FF;
  font-size: 22px;
  font-family: 'Pretendard', sans-serif;
  font-weight: 800;
  line-height: 33px;
  text-align: left;
}

.schedule-value-main {
  color: #0D0D0D;
  font-size: 22px;
  font-family: 'Pretendard', sans-serif;
  font-weight: 800;
  line-height: 33px;
}

.schedule-value-bold {
  color: #000;
  font-size: 22px;
  font-family: 'Pretendard', sans-serif;
  font-weight: 800;
  line-height: 33px;
}

.schedule-value-light {
  display: block;
  margin-top: 4px;
  color: #333;
  font-size: 18px;
  font-family: 'Pretendard', sans-serif;
  font-weight: 500;
  line-height: 27px;
}

.camp-extra-section {
  width: 100vw;
  min-height: calc(100vh - 260px);
  background-size: cover;
  background-image: url('imgs/sub_back.jpg');
  background-position: center top;
  position: relative;
  overflow: hidden;
  background-color: #0D0D0D;
  opacity: 1;
  transform: translateY(0);
  border-radius: 950px 950px 0 0;
  transition: none;
  margin-top: clamp(80px, 12vw, 150px);
}

.camp-extra-section.scrolled {
  transform: translateY(-200px);
  border-radius: 10px 10px 0 0;
}

.camp-extra-section .fade-up {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1);
}

.camp-extra-section .schedule-section {
  opacity: 0;
  transform: translateY(120px);
  transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1);
}

.camp-extra-section.animation-complete .fade-up {
  opacity: 1;
  transform: translateY(0);
}

.camp-extra-section.animation-complete .schedule-section {
  opacity: 1;
  transform: translateY(0);
}

.camp-extra-section.animation-complete .schedule-section {
  transition-delay: 0.1s;
}
.camp-extra-section.animation-complete #cast-section {
  transition-delay: 0.3s;
}
.camp-extra-section.animation-complete .faq-section {
  transition-delay: 0.5s;
}
.camp-extra-section.animation-complete .register-banner {
  transition-delay: 0.7s;
}
.camp-extra-section.animation-complete .map-section {
  transition-delay: 0.9s;
}

.camp-extra-bg {
  display: none;
}

/* CAST SECTION */
#cast-section {
  width: 100%;
  margin-top: clamp(80px, 12vw, 148px);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cast-section-title-img-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 55px auto;
  display: flex;
  padding: 0 40px;
  justify-content: flex-start;
}

.cast-section-title {
  max-width: 456px;
  width: 100%;
  height: auto;
  display: block;
}

.cast-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 0 40px;
  box-sizing: border-box;
}

.cast-card {
  position: relative;
  width: 172px;
  height: 571px;
  background: rgba(255, 255, 255, 0.50);
  border-radius: 30px;
  border: 2px white solid;
  backdrop-filter: blur(4.95px);
  transition: all 0.3s ease;
  cursor: pointer;
  overflow: hidden;
}

.cast-card:hover,
.cast-card.open {
  width: 792px;
  overflow-x: auto;
}

.cast-card.open .cast-card-content,
.cast-card:hover .cast-card-content {
  width: 100%;
  box-sizing: border-box;
  overflow-x: auto;
  opacity: 1;
}

.cast-card-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 183px;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
  overflow: hidden;
}

.cast-card-bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cast-card-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 43px 50px 0 50px;
  box-sizing: border-box;
  opacity: 0;
  transition: opacity 0.3s ease 0.1s;
}

/* DAY 텍스트는 닫힌 상태에서만 의사요소로 보이게 */
.cast-card:not(:hover):not(.open)::after {
  content: attr(data-day);
  position: absolute;
  top: 43px;
  left: 50%;
  transform: translateX(-50%);
  color: #0082FF;
  font-size: clamp(16px, 2.6vw, 20px);
  font-family: 'Pretendard', sans-serif;
  font-weight: 900;
  line-height: 37.50px;
  z-index: 10;
  pointer-events: none;
  text-align: center;
}

/* 열린 상태에서는 의사요소 완전히 제거 */
.cast-card:hover::after,
.cast-card.open::after {
  content: none !important;
  display: none !important;
  visibility: hidden !important;
}

.cast-card-header {
  margin-bottom: clamp(25px, 4vw, 35px);
}

.cast-day {
  color: #0082FF;
  font-size: 25px;
  font-family: 'Pretendard', sans-serif;
  font-weight: 900;
  line-height: 37.50px;
  margin: 0;
}

.cast-date {
  color: white;
  font-size: 25px;
  font-family: 'Pretendard', sans-serif;
  font-weight: 500;
  line-height: 37.50px;
  margin: 6px 0 0 0;
}

.cast-card-body {
  margin-top: clamp(70px, 10vw, 120px);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.cast-member-row {
  display: flex;
  align-items: center;
  gap: 28px;
}

.role {
  color: #0082FF;
  font-size: 20px;
  font-family: 'Pretendard', sans-serif;
  font-weight: 800;
  line-height: 30px;
  white-space: nowrap;
}
.role2 {
  color: #0082FF;
  font-size: 20px;
  font-family: 'Pretendard', sans-serif;
  font-weight: 800;
  line-height: 30px;
  margin-left: 102px;
  white-space: nowrap;
}

.name {
  color: black;
  font-size: 20px;
  font-family: 'Pretendard', sans-serif;
  font-weight: 800;
  line-height: 30px;
}

.guest {
  color: black;
  font-size: 20px;
  font-family: 'Pretendard', sans-serif;
  font-weight: 800;
  line-height: 30px;
}

.guest-with-profile {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
}

.profile-btn {
  padding: 0 14px;
  background: black;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: white;
  font-size: 18px;
  font-family: 'Pretendard', sans-serif;
  font-weight: 800;
  line-height: 27px;
  transition: all 0.3s ease;
}

.profile-btn:hover {
  background: #333;
  transform: scale(1.05);
}

.song-list-btn {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  width: 694px;
  height: 54px;
  background: #0082FF;
  border: none;
  border-radius: 60px;
  color: white;
  font-size: 24px;
  font-family: 'Pretendard', sans-serif;
  font-weight: 500;
  line-height: 36px;
  word-wrap: break-word;
  cursor: pointer;
}

/* POPUP STYLES 제거 - 미사용 팝업 관련 스타일 제거 */

/* FAQ SECTION */
.faq-section {
  width: 100%;
  margin-top: clamp(80px, 12vw, 148px);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.faq-title {
  width: 112px;
  height: auto;
  margin-bottom: 55px;
}

.faq-title-img-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  padding: 0 40px;
  justify-content: flex-start;
  align-items: center;
}

.faq-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 0 40px;
  box-sizing: border-box;
}

.faq-item {
  width: 100%;
  background: rgba(255, 255, 255, 0.60);
  border-radius: 25px;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
}

.faq-header {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 36px;
  box-sizing: border-box;
}

.faq-category {
  color: #0082FF;
  font-size: 20px;
  font-family: 'Pretendard', sans-serif;
  font-weight: 700;
  line-height: 30px;
  white-space: nowrap;
}

.faq-category.event-info {
  color: #00A616;
}

.faq-question {
  color: black;
  font-size: 24px;
  font-family: 'Pretendard', sans-serif;
  font-weight: 700;
  line-height: 36px;
  flex: 1;
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 36px;
  box-sizing: border-box;
}

.faq-item.open .faq-content {
  max-height: 300px;
  overflow-y: auto;
  padding: 0 36px 36px 36px;
}

.faq-answer {
  color: #565656;
  font-size: 20px;
  font-family: 'Pretendard', sans-serif;
  font-weight: 400;
  line-height: 30px;
  padding-top: 21px;
}

/* 등록 신청 배너 */
.register-banner {
  margin-top: clamp(80px, 12vw, 132px);
  width: 100%;
  height: clamp(400px, 65vw, 580px);
  position: relative;
  overflow: hidden;
}

.register-banner-bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(135deg, rgba(0, 130, 255, 0.10) 0%, rgba(0, 130.21, 255, 0.40) 100%);
}

.register-banner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.register-banner-content {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  box-sizing: border-box;
}

.register-text-img {
  max-width: 90%;
  height: auto;
  margin-bottom: 20px;
}

.register-text-img:last-of-type {
  margin-bottom: 40px;
}

.register-button {
  width: 748px;
  max-width: 90%;
  height: 86px;
  padding: 8px 24px;
  background: rgba(0, 0, 0, 0.85);
  border-radius: 300px;
  outline: 4px #0082FF solid;
  backdrop-filter: blur(2px);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 47px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.register-button:hover {
  background: rgba(0, 0, 0, 0.95);
  outline-color: #0066CC;
  transform: translateY(-2px);
}

.register-button-text {
  font-size: 32px;
  line-height: 24px;
  color: white;
  font-family: 'Pretendard', sans-serif;
  font-weight: 800;
  word-wrap: break-word;
}

.register-button-arrow {
  font-size: 32px;
  line-height: 24px;
  color: white;
  font-family: 'Pretendard', sans-serif;
  font-weight: 800;
  word-wrap: break-word;
}

/* MAP SECTION */
.map-section {
  width: 100%;
  margin-top: clamp(60px, 10vw, 79px);
  background: transparent;
  padding: 0;
}

.map-content {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.map-top {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0 40px;
  box-sizing: border-box;
}

.static-map {
  width: 100%;
  height: 547px;
  margin: 40px auto 0 auto;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #ccc;
  background: #eaeaea;
  position: relative;
}

.map-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 0;
}

.map-title-img {
  width: 113px;
  margin-bottom: 32px;
  margin-top: 32px;
}

.map-address {
  color: black;
  font-size: 20px;
  font-family: 'Pretendard', sans-serif;
  font-weight: 600;
  line-height: 30px;
  word-wrap: break-word;
  margin-bottom: 0;
}

.map-right {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  margin-top: 106px;
}

.map-btn {
  padding: 8px 32px;
  border-radius: 16px;
  border: none;
  font-size: 20px;
  font-family: 'Pretendard', sans-serif;
  font-weight: 800;
  line-height: 30px;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
}

.map-btn.kakao {
  background: black;
}

.map-btn.kakao:hover {
  background: #333;
  transform: translateY(-2px);
}

.map-btn.naver {
  background: #00D11C;
}

.map-btn.naver:hover {
  background: #00B318;
  transform: translateY(-2px);
}

.map-label {
  position: absolute;
  left: 50%;
  bottom: 60px;
  transform: translateX(-50%);
  color: rgba(179, 179, 179, 0.30);
  font-size: 100px;
  font-family: 'Pretendard', sans-serif;
  font-weight: 600;
  word-wrap: break-word;
  pointer-events: none;
  user-select: none;
}

/* FOOTER SECTION */
.footer-section {
  padding-top: clamp(40px, 6vw, 66px);
  padding-bottom: clamp(20px, 3vw, 30px);
  width: 100%;
  min-height: 200px;
  background: #0D0D0D;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.footer-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  background: #0D0D0D;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: clamp(60px, 8vw, 100px);
  padding: 0 40px;
  box-sizing: border-box;
}

.footer-brand {
  flex-shrink: 0;
  min-width: 120px;
  color: #D2D2D2;
  font-size: 20px;
  font-family: 'Pretendard', sans-serif;
  font-weight: 800;
  word-wrap: break-word;
}

.footer-content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: clamp(20px, 4vw, 32px);
}

.footer-links {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 8px;
}

.footer-link {
  color: #D2D2D2;
  font-size: 12px;
  font-family: 'Pretendard', sans-serif;
  font-weight: 600;
  text-decoration: underline;
  word-wrap: break-word;
  cursor: pointer;
}

.footer-divider {
  color: #D2D2D2;
  font-size: 12px;
  font-family: 'Pretendard', sans-serif;
  font-weight: 600;
  word-wrap: break-word;
}

.footer-info {
  width: 510px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 40px;
}

.footer-address {
  width: 227px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 4px;
}

.footer-contact {
  width: 115px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
}

.footer-contact-item {
  width: 188px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 4px;
}

.footer-label {
  color: #fff;
  font-size: 12px;
  font-family: 'Pretendard', sans-serif;
  font-weight: 600;
  word-wrap: break-word;
}

.footer-value {
  color: #8F8F8F;
  font-size: 10px;
  font-family: 'Pretendard', sans-serif;
  font-weight: 400;
  word-wrap: break-word;
}

.footer-copyright {
  flex-shrink: 0;
  min-width: 200px;
  color: #9D9D9D;
  font-size: 10px;
  font-family: 'Pretendard', sans-serif;
  font-weight: 400;
  word-wrap: break-word;
  text-align: center;
  line-height: 1.4;
}

/* 반응형 - 1200px 이하 */
@media (max-width: 1200px) {
  .main-header-inner {
    width: 100%;
    padding: 16px 32px;
    justify-content: center;
    align-items: center;
    position: relative;
  }
  
  .main-header-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
  
  .main-header-logo img {
    width: 365px;
    height: auto;
    aspect-ratio: 365 / 17;
  }

  .main-landing__title-row img{
    width: 1004px;
  }
  
  .main-header-nav {
    display: none;
  }
  
  .main-header-register {
    width: 200px;
    height: 44px;
    padding: 8px 24px;
    font-size: 16px;
    font-weight: 800;
    line-height: 24px;
    position: absolute;
    right: 32px;
  }
  
  .hamburger-menu {
    display: flex;
    position: absolute;
    left: clamp(16px, 3vw, 32px);
  }
  
  .main-header.active .mobile-menu {
    display: flex;
  }
  
  /* 랜딩 페이지 이미지 변경 */
  .left-panel {
    background-image: url('imgs/left_panel_1200.png');
  }
  
  .right-panel {
    background-image: url('imgs/right_panel_1200.png');
  }
  
  /* 메인 랜딩 이미지 크기 조정 */
  .main-landing__camp-title {
    width: clamp(350px, 45vw, 500px);
  }
  
  .main-landing__title-row {
    width: clamp(500px, 60vw, 800px);
  }
  
  .main-landing__info {
    width: clamp(300px, 40vw, 450px);
  }

  .main-landing__arrow {
    width: clamp(50px, 7vw, 65px);
  }
  
  /* open-btn 숨기기 */
  #open-btn {
    display: none;
  }
  
  /* main-word section 폰트 변경 */
  .main-word-section {
    padding-top: 90px;
  }

  .main-word-en1, .main-word-en2 {
    font-size: 22px;
    line-height: 33px;
  }
  
  .main-word-ko1, .main-word-ko2 {
    font-size: 18px;
    line-height: 27px;
  }
  
  /* main-word 줄바꿈 처리 */
  .main-word-en1 {
    max-width: 400px;
    word-break: break-word;
  }
  
  .main-word-en2 {
    max-width: 500px;
    word-break: break-word;
  }
  
  /* second-word section 변경 */
  .second-word-title {
    width: 778px;
    margin: 0 auto;
  }
  
  .second-word-content {
    gap: 60px;
    top: clamp(220px, 26vw, 248px);
  }
  
  .second-word-blue-big {
    font-size: 32px;
    line-height: 48px;
  }
  
  .second-word-blue-light {
    font-size: 32px;
    line-height: 48px;
  }
  
  /* schedule, cast, faq, map section 패딩 변경 */
  .schedule-title-img-container {
    padding: 0 clamp(20px, 4vw, 40px);
  }
  
  .cast-section-title-img-container {
    padding: 0 clamp(20px, 4vw, 40px);
  }
  
  .cast-container {
    padding: 0 clamp(20px, 4vw, 40px);
  }
  
  .faq-title-img-container {
    padding: 0 clamp(20px, 4vw, 40px);
  }
  
  .faq-container {
    padding: 0 clamp(20px, 4vw, 40px);
  }
  
  .map-top {
    padding: 0 clamp(20px, 4vw, 40px);
  }
  
  /* cast member 폰트 변경 */
  .role {
    font-size: 20px;
    line-height: 30px;
  }
  .role2 {
    font-size: 20px;
    line-height: 30px;
  }
  
  .name {
    font-size: 20px;
    line-height: 30px;
  }

  .guest {
    font-size: 20px;
    line-height: 30px;
  }
  
  .cast-day {
    font-size: 22px;
    line-height: 33px;
  }
  
  .cast-date {
    font-size: 25px;
    line-height: 37.50px;
  }
  
  .song-list-btn {
    font-size: 24px;
    line-height: 36px;
  }
  
  /* schedule section 폰트 변경 */
  .schedule-label {
    font-size: 22px;
    line-height: 33px;
  }
  
  .schedule-value-main {
    font-size: 20px;
    line-height: 30px;
  }
  
  .schedule-value-bold {
    font-size: 20px;
    line-height: 30px;
  }
  
  .schedule-value-light {
    font-size: 16px;
    line-height: 24px;
  }
  
  /* faq 폰트 변경 */
  .faq-category {
    font-size: 20px;
    line-height: 30px;
  }
  
  .faq-question {
    font-size: 24px;
    line-height: 36px;
  }
  
  /* banner 폰트 변경 */
  .register-text-img {
    font-size: 38px;
    line-height: 57px;
  }
  
  /* banner 이미지 변경 */
  .register-text-img {
    content: url('imgs/banner_text_1200.png');
  }
  
  .register-button-text {
    font-size: 38px;
    line-height: 24px;
  }
  
  .register-button-arrow {
    font-size: 38px;
    line-height: 24px;
  }
  
  /* map 폰트 변경 */
  .map-address {
    font-size: 20px;
    line-height: 30px;
  }

  .cast-card {
    position: relative;
    width: 172px;
  }
  
  .cast-card:hover,
  .cast-card.open {
    width: 792px;
  }

  .song-list-btn{
    width: 441px;
  }
}

/* 반응형 - 992px 이하 */
@media (max-width: 992px) {
  /* 헤더 반응형 수정 - 로고와 버튼 충돌 방지 */
  .main-header-logo img {
    width: clamp(280px, 35vw, 365px);
    height: auto;
    aspect-ratio: 365 / 17;
  }
  
  .main-header-register {
    width: clamp(150px, 20vw, 200px);
    font-size: clamp(14px, 1.8vw, 16px);
  }

  body.opened .main-landing {
    height: 100vh;
    max-height: 100vh;
    min-height: 100vh;
    background: url('imgs/title_back.jpg') center center/cover no-repeat !important;
    -webkit-background-size: cover !important;
    -moz-background-size: cover !important;
    -o-background-size: cover !important;
    background-size: cover !important;
    background-attachment: scroll !important;
  }

  .main-landing {
    height: 952px;
    max-height: 952px;
    min-height: 800px;
  }
  
  /* 랜딩 페이지 이미지 변경 */
  .left-panel {
    background-image: url('imgs/left_panel_992.png');
  }
  
  .right-panel {
    background-image: url('imgs/right_panel_992.png');
  }
  
  /* 메인 랜딩 이미지 크기 조정 */
  .main-landing__camp-title {
    width: clamp(300px, 40vw, 450px);
  }
  
  .main-landing__title-row {
    width: clamp(450px, 816px, 90vw);
  }

  .main-landing__title-row img{
    width: 816px;
    max-width: 100%;
  }
  
  .main-landing__info {
    width: clamp(280px, 38vw, 400px);
  }

  .main-landing__arrow {
    width: clamp(45px, 6vw, 60px);
  }
  
  /* open-btn 숨기기 */
  #open-btn {
    display: none;
  }
  
  /* main-word section 폰트 변경 */
  .main-word-section {
    padding-top: 90px;
  }

  .main-word-en1, .main-word-en2 {
    font-size: 22px;
    line-height: 33px;
  }
  
  .main-word-ko1, .main-word-ko2 {
    font-size: 18px;
    line-height: 27px;
  }
  
  /* main-word 줄바꿈 처리 */
  .main-word-en1 {
    max-width: 400px;
    word-break: break-word;
  }
  
  .main-word-en2 {
    max-width: 500px;
    word-break: break-word;
  }
  
  /* second-word section 변경 */
  .second-word-section {
    height: clamp(950px, 140vw, 1055px);
  }
  
  .second-word-title {
    width: 778px;
    margin: 0 auto;
  }
  
  .second-word-content {
    gap: 60px;
    padding: 0px clamp(40px, 8vw, 80px);
    top: clamp(220px, 28vw, 248px);
  }
  
  .second-word-blue-big {
    font-size: 26px;
    line-height: 39px;
  }
  
  .second-word-blue-light {
    font-size: 26px;
    line-height: 39px;
  }

  .second-word-blue-big .small {
    font-size: 16px;
    line-height: 24px;
  }
  
  .second-word-blue-light .small {
    font-size: 16px;
    line-height: 24px;
  }
  
  /* schedule, cast, faq, map section 패딩 변경 */
  .schedule-title-img-container {
    padding: 0 clamp(20px, 4vw, 40px);
  }
  
  .cast-section-title-img-container {
    padding: 0 clamp(20px, 4vw, 40px);
  }
  
  .cast-container {
    padding: 0 clamp(20px, 4vw, 40px);
  }
  
  .faq-title-img-container {
    padding: 0 clamp(20px, 4vw, 40px);
  }
  
  .faq-container {
    padding: 0 clamp(20px, 4vw, 40px);
  }
  
  .map-top {
    padding: 0 clamp(20px, 4vw, 40px);
  }
  
  /* schedule-box 패딩 변경 */
  .schedule-box {
    padding: 60px clamp(20px, 4vw, 40px);
  }
  
  /* cast member 폰트 변경 */
  .role {
    font-size: 20px;
    line-height: 30px;
  }
  .role2 {
    font-size: 20px;
    line-height: 30px;
    margin-left: clamp(20px, 3vw, 102px);
  }
  
  .name {
    font-size: 20px;
    line-height: 30px;
  }

  .guest {
    font-size: 20px;
    line-height: 30px;
  }
  
  .cast-day {
    font-size: 22px;
    line-height: 33px;
  }
  
  .cast-date {
    font-size: 25px;
    line-height: 37.50px;
  }
  
  .song-list-btn {
    font-size: 24px;
    line-height: 36px;
  }
  
  /* schedule section 폰트 변경 */
  .schedule-label {
    font-size: 22px;
    line-height: 33px;
  }
  
  .schedule-value-main {
    font-size: 20px;
    line-height: 30px;
  }
  
  .schedule-value-bold {
    font-size: 20px;
    line-height: 30px;
  }
  
  .schedule-value-light {
    font-size: 16px;
    line-height: 24px;
  }
  
  /* faq 폰트 변경 */
  .faq-category {
    font-size: 20px;
    line-height: 30px;
  }
  
  .faq-question {
    font-size: 24px;
    line-height: 36px;
  }
  
  /* banner 폰트 변경 */
  .register-text-img {
    font-size: 38px;
    line-height: 57px;
  }
  
  /* banner 이미지 변경 */
  .register-text-img {
    content: url('imgs/banner_text_1200.png');
  }
  
  .register-button-text {
    font-size: 38px;
    line-height: 24px;
  }
  
  .register-button-arrow {
    font-size: 38px;
    line-height: 24px;
  }
  
  /* map 폰트 변경 */
  .map-address {
    font-size: 20px;
    line-height: 30px;
  }

  .footer-inner{
    gap: clamp(40px, 6vw, 60px);
  }

  .footer-brand{
    min-width: 100px;
    font-size: clamp(18px, 2.5vw, 20px);
  }

  .footer-copyright {
    min-width: 180px;
    font-size: clamp(9px, 1.2vw, 10px);
  }

}

/* 반응형 - 850px 이하 (헤더 충돌 방지) */
@media (max-width: 850px) {
  .main-header-logo img {
    width: clamp(250px, 32vw, 300px);
    height: auto;
    aspect-ratio: 365 / 17;
  }
  
  .main-header-register {
    width: clamp(130px, 17vw, 160px);
    font-size: clamp(13px, 1.6vw, 15px);
    padding: clamp(6px, 1vw, 8px) clamp(18px, 2.5vw, 20px);
  }

  /* cast-card 점진적 크기 감소 시작 */
  .cast-card {
    width: clamp(580px, 90vw, 688px);
  }
  
  .cast-card:hover,
  .cast-card.open {
    width: clamp(580px, 90vw, 688px);
  }
  
  .cast-container {
    padding: 0 clamp(20px, 5vw, 40px);
  }

  /* main-word section 850px 조정 */
  .main-word-section {
    padding-top: 90px;
  }
}

/* 반응형 - 768px 이하 */
@media (max-width: 768px) {

  .main-header-logo img{
    content: url('imgs/header_logo_768.png');
    width: clamp(80px, 14vw, 106px);
    height: auto;
    aspect-ratio: 106 / 44;
  }

  /* .main-header-logo {
    position: absolute;
    left: clamp(60px, 12vw, 80px);
    transform: translateX(0);
  } */

  .main-header-register {
    width: clamp(100px, 16vw, 130px);
    height: clamp(36px, 5.2vw, 40px);
    padding: clamp(6px, 1vw, 8px) clamp(16px, 2.5vw, 20px);
    font-size: clamp(12px, 1.8vw, 14px);
    font-weight: 800;
    line-height: clamp(18px, 2.7vw, 21px);
    position: absolute;
    right: clamp(20px, 3.5vw, 28px);
  }

  .hamburger-menu {
    position: absolute;
    left: clamp(16px, 3vw, 24px);
  }

  body.opened .main-landing {
    height: 100vh;
    max-height: 100vh;
    min-height: 100vh;
    background: url('imgs/title_back.png') center center/cover no-repeat !important;
    -webkit-background-size: cover !important;
    -moz-background-size: cover !important;
    -o-background-size: cover !important;
    background-size: cover !important;
    background-attachment: scroll !important;
  }

  .main-landing {
    height: clamp(800px, 120vw, 1000px);
    max-height: clamp(800px, 120vw, 1000px);
    min-height: clamp(800px, 120vw, 1000px);
  }
  
  /* 랜딩 페이지 이미지 변경 - 배경과 텍스트 분리 */
  .left-panel {
    background-image: url('imgs/left_panel_bg_768.png');
    -webkit-background-size: cover;
    background-size: cover;
    background-position: center right;
    justify-content: flex-end;
  }
  
  .right-panel {
    background-image: url('imgs/right_panel_bg_768.png');
    -webkit-background-size: cover;
    background-size: cover;
    background-position: center left;
    justify-content: flex-start;
  }

  /* 텍스트 이미지를 위한 가상 요소 */
  .left-panel::after {
    content: '';
    display: block;
    width: clamp(250px, 41vw, 315px);
    height: 100vh;
    background-image: url('imgs/left_panel_text_768.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center right;
    z-index: 3;
  }

  .right-panel::after {
    content: '';
    display: block;
    width: clamp(250px, 41vw, 315px);
    height: 100vh;
    background-image: url('imgs/right_panel_text_768.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center left;
    z-index: 3;
  }

  .main-landing__camp-title {
    width: calc(300px + (100vw - 320px) * 0.4);
    max-width: 90vw;
  }

  .main-landing__title-row {
    width: calc(350px + (100vw - 320px) * 0.5);
    max-width: 90vw;
  }

  .main-landing__title-row img {
    content: url('imgs/main_title_768.png');
    width: 100%;
  }
  
  .main-landing__info {
    width: calc(250px + (100vw - 320px) * 0.35);
    max-width: 90vw;
  }

  .main-landing__arrow {
    width: calc(40px + (100vw - 320px) * 0.06);
    max-width: 80px;
  }
  
  /* open-btn 숨기기 */
  #open-btn {
    display: none;
  }

  /* main-word section 반응형 */
  .main-word-section {
    padding-top: clamp(90px, 15vw, 120px);
    height: auto;
    min-height: clamp(600px, 90vw, 800px);
  }

  .main-word-title {
    width: clamp(350px, 63vw, 482px);
    height: auto;
  }
  
  /* main-word section 폰트 변경 */
  .main-word-en1, .main-word-en2 {
    font-size: clamp(18px, 2.9vw, 22px);
    line-height: clamp(27px, 4.3vw, 33px);
  }
  
  .main-word-ko1, .main-word-ko2 {
    font-size: clamp(15px, 2.3vw, 18px);
    line-height: clamp(23px, 3.5vw, 27px);
  }
  
  /* main-word 줄바꿈 처리 */
  .main-word-en1 {
    max-width: clamp(350px, 67vw, 514px);
    word-break: break-word;
  }
  
  .main-word-en2 {
    max-width: clamp(400px, 71vw, 542px);
    word-break: break-word;
  }
  
  /* second-word section 반응형 */
  .second-word-section{
    height: clamp(1000px, 150vw, 1200px);
    min-height: clamp(1000px, 150vw, 1200px);
    padding-top: clamp(20px, 3vw, 40px);
  }

  .second-word-title {
    width: 778px;
    max-width: 100vw;
    height: auto;
    margin: 0;
  }
  
  /* second-word section 변경 */
  .second-word-content {
    gap: clamp(40px, 7.8vw, 60px);
    flex-direction: column;
    padding: 0px clamp(25px, 5.2vw, 40px);
    position: absolute;
    top: clamp(200px, 32vw, 248px);
  }

  .second-word-col{
    align-items: normal;
  }
  
  .second-word-col1 {
    align-self: flex-start;
    text-align: left;
    display: block;
  }
  
  .second-word-col1 .second-word-blue-big,
  .second-word-col1 .second-word-blue-light {
    white-space: pre-line;
    display: block;
  }
  
  .second-word-col2 {
    align-self: flex-end;
    text-align: right;
  }
  
  .second-word-col2 span {
    text-align: right;
    display: block;
  }
  
  .second-word-blue-big {
    font-size: clamp(20px, 3.4vw, 26px);
    line-height: clamp(30px, 5.1vw, 39px);
  }
  
  .second-word-blue-light {
    font-size: clamp(20px, 3.4vw, 26px);
    line-height: clamp(30px, 5.1vw, 39px);
  }

  .second-word-blue-light.small{
    font-size: clamp(14px, 2.1vw, 16px);
    line-height: clamp(20px, 3.1vw, 24px);
  }

  .second-word-blue-bold.small {
    font-size: clamp(14px, 2.1vw, 16px);
    line-height: clamp(20px, 3.1vw, 24px);
  }
  
  .second-word-blue.small{
    font-size: clamp(14px, 2.1vw, 16px);
    line-height: clamp(20px, 3.1vw, 24px);
  }
  
  /* schedule section 반응형 */
  .schedule-title-img {
    width: clamp(225px, 38.5vw, 295px);
    height: auto;
  }

  .schedule-title-img-container {
    padding: 0px clamp(25px, 5.2vw, 40px);
  }
  
  .schedule-box {
    padding: clamp(40px, 7.8vw, 60px) clamp(25px, 5.2vw, 40px);
  }

  /* schedule-row gap 변경 */
  .schedule-row {
    gap: clamp(30px, 6vw, 50px);
  }

  /* schedule section 폰트 변경 */
  .schedule-label {
    font-size: clamp(18px, 2.9vw, 22px);
    line-height: clamp(27px, 4.3vw, 33px);
  }
  
  .schedule-value-main {
    font-size: clamp(16px, 2.6vw, 20px);
    line-height: clamp(24px, 3.9vw, 30px);
  }
  
  .schedule-value-bold {
    font-size: clamp(16px, 2.6vw, 20px);
    line-height: clamp(24px, 3.9vw, 30px);
  }
  
  .schedule-value-light {
    font-size: clamp(14px, 2.1vw, 16px);
    line-height: clamp(20px, 3.1vw, 24px);
  }

  /* cast section 반응형 */
  .cast-section-title {
    width: clamp(340px, 59.4vw, 456px);
    height: auto;
  }

  .cast-section-title-img-container {
    padding: 0px clamp(25px, 5.2vw, 40px);
  }
  
  .cast-container {
    flex-direction: column;
    gap: clamp(30px, 5vw, 40px);
    padding: 0 clamp(25px, 6vw, 40px);
    width: 100%;
    align-items: center;
    justify-content: center;
  }
  
  .cast-card-content {
    opacity: 1;
  }
  
  /* cast member 컨텐츠 사이즈 변경 */
  .cast-card {
    position: relative;
    max-width: calc(100vw - 50px);
    width: clamp(300px, 90vw, 676px);
    height: clamp(400px, 70vw, 550px);
    max-height: 550px;
    margin: 0 auto;
  }
  
  .cast-card:hover,
  .cast-card.open {
    width: clamp(300px, 90vw, 676px);
    height: clamp(400px, 70vw, 550px);
    max-height: 550px;
  }
  
  .cast-card-content {
    opacity: 1;
    padding: clamp(20px, 4vw, 35px) clamp(20px, 4vw, 35px) clamp(80px, 12vw, 100px) clamp(20px, 4vw, 35px);
    box-sizing: border-box;
  }
  
  .cast-card::after {
    content: none !important;
    display: none !important;
    visibility: hidden !important;
  }

  .cast-card-bg-image {
    height: clamp(120px, 20vw, 183px);
    max-height: 183px;
  }

  .cast-card-body{
    margin-top: clamp(80px, 12vw, 120px);
  }
  .cast-member-row{
    gap : clamp(10px, 3.5vw, 25px);
  }
  
  /* cast member 폰트 변경 */
  .role {
    font-size: clamp(12px, 2.6vw, 20px);
    line-height: clamp(12px, 3.9vw, 30px);
  }

  .role2 {
    font-size: clamp(12px, 2.6vw, 20px);
    line-height: clamp(24px, 3.9vw, 30px);
    margin-left: clamp(20px, 8vw, 80px);
  }
  
  .name {
    font-size: clamp(12px, 2.6vw, 20px);
    line-height: clamp(24px, 3.9vw, 30px);
  }

  .guest {
    font-size: clamp(12px, 2.6vw, 20px);
    line-height: clamp(24px, 3.9vw, 30px);
  }
  
  .cast-day {
    font-size: clamp(18px, 2.9vw, 22px);
    line-height: clamp(27px, 4.3vw, 33px);
  }
  
  .cast-date {
    font-size: clamp(20px, 3.3vw, 25px);
    line-height: clamp(30px, 4.9vw, 37.50px);
  }
  
  .song-list-btn {
    font-size: clamp(14px, 2.5vw, 18px);
    line-height: clamp(21px, 3.8vw, 27px);
    width: clamp(220px, 65vw, 350px);
    bottom: clamp(20px, 4vw, 30px);
    height: clamp(40px, 6vw, 48px);
  }

  /* faq section 반응형 */
  .faq-title {
    width: clamp(85px, 14.6vw, 112px);
    height: auto;
  }

  .faq-title-img-container {
    padding: 0px clamp(25px, 5.2vw, 40px);
  }
  
  .faq-container {
    padding: 0 clamp(25px, 5.2vw, 40px);
  }

  /* faq 폰트 변경 */
  .faq-category {
    font-size: clamp(16px, 2.6vw, 20px);
    line-height: clamp(24px, 3.9vw, 30px);
  }
  
  .faq-question {
    font-size: clamp(16px, 2.6vw, 20px);
    line-height: clamp(24px, 3.9vw, 30px);
  }

  .faq-answer {
    font-size: clamp(16px, 2.6vw, 20px);
    line-height: clamp(24px, 3.9vw, 30px);
  }

  /* register banner 반응형 */
  .register-text-img {
    width: clamp(85%, 92vw, 90%);
    height: auto;
  }
  
  .register-button {
    width: clamp(450px, 75vw, 573px);
    max-width: 90%;
    height: clamp(60px, 9.5vw, 72px);
  }
  
  .register-button-text {
    font-size: clamp(25px, 4.2vw, 32px);
    line-height: clamp(18px, 3.1vw, 24px);
  }
  
  .register-button-arrow {
    font-size: clamp(25px, 4.2vw, 32px);
    line-height: clamp(18px, 3.1vw, 24px);
  }

  /* map section 반응형 */
  .map-title-img {
    width: clamp(85px, 14.7vw, 113px);
    height: auto;
  }

  .map-top {
    padding: 0 clamp(25px, 5.2vw, 40px);
  }

  .map-right{
    margin-top: clamp(20px, 3.9vw, 30px);
    flex-direction: column;
    gap: clamp(18px, 3.1vw, 24px);
  }

  .map-btn {
    padding: clamp(6px, 1vw, 8px) clamp(25px, 4.2vw, 32px);
    font-size: clamp(16px, 2.6vw, 20px);
    line-height: clamp(24px, 3.9vw, 30px);
  }
  
  /* map 폰트 변경 */
  .map-address {
    font-size: clamp(16px, 2.6vw, 20px);
    line-height: clamp(24px, 3.9vw, 30px);
  }

  /* footer section 반응형 */
  .footer-section {
    padding-top: clamp(30px, 5vw, 50px);
    padding-bottom: clamp(20px, 3vw, 30px);
  }

  .footer-inner{
    flex-direction: column;
    gap: clamp(25px, 4vw, 35px);
    padding: 0 clamp(25px, 5.2vw, 40px);
    text-align: center;
  }

  .footer-brand{
    min-width: auto;
    font-size: clamp(16px, 2.6vw, 20px);
    align-self: center;
  }

  .footer-content{
    width: 100%;
    align-items: center;
    gap: clamp(20px, 3.5vw, 25px);
  }
  
  .footer-links {
    justify-content: center;
    flex-wrap: wrap;
    gap: clamp(8px, 1.5vw, 12px);
  }

  .footer-info{
    width: 100%;
    justify-content: center;
    gap: clamp(20px, 4vw, 30px);
  }

  .footer-address{
    text-align: center;
    width: auto;
  }

  .footer-contact{
    text-align: center;
    width: auto;
  }

  .footer-link {
    font-size: clamp(10px, 1.6vw, 12px);
    padding: 4px 2px;
    min-height: 24px;
    display: inline-flex;
    align-items: center;
  }

  .footer-divider {
    font-size: clamp(10px, 1.6vw, 12px);
  }

  .footer-label {
    font-size: clamp(10px, 1.6vw, 12px);
  }

  .footer-value {
    font-size: clamp(8px, 1.3vw, 10px);
  }

  .footer-copyright {
    min-width: auto;
    width: 100%;
    font-size: clamp(8px, 1.3vw, 10px);
  }

  /* 모바일에서 배경 크기 조정 */
  .camp-extra-section {
    background-size: contain;
    background-repeat: no-repeat;
    background-color: #CEE3F7;
  }

  /* 모바일에서는 DAY 텍스트 중앙정렬 유지 (삭제하지 않음) */



  /* .main-landing__content{
    margin-top: 72px;
  } */

  /* camp-extra-section 모바일 여백 조정 */
  .camp-extra-section {
    margin-top: clamp(60px, 10vw, 120px);
  }

  /* 스크롤 패딩 조정 */
  body.opened, html.opened {
    scroll-padding-top: clamp(72px, 12vw, 90px);
  }

  /* iOS Safari 전용 배경 설정 */
  @supports (-webkit-touch-callout: none) {
    body.opened .main-landing {
      background: url('imgs/title_back.jpg') center center no-repeat !important;
      background-size: cover !important;
      -webkit-background-size: cover !important;
      background-attachment: scroll !important;
      position: relative !important;
    }
    
    /* iOS viewport height 문제 해결 */
    body.opened .main-landing {
      height: 100vh !important;
      max-height: 100vh !important;
      min-height: 100vh !important;
      height: -webkit-fill-available !important;
    }
    
    /* iOS Safe Area 대응 */
    .cast-container {
      padding-left: max(clamp(25px, 6vw, 40px), env(safe-area-inset-left));
      padding-right: max(clamp(25px, 6vw, 40px), env(safe-area-inset-right));
    }
    
    .main-header {
      padding-top: env(safe-area-inset-top);
    }
  }
}

/* ============================================
   팝업 스타일
============================================ */

/* 새로운 게스트 팝업 디자인 */
.guest-popup-content {
  width: 732px;
  height: 915px;
  background: linear-gradient(136deg, #FBFEFF 0%, #33AEF9 100%);
  border-radius: 30px;
  backdrop-filter: blur(4.95px);
  position: relative;
  animation: popupSlideIn 0.3s ease-out;
  overflow: hidden;
}

.guest-popup-close {
  position: absolute;
  right: 46px;
  top: 52.5px;
  cursor: pointer;
  z-index: 10;
}

.guest-header {
  position: absolute;
  left: 46px;
  top: 43px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.guest-title-main {
  color: #0082FF;
  font-size: 25px;
  font-family: 'Pretendard', sans-serif;
  font-weight: 900;
  line-height: 37.5px;
}

.guest-subtitle {
  color: #0082FF;
  font-size: 25px;
  font-family: 'Pretendard', sans-serif;
  font-weight: 500;
  line-height: 37.5px;
}

.guest-content {
  position: absolute;
  left: 46px;
  top: 115px;
  width: 623px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-height: calc(100% - 160px);
  overflow-y: auto;
  padding-right: 10px;
}

/* 게스트 팝업 스크롤바 스타일 */
.guest-content::-webkit-scrollbar {
  width: 6px;
}

.guest-content::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 3px;
}

.guest-content::-webkit-scrollbar-thumb {
  background: rgba(0, 130, 255, 0.6);
  border-radius: 3px;
}

.guest-content::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 130, 255, 0.8);
}

.guest-name {
  color: black;
  font-size: 24px;
  font-family: 'Pretendard', sans-serif;
  font-weight: 800;
  line-height: 36px;
  margin-bottom: 10px;
}

.guest-description {
  color: black;
  font-size: 18px;
  font-family: 'Pretendard', sans-serif;
  font-weight: 400;
  line-height: 27px;
  white-space: pre-line;
}

.guest-section {
  margin-bottom: 20px;
}

.guest-section-title {
  color: #0082FF;
  font-size: 20px;
  font-family: 'Pretendard', sans-serif;
  font-weight: 700;
  line-height: 30px;
  margin-bottom: 10px;
}

.member-info {
  background: rgba(255, 255, 255, 0.7);
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 10px;
  border-left: 4px solid #0082FF;
}

.member-name {
  color: #0082FF;
  font-size: 18px;
  font-family: 'Pretendard', sans-serif;
  font-weight: 700;
  line-height: 27px;
  margin-bottom: 5px;
}

.member-details {
  color: #333;
  font-size: 16px;
  font-family: 'Pretendard', sans-serif;
  font-weight: 400;
  line-height: 24px;
}

/* 송리스트 버튼 활성화 스타일 */
.song-list-btn.active {
  cursor: pointer;
  opacity: 1;
}

/* 팝업 오버레이 */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  padding: 20px;
}

/* 팝업 컨텐츠 */
.popup-content {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  animation: popupSlideIn 0.3s ease-out;
}

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

/* 팝업 헤더 */
.popup-header {
  padding: 30px 30px 20px;
  border-bottom: 2px solid #f0f0f0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(135deg, #0077FF 0%, #0056CC 100%);
  color: white;
  border-radius: 20px 20px 0 0;
}

.popup-header h2 {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  font-family: 'Pretendard', sans-serif;
}

.popup-close {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  font-size: 28px;
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.popup-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(90deg);
}

/* 팝업 바디 */
.popup-body {
  padding: 30px;
  color: #333;
  line-height: 1.6;
}

/* 게스트 프로필 */
#guest-profile {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.guest-image {
  text-align: center;
}

.guest-image img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #0077FF;
}

.guest-info h3 {
  color: #0077FF;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
  text-align: center;
}

.guest-info p {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
  text-align: center;
}

/* 새로운 송리스트 팝업 디자인 */
.songlist-popup-content {
  width: 732px;
  height: 915px;
  background: linear-gradient(136deg, #FBFEFF 0%, #33AEF9 100%);
  border-radius: 30px;
  backdrop-filter: blur(4.95px);
  position: relative;
  animation: popupSlideIn 0.3s ease-out;
  overflow: hidden;
}

.songlist-popup-close {
  position: absolute;
  right: 46px;
  top: 52.5px;
  cursor: pointer;
  z-index: 10;
}

.close-icon {
  width: 24px;
  height: 2px;
  background: white;
  outline: 2px white solid;
  outline-offset: -1px;
  position: absolute;
  transform: rotate(45deg);
}

.close-icon.rotated {
  transform: rotate(-45deg);
}

.songlist-header {
  position: absolute;
  left: 46px;
  top: 43px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.songlist-day {
  color: #0082FF;
  font-size: 25px;
  font-family: 'Pretendard', sans-serif;
  font-weight: 900;
  line-height: 37.5px;
}

.songlist-text {
  color: #0082FF;
  font-size: 25px;
  font-family: 'Pretendard', sans-serif;
  font-weight: 500;
  line-height: 37.5px;
}

.songlist-items {
  position: absolute;
  left: 46px;
  top: 115px;
  width: 623px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-height: calc(100% - 160px);
  overflow-y: auto;
  padding-right: 10px;
}

/* 송리스트 팝업 스크롤바 스타일 */
.songlist-items::-webkit-scrollbar {
  width: 6px;
}

.songlist-items::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 3px;
}

.songlist-items::-webkit-scrollbar-thumb {
  background: rgba(0, 130, 255, 0.6);
  border-radius: 3px;
}

.songlist-items::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 130, 255, 0.8);
}

.song-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.song-item.with-play {
  justify-content: space-between;
}

.song-item.without-play {
  justify-content: flex-start;
}

.song-title {
  color: black;
  font-size: 20px;
  font-family: 'Pretendard', sans-serif;
  font-weight: 800;
  line-height: 30px;
  flex: 1;
}

.song-composer {
  color: #666;
  font-size: 16px;
  font-family: 'Pretendard', sans-serif;
  font-weight: 400;
  line-height: 24px;
  margin-top: 2px;
}

.play-button {
  padding: 0 14px;
  background: #0082FF;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.play-button:hover {
  background: #0066CC;
  transform: scale(1.05);
}

.play-text {
  color: white;
  font-size: 20px;
  font-family: 'Pretendard', sans-serif;
  font-weight: 800;
  line-height: 30px;
}

/* 게스트 팝업 반응형 디자인 */
@media (max-width: 768px) {
  .guest-popup-content {
    width: 90vw;
    max-width: 500px;
    height: 80vh;
    max-height: 700px;
    border-radius: 20px;
  }
  
  .guest-header {
    left: 30px;
    top: 30px;
  }
  
  .guest-title-main, .guest-subtitle {
    font-size: 20px;
    line-height: 30px;
  }
  
  .guest-popup-close {
    right: 30px;
    top: 35px;
  }
  
  .guest-content {
    left: 30px;
    top: 80px;
    width: calc(100% - 60px);
    max-height: calc(100% - 120px);
  }
  
  .guest-name {
    font-size: 20px;
    line-height: 30px;
  }
  
  .guest-description {
    font-size: 16px;
    line-height: 24px;
  }
  
  .guest-section-title {
    font-size: 18px;
    line-height: 27px;
  }
  
  .member-name {
    font-size: 16px;
    line-height: 24px;
  }
  
  .member-details {
    font-size: 14px;
    line-height: 21px;
  }
  
  .profile-btn {
    font-size: 16px;
    line-height: 24px;
    padding: 0 12px;
  }
  
  .guest {
    font-size: clamp(12px, 2.6vw, 20px);
    line-height: clamp(24px, 3.9vw, 30px);
  }
}

@media (max-width: 480px) {
  /* 더 작은 화면에서 cast 카드 최적화 */
  .cast-card {
    width: clamp(280px, 95vw, 400px);
    height: clamp(350px, 80vw, 480px);
    max-height: 480px;
  }
  
  .cast-card:hover,
  .cast-card.open {
    width: clamp(280px, 95vw, 400px);
    height: clamp(350px, 80vw, 480px);
    max-height: 480px;
  }
  
  .cast-container {
    gap: clamp(25px, 6vw, 35px);
    padding: 0 clamp(15px, 4vw, 25px);
  }
  
  .cast-card-content {
    padding: clamp(15px, 3vw, 25px) clamp(15px, 3vw, 25px) clamp(70px, 15vw, 90px) clamp(15px, 3vw, 25px);
  }
  
  .cast-card-body {
    margin-top: clamp(70px, 15vw, 100px);
    gap: clamp(12px, 3vw, 18px);
  }
  
  .cast-member-row {
    gap: clamp(8px, 2vw, 15px);
    flex-wrap: wrap;
  }
  
  .role2 {
    margin-left: clamp(2px, 2vw, 30px);
  }
  
  .song-list-btn {
    width: clamp(200px, 70vw, 300px);
    height: clamp(35px, 8vw, 45px);
    font-size: clamp(12px, 3vw, 16px);
    line-height: clamp(18px, 4.5vw, 24px);
    bottom: clamp(15px, 4vw, 25px);
  }

  .guest-popup-content {
    width: 95vw;
    height: 85vh;
    border-radius: 15px;
  }
  
  .guest-header {
    left: 20px;
    top: 20px;
  }
  
  .guest-title-main, .guest-subtitle {
    font-size: 18px;
    line-height: 27px;
  }
  
  .guest-popup-close {
    right: 20px;
    top: 25px;
  }
  
  .guest-content {
    left: 20px;
    top: 70px;
    width: calc(100% - 40px);
  }
  
  .guest-name {
    font-size: 18px;
    line-height: 27px;
  }
  
  .guest-description {
    font-size: 14px;
    line-height: 21px;
  }
  
  .guest-section-title {
    font-size: 16px;
    line-height: 24px;
  }
  
  .member-name {
    font-size: 14px;
    line-height: 21px;
  }
  
  .member-details {
    font-size: 12px;
    line-height: 18px;
  }
  
  .profile-btn {
    font-size: 14px;
    line-height: 21px;
    padding: 0 10px;
  }
}

/* 송리스트 팝업 반응형 디자인 */
@media (max-width: 768px) {
  .songlist-popup-content {
    width: 90vw;
    max-width: 500px;
    height: 80vh;
    max-height: 700px;
    border-radius: 20px;
  }
  
  .songlist-header {
    left: 30px;
    top: 30px;
  }
  
  .songlist-day, .songlist-text {
    font-size: 20px;
    line-height: 30px;
  }
  
  .songlist-popup-close {
    right: 30px;
    top: 35px;
  }
  
  .close-icon {
    width: 20px;
  }
  
  .songlist-items {
    left: 30px;
    top: 80px;
    width: calc(100% - 60px);
    gap: 15px;
    max-height: calc(100% - 120px);
    overflow-y: auto;
  }
  
  .song-title {
    font-size: 16px;
    line-height: 24px;
  }
  
  .song-composer {
    font-size: 13px;
    line-height: 20px;
  }
  
  .play-button {
    padding: 8px 12px;
  }
  
  .play-text {
    font-size: 16px;
    line-height: 24px;
  }
}

@media (max-width: 480px) {
  .songlist-popup-content {
    width: 95vw;
    height: 85vh;
    border-radius: 15px;
  }
  
  .songlist-header {
    left: 20px;
    top: 20px;
  }
  
  .songlist-day, .songlist-text {
    font-size: 18px;
    line-height: 27px;
  }
  
  .songlist-popup-close {
    right: 20px;
    top: 25px;
  }
  
  .close-icon {
    width: 18px;
  }
  
  .songlist-items {
    left: 20px;
    top: 70px;
    width: calc(100% - 40px);
    gap: 12px;
  }
  
  .song-title {
    font-size: 14px;
    line-height: 21px;
  }
  
  .song-composer {
    font-size: 11px;
    line-height: 16px;
  }
  
  .play-button {
    padding: 6px 10px;
  }
  
  .play-text {
    font-size: 14px;
    line-height: 21px;
  }
}

/* 기존 게스트 팝업 반응형 */
@media (max-width: 768px) {
  .popup-content {
    margin: 10px;
    max-height: 90vh;
    border-radius: 15px;
  }
  
  .popup-header {
    padding: 20px 20px 15px;
    border-radius: 15px 15px 0 0;
  }
  
  .popup-header h2 {
    font-size: 20px;
  }
  
  .popup-close {
    width: 35px;
    height: 35px;
    font-size: 24px;
  }
  
  .popup-body {
    padding: 20px;
  }
  
  .guest-image img {
    width: 100px;
    height: 100px;
  }
  
  .guest-info h3 {
    font-size: 18px;
  }
  
  .guest-info p {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .popup-content {
    margin: 5px;
    max-height: 95vh;
    border-radius: 10px;
  }
  
  .popup-header {
    padding: 15px 15px 10px;
    border-radius: 10px 10px 0 0;
  }
  
  .popup-header h2 {
    font-size: 18px;
  }
  
  .popup-close {
    width: 30px;
    height: 30px;
    font-size: 20px;
  }
  
  .popup-body {
    padding: 15px;
  }
  
  .guest-image img {
    width: 80px;
    height: 80px;
  }
  
  .guest-info h3 {
    font-size: 16px;
  }
  
  .guest-info p {
    font-size: 13px;
  }
  
  .song-list li {
    padding: 8px 12px;
    font-size: 13px;
  }

  /* 소형 모바일 풋터 스타일 */
  .footer-inner {
    gap: 20px;
    padding: 0 20px;
  }

  .footer-info {
    flex-direction: column;
    gap: 15px;
  }

  .footer-links {
    gap: 6px;
  }

  .footer-link,
  .footer-divider {
    font-size: 10px;
  }

  .footer-link {
    padding: 4px 2px;
    min-height: 24px;
  }
}