@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;800&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,400&family=Montserrat:wght@200;300;400;500;600;700&family=Noto+Sans+KR:wght@300;400;500;700&family=Noto+Serif+KR:wght@300;400;600&display=swap');
@import url('variables.css');

/* ===================================================================
   [1. 리셋 및 글로벌 기본 스타일]
   =================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-sans);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body {
  overflow-x: hidden;
  line-height: 1.6;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  min-height: 100vh;
}

/* 커스텀 스크롤바 */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: #282832;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-gold);
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

button {
  background: none;
  border: none;
  color: inherit;
  font-family: inherit;
  cursor: pointer;
  outline: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ===================================================================
   [2. 상단 헤더 & 네비게이션]
   =================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  transition: background-color var(--transition-normal), backdrop-filter var(--transition-normal), box-shadow var(--transition-normal);
  background: transparent;
}

.site-header.scrolled {
  background: var(--bg-glass);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  border-bottom: 1px solid var(--border-subtle);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  width: 100%;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 32px;
}

/* 좌측 로고 */
.site-logo {
  display: flex;
  align-items: center;
  z-index: 1010;
  flex-shrink: 0;
}

.site-logo a {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  color: #ffffff;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
  padding: 4px 0;
  transition: all var(--transition-normal);
  white-space: nowrap !important;
  word-break: keep-all;
  flex-shrink: 0;
}

.site-logo a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-gold);
  transition: width var(--transition-normal);
}

.site-logo a:hover {
  color: var(--accent-gold-light);
  text-shadow: 0 0 15px var(--accent-gold-glow);
}

.site-logo a:hover::after {
  width: 100%;
}

/* 중앙 네비게이션 메뉴 */
.main-nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.8);
  position: relative;
  padding: 8px 4px;
  transition: color var(--transition-fast);
}

.nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--accent-gold);
  transition: width var(--transition-normal);
}

.nav-link:hover,
.nav-link.active {
  color: #ffffff;
}

.nav-link:hover::before,
.nav-link.active::before {
  width: 100%;
}

/* 우측 액션 영역 (언어 선택 & 모바일 토글) */
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* 우측 다국어 선택기 (컴팩트 드롭다운 셀렉트박스) */
.lang-select-wrapper {
  position: relative;
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.45);
  border-radius: var(--radius-full);
  padding: 5px 12px 5px 11px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  cursor: pointer;
  user-select: none;
  transition: all var(--transition-fast);
}

.lang-select-wrapper:hover,
.lang-select-wrapper:focus-within {
  background: rgba(255, 255, 255, 0.14);
  border-color: var(--accent-gold);
  box-shadow: 0 0 14px rgba(212, 175, 55, 0.35);
}

.lang-globe-icon {
  font-size: 0.85rem;
  color: var(--accent-gold);
  margin-right: 7px;
  pointer-events: none;
  flex-shrink: 0;
}

.lang-select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  outline: none;
  color: #ffffff;
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 0 16px 0 0;
  cursor: pointer;
}

.lang-select option {
  background-color: #16161c;
  color: #ffffff;
  font-size: 0.88rem;
  padding: 8px 12px;
}

.lang-chevron-icon {
  position: absolute;
  right: 11px;
  font-size: 0.65rem;
  color: var(--accent-gold-light);
  pointer-events: none;
  transition: transform var(--transition-fast);
}

.lang-select-wrapper:focus-within .lang-chevron-icon {
  transform: rotate(180deg);
}

/* 기존 버튼형 언어 선택기 (하위 호환) */
.lang-selector {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.06);
  padding: 4px 8px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-subtle);
  backdrop-filter: blur(10px);
}

.lang-btn {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  padding: 5px 11px;
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
}

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

.lang-btn.active {
  color: #0c0c0e;
  background: var(--accent-gold-light);
  font-weight: 700;
  box-shadow: 0 2px 8px var(--accent-gold-glow);
}

/* 모바일 메뉴 토글 버튼 */
.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  z-index: 1010;
}

.mobile-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: #ffffff;
  border-radius: 2px;
  transition: all var(--transition-normal);
}

.mobile-toggle.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}
.mobile-toggle.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* ===================================================================
   [3. 메인 히어로 섹션 (Hero Visual)]
   =================================================================== */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 720px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  overflow: hidden;
  background-color: #050507;
}

.hero-bg-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  filter: brightness(0.92) contrast(1.05);
  animation: heroZoom 14s infinite alternate ease-in-out;
}

@keyframes heroZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.04); }
}

/* 히어로 오버레이 (사진 가독성 & 우아한 비네팅 그라데이션) */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    linear-gradient(to top, rgba(10, 10, 12, 0.95) 0%, rgba(10, 10, 12, 0.4) 30%, transparent 60%),
    linear-gradient(to bottom, rgba(10, 10, 12, 0.7) 0%, transparent 25%),
    linear-gradient(to left, rgba(10, 10, 12, 0.85) 0%, rgba(10, 10, 12, 0.3) 35%, transparent 70%);
  pointer-events: none;
  z-index: 2;
}

/* 사진 오른쪽 하단 이름 & 타이틀 (요구사항 1) */
.hero-content {
  position: relative;
  z-index: 3;
  padding: 0 60px 80px 0;
  text-align: right;
  max-width: 650px;
  animation: fadeInUp 1.2s ease-out;
}

.hero-title-group {
  margin-bottom: 20px;
}

.hero-sub {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  letter-spacing: 0.35em;
  color: var(--accent-gold);
  text-transform: uppercase;
  margin-bottom: 8px;
  font-weight: 600;
}

.hero-name {
  font-family: var(--font-display);
  font-size: 4.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: #ffffff;
  line-height: 1.05;
  text-transform: uppercase;
  text-shadow: 0 4px 25px rgba(0, 0, 0, 0.8);
}

.hero-quote {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 300;
  font-style: italic;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.05em;
  line-height: 1.6;
  margin-top: 14px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9);
}

.hero-cta {
  margin-top: 28px;
  display: flex;
  justify-content: flex-end;
  gap: 16px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent-gold);
  color: #0c0c0e;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  box-shadow: 0 4px 15px var(--accent-gold-glow);
  transition: all var(--transition-normal);
}

.btn-primary:hover {
  background: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.25);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  padding: 13px 26px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  backdrop-filter: blur(10px);
  transition: all var(--transition-normal);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: #ffffff;
  transform: translateY(-2px);
}

/* 스크롤 다운 인디케이터 */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.scroll-indicator .mouse {
  width: 22px;
  height: 36px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 12px;
  position: relative;
}

.scroll-indicator .wheel {
  width: 4px;
  height: 8px;
  background: var(--accent-gold);
  border-radius: 2px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: mouseWheel 2s infinite;
}

@keyframes mouseWheel {
  0% { opacity: 1; transform: translate(-50%, 0); }
  100% { opacity: 0; transform: translate(-50%, 14px); }
}

/* ===================================================================
   [4. 공통 섹션 헤더]
   =================================================================== */
.section {
  padding: 120px 0;
  position: relative;
  background-color: var(--bg-primary);
}

.section.alt-bg {
  background-color: var(--bg-secondary);
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-en-title {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: #ffffff;
  position: relative;
  padding-bottom: 16px;
  text-transform: uppercase;
}

.section-en-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 2px;
  background: var(--accent-gold);
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-top: 16px;
  letter-spacing: 0.04em;
  font-weight: 300;
}

/* 공통 필터 버튼 */
.filter-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 48px;
}

.filter-btn {
  padding: 8px 22px;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--text-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.03);
  transition: all var(--transition-fast);
}

.filter-btn:hover {
  color: #ffffff;
  border-color: var(--border-light);
  background: rgba(255, 255, 255, 0.08);
}

.filter-btn.active {
  color: #0c0c0e;
  background: var(--accent-gold);
  border-color: var(--accent-gold);
  font-weight: 700;
  box-shadow: 0 4px 15px var(--accent-gold-glow);
}

/* ===================================================================
   [5. 필모그래피 (Filmography)]
   =================================================================== */
.filmo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 32px;
}

.filmo-card {
  background: var(--bg-tertiary);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  transition: transform var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.filmo-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-gold);
  box-shadow: var(--shadow-hover);
}

.filmo-thumb {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
  background: #15151c;
}

.filmo-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.filmo-card:hover .filmo-thumb img {
  transform: scale(1.08);
}

.filmo-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(12, 12, 16, 0.85);
  backdrop-filter: blur(8px);
  color: var(--accent-gold);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-gold);
}

.filmo-year {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
}

.filmo-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.filmo-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.filmo-role {
  font-size: 0.95rem;
  color: var(--accent-gold-light);
  font-weight: 500;
  margin-bottom: 14px;
}

.filmo-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  height: 72px;
  max-height: 72px;
  overflow-y: auto;
  overflow-x: hidden;
  margin-bottom: 18px;
  padding-right: 6px;
  display: block;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  word-break: keep-all;
  cursor: default;
  scrollbar-width: thin;
  scrollbar-color: transparent transparent;
  transition: scrollbar-color 0.25s ease;
}

.filmo-desc.has-scroll {
  cursor: grab;
}

.filmo-desc.grabbing {
  cursor: grabbing !important;
  user-select: none;
}

/* 필모그래피 설명 스크롤바 스타일 */
.filmo-desc::-webkit-scrollbar {
  width: 5px;
}

.filmo-desc::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 4px;
}

.filmo-desc::-webkit-scrollbar-thumb {
  background: transparent;
  border-radius: 4px;
  transition: background 0.25s ease;
}

/* 카드에 마우스 오버 시 우측에 세련된 골드 스크롤바 등장 */
.filmo-card:hover .filmo-desc::-webkit-scrollbar-thumb {
  background: rgba(203, 163, 88, 0.45);
}

.filmo-card:hover .filmo-desc::-webkit-scrollbar-thumb:hover {
  background: var(--accent-gold);
}

.filmo-card:hover .filmo-desc {
  scrollbar-color: rgba(203, 163, 88, 0.45) transparent;
}

.filmo-footer {
  border-top: 1px solid var(--border-subtle);
  padding-top: 14px;
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.filmo-broadcast {
  font-size: 0.82rem;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  line-height: 1.4;
}

.filmo-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  width: 100%;
}

.filmo-more-btn {
  font-size: 0.83rem;
  color: var(--accent-gold);
  background: rgba(203, 163, 88, 0.08);
  border: 1px solid rgba(203, 163, 88, 0.25);
  padding: 5px 13px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap !important;
  flex-shrink: 0;
  cursor: pointer;
  transition: background var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.filmo-more-btn span {
  white-space: nowrap !important;
}

.filmo-more-btn i {
  transition: transform var(--transition-fast);
  display: inline-block;
}

.filmo-more-btn:hover {
  background: var(--accent-gold);
  color: #0c0c0e;
  border-color: var(--accent-gold);
  box-shadow: 0 2px 10px var(--accent-gold-glow);
}

.filmo-more-btn:hover i {
  transform: translateX(3px);
}

/* ===================================================================
   [6. 갤러리 (Gallery)]
   - 카테고리 구분 없이 전체 사진 나열
   - 텍스트/설명 없이 순수 사진만 노출, 마우스 오버 시 사진만 반응
   =================================================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  height: 380px;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-card);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
              border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item:hover {
  transform: translateY(-8px);
  border-color: var(--border-gold);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.65), 0 0 25px rgba(203, 163, 88, 0.25);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), 
              filter 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item:hover img {
  transform: scale(1.08);
  filter: brightness(1.08) contrast(1.02);
}

.gallery-overlay {
  display: none !important;
}

/* ===================================================================
   [7. 뉴스 & 미디어 (News & Media - NOTICE와 유사한 목록형 양식)]
   =================================================================== */
.news-container {
  background: var(--bg-tertiary);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  overflow: hidden;
  padding: 24px;
}

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

.news-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.news-item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--border-gold);
  transform: translateX(4px);
}

.news-main {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-grow: 1;
  min-width: 0;
}

.news-tag {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  background: rgba(203, 163, 88, 0.15);
  color: var(--accent-gold);
  white-space: nowrap;
  flex-shrink: 0;
}

.news-title-text {
  font-size: 1rem;
  font-weight: 500;
  color: #ffffff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.news-meta-info {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.85rem;
  color: var(--text-muted);
  white-space: nowrap;
  margin-left: 20px;
  flex-shrink: 0;
}

.news-press-name {
  color: var(--accent-gold-light);
  font-weight: 600;
}

.news-date-text {
  color: var(--text-muted);
}

/* ===================================================================
   [8. 공지사항 (Notice)]
   =================================================================== */
.board-container {
  background: var(--bg-tertiary);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  overflow: hidden;
  padding: 24px;
}

/* 공지사항 목록 */
.notice-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.notice-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.notice-item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--border-gold);
  transform: translateX(4px);
}

.notice-item.pinned {
  border-left: 3px solid var(--accent-gold);
}

.notice-main {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-grow: 1;
  min-width: 0;
}

.notice-tag {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  background: rgba(203, 163, 88, 0.15);
  color: var(--accent-gold);
  white-space: nowrap;
  flex-shrink: 0;
}

.notice-title {
  font-size: 1rem;
  font-weight: 500;
  color: #ffffff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.notice-date {
  font-size: 0.85rem;
  color: var(--text-muted);
  white-space: nowrap;
  margin-left: 20px;
  flex-shrink: 0;
}

/* 반응형 모바일 최적화 (News & Notice) */
@media (max-width: 768px) {
  .news-container,
  .board-container {
    padding: 16px;
  }

  .news-item,
  .notice-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 16px;
  }

  .news-main,
  .notice-main {
    width: 100%;
    flex-wrap: wrap;
    gap: 8px;
  }

  .news-title-text,
  .notice-title {
    white-space: normal;
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .news-meta-info,
  .notice-date {
    margin-left: 0;
    font-size: 0.8rem;
  }
}

/* ===================================================================
   [9. 배우 정보 (About Jo Yoon)]
   =================================================================== */
.about-wrapper {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 56px;
  align-items: start;
}

.about-photo-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-subtle);
}

.about-photo-card img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.about-photo-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 28px;
  background: linear-gradient(to top, rgba(10, 10, 14, 0.95), transparent);
}

.about-photo-name {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #ffffff;
}

.about-photo-role {
  color: var(--accent-gold);
  font-size: 0.9rem;
  letter-spacing: 0.15em;
}

.about-info-col {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.about-card-box {
  background: var(--bg-tertiary);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  padding: 32px;
}

.about-card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--accent-gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.about-profile-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.about-profile-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-subtle);
  min-width: 0;
}

.about-profile-item.full-width {
  grid-column: 1 / -1;
}

.about-profile-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.about-profile-value {
  font-size: 0.95rem;
  font-weight: 500;
  color: #ffffff;
  word-break: keep-all;
  overflow-wrap: break-word;
  line-height: 1.5;
}

.about-intro-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

.about-agency-details {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.agency-detail-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.agency-label {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.agency-val {
  font-size: 0.95rem;
  color: #ffffff;
}

.agency-val a {
  color: var(--accent-gold);
  text-decoration: underline;
}

/* SNS 링크 버튼 */
.sns-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 12px;
}

.sns-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 18px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  color: #ffffff;
  text-decoration: none;
  transition: all var(--transition-fast);
}

.sns-btn:last-child:nth-child(odd) {
  grid-column: 1 / -1;
}

.sns-btn i {
  font-size: 1.4rem;
  color: var(--accent-gold);
  flex-shrink: 0;
  transition: color var(--transition-fast);
}

.sns-text-group {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.sns-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.25;
  transition: color var(--transition-fast);
}

.sns-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.25;
  transition: color var(--transition-fast);
}

.sns-btn:hover {
  background: var(--accent-gold);
  border-color: var(--accent-gold);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px var(--accent-gold-glow);
}

.sns-btn:hover i,
.sns-btn:hover .sns-title,
.sns-btn:hover .sns-sub {
  color: #0c0c0e !important;
}

/* ===================================================================
   [10. 모달 (Modal System)]
   =================================================================== */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-modal);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
              visibility 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-backdrop.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.modal-container {
  background: var(--bg-secondary);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  max-width: 760px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8);
  transform: scale(0.95);
  opacity: 0;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), 
              opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-backdrop.show .modal-container {
  transform: scale(1);
  opacity: 1;
}

.modal-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: all var(--transition-fast);
  z-index: 2020;
}

.modal-close-btn:hover {
  background: var(--accent-gold);
  color: #0c0c0e;
  transform: rotate(90deg) scale(1.05);
}

.modal-body {
  padding: 40px;
}

/* 라이트박스 전용 (부드럽고 우아한 모달 팝업 효과) */
.lightbox-container {
  position: relative;
  background: transparent;
  border: none;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0.93);
  opacity: 0;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), 
              opacity 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-backdrop.show .lightbox-container {
  transform: scale(1);
  opacity: 1;
}

.lightbox-img {
  max-width: 86vw;
  max-height: 84vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.95);
  transition: opacity 0.25s ease;
  user-select: none;
}

/* 라이트박스 이전 / 다음 탐색 버튼 */
.lightbox-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(12, 12, 16, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  font-size: 1.35rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2010;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox-nav-btn:hover {
  background: var(--accent-gold);
  color: #0c0c0e;
  border-color: var(--accent-gold);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 4px 20px var(--accent-gold-glow);
}

.lightbox-nav-prev {
  left: 36px;
}

.lightbox-nav-next {
  right: 36px;
}

@media (max-width: 768px) {
  .lightbox-nav-prev { left: 12px; }
  .lightbox-nav-next { right: 12px; }
  .lightbox-nav-btn { width: 42px; height: 42px; font-size: 1.1rem; }
}

/* ===================================================================
   [11. 푸터 & 맨 위로 가기 버튼]
   =================================================================== */
.site-footer {
  background-color: #060608;
  border-top: 1px solid var(--border-subtle);
  padding: 60px 0 40px 0;
  text-align: center;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.28em;
  color: #ffffff;
  margin-bottom: 16px;
  display: inline-block;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-bottom: 24px;
}

.footer-links a {
  color: var(--text-secondary);
  font-size: 0.9rem;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--accent-gold);
}

.footer-copy {
  color: var(--text-muted);
  font-size: 0.82rem;
  letter-spacing: 0.05em;
}

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-subtle);
  border-radius: 50%;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
  z-index: 999;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--accent-gold);
  color: #0c0c0e;
  border-color: var(--accent-gold);
  transform: translateY(-4px);
}

/* ===================================================================
   [12. 애니메이션 키프레임 & 반응형 미디어 쿼리]
   =================================================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* 영상 바로보기 링크 스타일 (한 줄 유지 및 개행 방지, 안정적인 버튼 스타일) */
.filmo-watch-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.83rem;
  color: #ff526c;
  background: rgba(255, 71, 87, 0.08);
  border: 1px solid rgba(255, 71, 87, 0.25);
  padding: 5px 12px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  white-space: nowrap !important;
  flex-shrink: 0;
  cursor: pointer;
  transition: background var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.filmo-watch-link span {
  white-space: nowrap !important;
  display: inline-block;
}

.filmo-watch-link:hover {
  background: #ff4757;
  color: #ffffff;
  border-color: #ff4757;
  box-shadow: 0 2px 10px rgba(255, 71, 87, 0.35);
}

/* 미디어 쿼리 */
@media (max-width: 1024px) {
  .hero-name {
    font-size: 3.8rem;
  }
  .about-wrapper {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
  }
  .about-photo-card img {
    height: 440px;
  }
}

@media (max-width: 768px) {
  .site-header {
    height: 66px;
  }
  .header-inner {
    padding: 0 18px;
    gap: 10px;
  }
  /* 모바일 상단 로고: 개행 방지 및 줄어든 자간 간격 */
  .site-logo a {
    font-size: 1.25rem;
    letter-spacing: 0.12em; /* 줄어든 자간 간격 */
    white-space: nowrap !important;
    word-break: keep-all;
  }
  .header-actions {
    gap: 10px;
  }
  .lang-select-wrapper {
    padding: 4px 10px 4px 9px;
  }
  .lang-select {
    font-size: 0.78rem;
    padding-right: 14px;
  }
  .lang-globe-icon {
    font-size: 0.78rem;
    margin-right: 5px;
  }
  .lang-chevron-icon {
    right: 8px;
    font-size: 0.6rem;
  }
  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--bg-secondary);
    padding: 100px 32px 40px;
    flex-direction: column;
    align-items: flex-start;
    transition: right var(--transition-normal);
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.7);
    border-left: 1px solid var(--border-subtle);
  }
  .main-nav.open {
    right: 0;
  }
  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    width: 100%;
  }
  .mobile-toggle {
    display: flex;
  }
  .lang-selector {
    margin-right: 10px;
  }
  /* 모바일 메인 히어로: 배우를 화면 가운데에 위치하도록 포커스 조정 */
  .hero-section {
    min-height: 600px;
    justify-content: center;
    align-items: flex-end;
  }
  .hero-image {
    object-position: 81% 18% !important;
    transform-origin: 81% 18% !important;
  }
  .hero-overlay {
    background: 
      linear-gradient(to top, rgba(10, 10, 12, 0.95) 0%, rgba(10, 10, 12, 0.6) 28%, rgba(10, 10, 12, 0.15) 55%, transparent 75%),
      linear-gradient(to bottom, rgba(10, 10, 12, 0.75) 0%, transparent 22%);
  }
  .hero-content {
    padding: 0 20px 52px 20px;
    text-align: center;
    max-width: 100%;
    width: 100%;
  }
  .hero-title-group {
    text-align: center;
  }
  .hero-name {
    font-size: 2.8rem;
    letter-spacing: 0.12em;
  }
  .hero-quote {
    font-size: 1.05rem;
  }
  .hero-cta {
    justify-content: center;
  }
  .section {
    padding: 80px 0;
  }
  .section-en-title {
    font-size: 1.8rem;
  }
  .about-profile-list,
  .sns-list {
    grid-template-columns: 1fr;
  }
  .filmo-grid, .gallery-grid, .news-grid {
    grid-template-columns: 1fr;
  }
  .gallery-item {
    height: clamp(280px, 80vw, 400px);
  }
  .modal-body {
    padding: 24px 18px;
  }
  .modal-close-btn {
    top: 14px;
    right: 14px;
    width: 38px;
    height: 38px;
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .site-header {
    height: 60px;
  }
  .header-inner {
    padding: 0 14px;
    gap: 8px;
  }
  /* 소형 모바일 상단 로고: 개행 방지 및 컴팩트 자간 */
  .site-logo a {
    font-size: 1.12rem;
    letter-spacing: 0.08em;
    white-space: nowrap !important;
  }
  .header-actions {
    gap: 8px;
  }
  .lang-select-wrapper {
    padding: 3px 8px 3px 7px;
  }
  .lang-select {
    font-size: 0.74rem;
    padding-right: 12px;
  }
  .lang-globe-icon {
    font-size: 0.72rem;
    margin-right: 4px;
  }
  .lang-chevron-icon {
    right: 6px;
    font-size: 0.55rem;
  }
  .hero-image {
    object-position: 82% 18% !important;
    transform-origin: 82% 18% !important;
  }
  .hero-content {
    padding: 0 16px 42px 16px;
  }
  .hero-name {
    font-size: 2.2rem;
    letter-spacing: 0.1em;
  }
  .hero-quote {
    font-size: 0.92rem;
    margin-top: 10px;
  }
  .hero-cta {
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .btn-primary, .btn-secondary {
    padding: 11px 20px;
    font-size: 0.82rem;
  }
  .section {
    padding: 60px 0;
  }
  .section-en-title {
    font-size: 1.55rem;
  }
  .section-desc {
    font-size: 0.88rem;
  }
  .about-photo-card img {
    height: 360px;
  }
}
