/* SoundMonkey 스타일 CSS - 완전 재현 */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #1a1a1a;
    line-height: 1.6;
    overflow-x: hidden;
}

.wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* 헤더 */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 99999;
    box-shadow: none;
    border-bottom: none;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    animation: none !important;
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: none;
    border-bottom: none;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 12px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 100000;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    animation: none !important;
}

/* 헤더가 애니메이션의 영향을 받지 않도록 */
.site-header,
.site-header *,
.header-container,
.header-container * {
    animation: none !important;
}

/* 모바일 햄버거 메뉴 버튼 */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10002;
    position: relative;
}

.mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 3px;
    background: #1a1a1a;
    border-radius: 2px;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
    transition: transform 0.2s;
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
    transition: opacity 0.2s;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
    transition: transform 0.2s;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo img {
    height: 50px;
    width: auto;
}

.main-nav {
    display: flex;
    gap: 35px;
    align-items: center;
}

.main-nav a {
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: color 0.3s;
}

.main-nav a:hover {
    color: #667eea;
}

.contact-link {
    /* 배경과 패딩 제거 - 다른 메뉴와 동일하게 */
    background: transparent;
    color: #1a1a1a !important;
    padding: 0;
    border-radius: 0;
}

.contact-link:hover {
    background: transparent;
    color: #667eea !important;
}

.auth-link {
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 500;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    text-transform: none;
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* 로그인과 회원가입 버튼 사이 간격 줄이기 - gap을 상쇄 */
.auth-link + .auth-link {
    margin-left: -27px; /* gap 35px를 상쇄하고 8px만 남김 */
}

.login-link {
    color: #1a1a1a !important;
    background: transparent;
    border: 1px solid rgba(26, 26, 26, 0.2);
}

.login-link:hover {
    background: rgba(26, 26, 26, 0.05);
    border-color: rgba(26, 26, 26, 0.4);
    color: #667eea !important;
}

.register-link {
    color: #ffffff !important;
    background: #667eea;
    border: 1px solid #667eea;
}

.register-link:hover {
    background: #5568d3;
    border-color: #5568d3;
}

/* 사용자 메뉴 */
.user-menu-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
}

.mypage-link {
    color: #ffffff !important;
    background: #667eea;
    border: 1px solid #667eea;
}

.mypage-link:hover {
    background: #5568d3;
    border-color: #5568d3;
}

.logout-icon-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid rgba(26, 26, 26, 0.2);
    color: #1a1a1a !important;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
}

.logout-icon-link:hover {
    background: rgba(26, 26, 26, 0.05);
    border-color: rgba(26, 26, 26, 0.4);
    color: #667eea !important;
}

/* 모바일 토글 버튼 */
.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 100001;
    position: relative;
    pointer-events: auto;
}

.mobile-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background: #1a1a1a;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

    /* 모바일 반응형 - 헤더 */
    @media (max-width: 768px) {
        .site-header {
            z-index: 99999;
        }

    .header-container {
        padding: 12px 20px;
    }

    .logo img {
        height: 40px;
    }

    /* 데스크톱 네비게이션 숨기기 */
    .main-nav {
        display: none;
    }

    /* 모바일 메뉴가 열렸을 때 */
    .main-nav.active {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        padding: 20px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        z-index: 10001;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        gap: 0;
    }

    .main-nav.active a {
        width: 100%;
        text-align: center;
        padding: 15px 20px;
        margin: 5px 0;
        border-radius: 8px;
        display: block;
        font-size: 14px;
    }

    .main-nav.active a:hover {
        background-color: #f5f5f5;
        color: #667eea;
    }

    /* 사용자 메뉴 래퍼 모바일 스타일 */
    .main-nav.active .user-menu-wrapper {
        flex-direction: column;
        width: 100%;
        gap: 10px;
        margin-top: 10px;
    }

    .main-nav.active .auth-link {
        width: 100%;
        text-align: center;
        margin: 0;
    }

    .main-nav.active .auth-link + .auth-link {
        margin-left: 0;
    }

    /* 모바일 토글 버튼 표시 */
    .mobile-toggle {
        display: flex;
    }

    /* 모바일 메뉴가 열릴 때 body 스크롤 방지 */
    body.menu-open {
        overflow: hidden;
    }

    /* 모바일 메뉴 오버레이 */
    .mobile-menu-overlay {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        z-index: 10000;
        pointer-events: none;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    .mobile-menu-overlay.active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
}

/* 드롭다운 메뉴 */
.nav-dropdown {
    position: relative;
}

.nav-dropdown .dropdown-toggle {
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: color 0.3s;
    cursor: pointer;
}

.nav-dropdown .dropdown-toggle:hover {
    color: #667eea;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 15px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    z-index: 1001;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: #1a1a1a;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: background 0.3s, color 0.3s;
    white-space: nowrap;
}

.dropdown-menu a:first-child {
    border-radius: 8px 8px 0 0;
}

.dropdown-menu a:last-child {
    border-radius: 0 0 8px 8px;
}

.dropdown-menu a:hover {
    background: #f5f7ff;
    color: #667eea;
}

/* 히어로 섹션 */
.hero {
    position: relative;
    height: 70vh;
    min-height: 600px;
    overflow: hidden;
    z-index: 1;
    margin-top: 70px;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    animation: zoomInBackground 30s ease-in-out infinite;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 1000px;
    padding: 0 20px;
}

.hero-heading {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 30px;
    letter-spacing: 2px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* 경험 섹션 - SoundMonkey 복잡한 레이아웃 */
.experience-showcase {
    padding: 100px 20px;
    background: #ffffff;
}

.exp-layout {
    display: grid;
    grid-template-columns: 300px 1fr 320px;
    gap: 60px;
    align-items: start;
    margin-bottom: 0;
}

.exp-left {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.years-badge {
    background: #22c55e;
    padding: 25px 20px;
    position: relative;
    z-index: 3;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    border-radius: 20px;
    opacity: 1;
    transform: none;
}

/* 스크롤 애니메이션 제거됨 */

.years-num {
    font-size: 3rem;
    font-weight: 900;
    color: #000000;
    line-height: 1;
}

.years-label {
    font-size: 0.55rem;
    font-weight: 800;
    color: #000000;
    letter-spacing: 0.5px;
    line-height: 1.3;
    margin-top: 8px;
}

.studio-pic {
    width: 100%;
    aspect-ratio: 4/3;
    background: #e0e0e0 url('../images/batch_DSC03258.JPG') center/cover no-repeat;
    position: relative;
    z-index: 1;
    border-radius: 20px;
    overflow: hidden;
    opacity: 1;
    transform: none;
}

.pic-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 1rem;
    background: #e8e8e8;
    border-radius: inherit;
}

.exp-center {
    padding-top: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 1;
    transform: none;
}

.big-headline {
    font-size: 3rem;
    font-weight: 900;
    color: #1a1a1a;
    line-height: 1.15;
    margin-bottom: 30px;
    letter-spacing: -0.5px;
}

.description-block {
    font-size: 0.95rem;
    line-height: 1.75;
    color: #666;
}

.description-block p {
    margin-bottom: 20px;
}

.exp-right {
    padding-top: 0;
    display: flex;
    align-items: center;
}

.engineer-pic {
    width: 100%;
    aspect-ratio: 3/4;
    background: #333 url('../images/batch_DSC03217.JPG') center/cover no-repeat;
    border-radius: 20px;
    overflow: hidden;
    opacity: 1;
    transform: none;
}

.exp-bottom {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 80px;
    margin-top: 80px;
    align-items: end;
}

.bottom-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
}

.bottom-text p {
    margin-bottom: 20px;
}

.explore-title-block {
    text-align: right;
}

.explore-big {
    font-size: 6rem;
    font-weight: 900;
    line-height: 0.85;
    margin: 0;
    font-family: sans-serif;
}

.explore-big .solid {
    color: #1a1a1a;
    display: block;
    font-family: sans-serif;
}

.explore-big .outline {
    font-family: sans-serif;
    color: transparent;
    -webkit-text-stroke: 2px #1a1a1a;
    text-stroke: 2px #1a1a1a;
    -webkit-text-fill-color: transparent;
    paint-order: stroke fill;
    letter-spacing: -2px;
    display: block;
}

.explore-big .d-letter {
    color: #ffffff;
    -webkit-text-stroke: 2px #1a1a1a;
    text-stroke: 2px #1a1a1a;
    -webkit-text-fill-color: #ffffff;
    paint-order: stroke fill;
}

/* Explore Gallery - 4개 스튜디오 룸 */
.explore-gallery {
    padding: 40px 20px;
    background: transparent;
}

.studio-rooms-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.studio-room {
    text-align: center;
    opacity: 1;
    transform: none;
    cursor: pointer;
}

.room-image {
    width: 100%;
    aspect-ratio: 4/3;
    background: #e0e0e0;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 20px;
    transition: transform 0.4s ease;
    background-size: cover;
    background-position: center;
}

.room-image.studio-a {
    background-image: url('../images/DSC03056.webp');
}

.room-image.studio-b {
    background-image: url('../images/batch_20250515_204629.webp');
}

.room-image.studio-c {
    background-image: url('../images/20231121_144740-scaled.webp');
}

.room-image.immersive-theater {
    background-image: url('../images/FB_IMG_1741442783287.webp');
}

.room-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.studio-room:hover .room-image {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.studio-room:hover .room-title {
    color: #667eea;
}

.room-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* OUR Project - 전체 너비 슬라이더 */
.all-projects {
    padding: 30px 0 20px 0;
    margin: 0;
    background: url('../images/h2_bg2.jpg') center center / cover no-repeat;
    position: relative;
    overflow: hidden;
    border-radius: 30px 30px 0 0;
    z-index: 10;
}

.project-hover-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: 1;
    border-radius: 30px 30px 0 0;
}

.project-hover-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 30px 30px 30px 30px;
    z-index: 1;
}

.project-hover-bg.show-bluearchive {
    background-image: url('../images/206892_216695_2930.jpg');
    opacity: 1;
}

.project-hover-bg.show-maplestory {
    background-image: url('../images/maxresdefault.jpg');
    opacity: 1;
}

.project-hover-bg.show-stellablade {
    background-image: url('../images/brvkYHgyOIj-flKk_5KrlEAyR0E.jpg');
    opacity: 1;
}

.all-projects .wrapper {
    position: relative;
    z-index: 2;
}

.all-projects .wrapper {
    max-width: 100%;
    padding: 0;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.section-heading {
    font-size: 3.5rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 0;
    color: white;
    text-transform: uppercase;
    letter-spacing: -2px;
    padding: 0 60px;
    position: relative;
    z-index: 10;
    white-space: nowrap;
}

.project-slider-container {
    position: relative;
    margin-top: 40px;
    padding: 0 60px;
    width: 100%;
    flex-basis: 100%;
    overflow: hidden;
}

.project-slider {
    display: flex;
    gap: 20px;
    overflow: visible;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0 0 40px 0;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-slider::-webkit-scrollbar {
    display: none;
}

.project-slide-item {
    min-width: 600px;
    width: 600px;
    max-width: 600px;
    aspect-ratio: 21 / 9;
    flex-shrink: 0;
    background: transparent;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.5s ease;
    cursor: pointer;
    position: relative;
}

.project-slide-item:hover {
    transform: scale(1.02);
}

.project-slide-item:first-child {
    margin-left: 0;
}

.project-img-box {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    border-radius: 20px;
}

.project-img-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 50%, transparent 100%);
    z-index: 1;
}

.project-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
}

.project-info {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 40px;
    max-width: 400px;
    padding: 0;
    background: transparent;
    color: white;
    z-index: 2;
}

.project-info h4 {
    font-size: 2rem;
    font-weight: 900;
    color: white;
    margin: 15px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
}

.project-info p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.5;
    margin-top: 10px;
    font-weight: 400;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: none;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    transition: all 0.3s ease;
    z-index: 100;
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.35);
    transform: translateY(-50%) scale(1.15);
}

.prev-btn {
    left: 40px;
}

.next-btn {
    right: 40px;
}

.slider-dots {
    position: absolute;
    bottom: 40px;
    right: 120px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 30px;
}

.slider-counter {
    color: white;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.slider-counter .current {
    font-size: 1.2rem;
    color: #22c55e;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #22c55e;
    width: 24px;
    border-radius: 4px;
}

.badge {
    display: inline-block;
    padding: 5px 14px;
    background: #667eea;
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    margin-bottom: 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* 프로젝트 슬라이더 배지 색상 분류 */
.badge[data-tag="Voice"] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.badge[data-tag="SFX"] {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
}

.badge[data-tag="BGM"] {
    background: linear-gradient(135deg, #ee0979 0%, #ff6a00 100%);
}

.badge[data-tag="Sound"] {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.badge.recording {
    background: #22c55e;
}

.view-more-btn {
    padding-right: 60px;
    z-index: 10;
}

.more-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: #22c55e;
    color: #000000;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 30px;
    box-shadow: 0 5px 20px rgba(34, 197, 94, 0.4);
}

.more-link::after {
    content: '→';
    font-size: 1.2rem;
    transition: transform 0.3s;
}

.more-link:hover {
    background: #16a34a;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.5);
}

.more-link:hover::after {
    transform: translateX(5px);
}

/* Services */
.services-block {
    padding: 0 20px;
    margin: 0;
    margin-top: -30px;
    padding-bottom: 80px;
    background: #2d2d2d;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: background 0.6s ease;
    z-index: 5;
}

.services-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/batch_DSC03258.JPG');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 1;
    z-index: 0;
}

.services-block::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.75);
    opacity: 1;
    z-index: 1;
}

.service-hover-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: all 0.6s ease;
    z-index: 1;
}

.service-hover-bg.show-voice {
    background-image: url('../images/Wallpaper_com.nexon_.bluearchive-1.jpg');
    opacity: 1;
}

.service-hover-bg.show-sound {
    background-image: url('../images/Port/메이플.jpg');
    opacity: 1;
}

.service-hover-bg.show-localization {
    background-image: url('../images/AFK.jpg');
    opacity: 1;
}

.service-hover-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(
        to bottom,
        rgba(26, 29, 46, 0.95) 0%,
        rgba(26, 29, 46, 0.7) 40%,
        transparent 100%
    );
    z-index: 1;
}

.service-hover-bg::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(
        to top,
        rgba(45, 45, 45, 0.95) 0%,
        rgba(45, 45, 45, 0.7) 40%,
        transparent 100%
    );
    z-index: 1;
}

.service-hover-bg.show-voice {
    opacity: 1;
}

.services-header {
    text-align: center;
    padding: 70px 0 10px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.services-header .section-heading {
    font-size: 4rem;
    font-weight: 900;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin: 0;
    padding: 0;
}

.services-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 0 0 0;
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    align-items: start;
    position: relative;
    z-index: 2;
}

.services-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-item {
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}

.service-icon {
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.4s ease;
}

.service-item.active .service-icon {
    color: #00ff9d;
    transform: scale(1.2);
}

.service-item:hover .service-icon {
    color: #ffffff;
}

.service-item.active .service-title {
    color: #ffffff;
    -webkit-text-fill-color: #ffffff;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.8);
}

.service-title {
    font-family: 'Nanum Gothic', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 2px rgba(255, 255, 255, 0.6);
    text-stroke: 2px rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: -1px;
    line-height: 1.2;
    transition: all 0.4s ease;
    -webkit-text-fill-color: transparent;
    paint-order: stroke fill;
    white-space: nowrap;
}

.service-item:hover .service-title {
    -webkit-text-stroke: 2px rgba(255, 255, 255, 1);
    text-stroke: 2px rgba(255, 255, 255, 1);
    -webkit-text-fill-color: transparent;
    paint-order: stroke fill;
    transform: translateX(20px);
}

.services-right {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 0;
    padding-right: 60px;
    border-radius: 20px;
}

.service-content {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.service-content.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
    animation: fadeInUp 0.6s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-content h4 {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.service-content p {
    font-size: 1.2rem;
    line-height: 2;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
}

.service-click-hint {
    font-size: 1rem !important;
    color: #00ff9d !important;
    margin-top: 20px !important;
    font-weight: 600;
    letter-spacing: 0.5px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
}

.service-content.active .service-click-hint {
    opacity: 1;
    transform: translateY(0);
}

.service-item {
    cursor: pointer !important;
}

/* 서비스 상세 모달 */
.service-detail-modal,
.studio-detail-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99999;
}

.service-detail-modal.active,
.studio-detail-modal.active {
    display: block;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1;
}

.modal-content {
    position: relative;
    width: 70%;
    height: 85%;
    margin: 2% auto;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    z-index: 100;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: rotate(90deg);
}

.modal-iframe-container {
    width: 100%;
    height: 100%;
}

.modal-iframe-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* 스튜디오 상세 컨텐츠 */
.studio-detail-content,
.service-detail-content {
    width: 100%;
    height: 100%;
    overflow-y: auto;
    background: #ffffff;
}

.service-detail-content .studio-detail-body {
    padding: 60px 80px;
}

.studio-detail-header {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.studio-header-slider {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}

.studio-header-slide {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    animation: zoomIn 10s ease-in-out infinite;
}

.studio-header-slide.active {
    opacity: 1;
    z-index: 1;
}

@keyframes zoomIn {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.studio-detail-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7));
    z-index: 2;
}

.studio-detail-title-block {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
}

.studio-detail-title {
    font-family: 'Nanum Gothic', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    margin: 0 0 15px 0;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.studio-detail-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.studio-detail-body {
    padding: 60px 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.studio-content-section,
.service-content-section {
    max-width: 100%;
    margin: 0;
    text-align: left;
}

.service-detail-title {
    font-family: 'Nanum Gothic', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    margin: 0 0 40px 0;
    padding-bottom: 20px;
    border-bottom: 3px solid #667eea;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #1a1a1a;
}

.service-image-section {
    margin: 30px 0;
    text-align: center;
}

.service-content-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.db-link-section {
    margin: 40px 0;
    text-align: center;
}

.db-image-section {
    margin: 30px 0;
    text-align: center;
}

.db-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.db-link-button {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
}

.db-link-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.6);
}

.studios-showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 30px auto;
    max-width: 900px;
}

.studio-showcase-item {
    text-align: center;
}

.studio-showcase-image {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.studio-showcase-item:hover .studio-showcase-image {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.studio-showcase-item h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    text-align: center;
}

.team-members-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin: 40px auto;
    max-width: 1000px;
}

.team-member-card {
    text-align: center;
    background: #f8f9fa;
    padding: 30px 20px;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.team-member-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.member-photo {
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    background: #e0e0e0;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 15px 0 10px;
    text-align: center;
}

.member-position {
    font-size: 0.9rem;
    color: #667eea;
    font-weight: 600;
    margin: 0 0 10px;
    text-align: center;
}

.member-works {
    font-size: 0.55rem;
    color: #666;
    line-height: 1.0;
    margin: 0;
    text-align: center;
}

.studio-content-section p,
.service-content-section p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #333;
    margin: 0 0 20px 0;
    text-align: left;
}

.studio-content-section h3,
.service-content-section h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 30px 0 15px 0;
    text-align: left;
}

.studio-content-section h4,
.service-content-section h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 25px 0 12px 0;
    text-align: left;
}

.studio-content-section ul,
.service-content-section ul {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.studio-content-section ul li,
.service-content-section ul li {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #333;
    padding: 0;
    margin: 0;
    text-align: left;
}

.studio-content-section strong,
.service-content-section strong {
    color: #1a1a1a;
    font-weight: 700;
}

.studio-intro-section {
    margin-bottom: 50px;
    text-align: center;
}

.studio-intro-section h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.studio-intro-text {
    font-size: 1.2rem;
    line-height: 2;
    color: #333;
    max-width: 900px;
    margin: 0 auto;
}

.studio-features-section {
    margin-bottom: 50px;
}

.studio-features-section h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-bottom: 3px solid #667eea;
    padding-bottom: 15px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.feature-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 35px;
    border-radius: 15px;
    transition: all 0.3s ease;
    color: white;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
}

.feature-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
}

.feature-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
}

.studio-gallery-section {
    margin-bottom: 50px;
}

.studio-gallery-section h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-bottom: 3px solid #667eea;
    padding-bottom: 15px;
}

.studio-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.gallery-item {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.studio-closing-section {
    margin-top: 60px;
    padding: 40px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    border-left: 5px solid #667eea;
}

.studio-closing-text {
    font-size: 1.2rem;
    line-height: 2;
    color: #1a1a1a;
    margin: 0;
    font-weight: 500;
    text-align: center;
}

/* Our Sound */
.sound-effects-section {
    padding: 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.sound-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
    align-items: center;
}

.sound-left {
    padding: 80px 60px;
    background: #ffffff;
}

.sound-heading-main {
    font-family: 'Nanum Gothic', sans-serif;
    font-size: 6rem;
    font-weight: 800;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: -2px;
    line-height: 0.9;
    margin: 0;
}

.sound-heading-outline {
    font-family: 'Nanum Gothic', sans-serif;
    font-size: 6rem;
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 2px #000000;
    text-stroke: 2px #000000;
    text-transform: uppercase;
    letter-spacing: -2px;
    line-height: 0.9;
    margin: 0 0 40px 0;
    -webkit-text-fill-color: transparent;
    paint-order: stroke fill;
}

.sound-description {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #333;
    margin-bottom: 25px;
}

.sound-right {
    background: #ffffff;
    height: 100%;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.sound-character-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 40px;
}

.sound-character-image img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    animation: floatCharacter 3s ease-in-out infinite;
}

@keyframes floatCharacter {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes zoomInBackground {
    0% {
        background-size: cover;
        background-position: center center;
    }
    50% {
        background-size: 110% auto;
        background-position: center center;
    }
    100% {
        background-size: cover;
        background-position: center center;
    }
}

/* Sound Features Section */
.sound-features-section {
    padding: 0;
    background: #ffffff;
    position: relative;
}

.features-container {
    display: grid;
    grid-template-columns: 50% 50%;
    min-height: 600px;
}

.features-left {
    position: relative;
    overflow: hidden;
    background: #1a1a1a;
    min-height: 500px;
    height: 500px;
}

.studio-mixing-image {
    width: 100%;
    height: 100%;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: background-image 0.6s ease;
}

.mixing-placeholder {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.3);
    display: none;
}

.features-left.show-creative .studio-mixing-image {
    background-image: url('../images/P1220519-scaled.jpg');
}

.features-left.show-immersive .studio-mixing-image {
    background-image: url('../images/FB_IMG_1741442783287 (1).webp');
    background-size: cover;
}

.features-left.show-direction .studio-mixing-image {
    background-image: url('../images/DSC03105.jpg');
}

.features-right {
    background: #ffffff;
    padding: 0 50px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    max-width: 700px;
    margin: 0;
}

.feature-accordion {
    margin-bottom: 0;
    cursor: pointer;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 0;
    transition: all 0.3s ease;
}

.feature-accordion:hover .feature-item h3 {
    color: #00ff9d;
}

.feature-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4rem;
    font-weight: 400;
    color: rgba(0, 255, 157, 0.3);
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.feature-accordion.active .feature-number {
    color: #00ff9d;
}

.feature-item h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    font-weight: 400;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
    transition: all 0.3s ease;
}

.feature-underline {
    width: 100%;
    height: 2px;
    background: rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.feature-accordion.active .feature-underline {
    background: #00ff9d;
    height: 3px;
}

.feature-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.5s ease;
    padding: 0 0 0 130px;
}

.feature-accordion.active .feature-content {
    max-height: 500px;
    padding: 20px 0 30px 130px;
}

.feature-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 15px;
}

.sound-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

.sound-feature {
    opacity: 1;
    transform: none;
}

.sound-feature h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.sound-feature p {
    font-size: 1rem;
    line-height: 1.8;
    color: #666;
}

.sound-image-block {
    width: 100%;
    height: 400px;
    background: #e0e0e0;
    margin-top: 50px;
}

/* Game Voice */
.game-voice {
    padding: 0;
    margin: 0;
    margin-top: 80px;
    background: #ffffff;
    position: relative;
    overflow: hidden;
    min-height: 600px;
}

.game-voice-hero {
    position: relative;
    min-height: 800px;
    background-image: url('../images/DSC03251-scaled.jpg');
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 20px;
    animation: zoomInBackground 30s ease-in-out infinite;
    overflow: hidden;
    border-radius: 30px 30px 0 0;
}

.game-voice-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.game-voice-hero > * {
    position: relative;
    z-index: 2;
}

.voice-heading-solid {
    font-family: 'Nanum Gothic', sans-serif;
    font-size: 6rem;
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: -2px;
    line-height: 1.1;
    margin: 0;
}

.voice-heading-outline {
    font-family: 'Nanum Gothic', sans-serif;
    font-size: 6rem;
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 2px #ffffff;
    text-stroke: 2px #ffffff;
    text-transform: uppercase;
    letter-spacing: -2px;
    line-height: 1.1;
    margin: 0 0 40px 0;
    -webkit-text-fill-color: transparent;
    paint-order: stroke fill;
}

.voice-subtitle {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto;
}

.voice-features-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 60px;
    display: grid;
    grid-template-columns: 35% 65%;
    gap: 80px;
    align-items: stretch;
    background: #ffffff;
    min-height: 600px;
}

.voice-features-left {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    height: 100%;
}

.voice-features-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.voice-features-right {
    
}

.voice-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.voice-box {
    background: #ffffff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.voice-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.voice-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00ff9d 0%, #00d4aa 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.voice-icon i {
    font-size: 1.8rem;
    color: #ffffff;
}

.voice-box h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 15px;
}

.voice-box p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #666;
}

/* Studio Showcase */
.studio-showcase {
    padding: 80px 0;
    background: url('../images/DSC03056.webp') center center / cover no-repeat;
    overflow: hidden;
    position: relative;
    border-radius: 30px;
    margin: 0 20px;
}

.studio-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.75);
    z-index: 1;
}

.studio-showcase-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.studio-showcase-title {
    font-family: 'Inter', sans-serif;
    font-size: 5rem;
    font-weight: 900;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 8px;
    margin-bottom: 20px;
}

.studio-showcase-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.studio-slider-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    z-index: 2;
}

.studio-slider-row {
    display: flex;
    overflow: hidden;
    position: relative;
}

.studio-slider-track {
    display: flex;
    gap: 15px;
    animation: slideLeft 40s linear infinite;
}

.studio-slider-row[data-direction="right"] .studio-slider-track {
    animation: slideRight 40s linear infinite;
}

.studio-slide-img {
    height: 200px;
    width: auto;
    border-radius: 15px;
    object-fit: cover;
    flex-shrink: 0;
}

@keyframes slideLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes slideRight {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

/* CTA */
.cta-section {
    padding: 80px 20px;
    background: #ffffff;
    text-align: center;
}

.cta-text {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
}

/* Contact */
.contact-block {
    padding: 80px 20px;
    background: #f8f9fa;
    text-align: center;
}

.contact-block .section-heading {
    color: #1a1a1a;
}

.studio-contact-info {
    margin: 40px 0 60px;
}

.studio-contact-info h3 {
    color: #1e293b;
    margin-bottom: 20px;
    font-size: 1.4rem;
    font-weight: 700;
    text-align: center;
}

.studio-contact-info h3 i {
    margin-right: 10px;
    color: #3b82f6;
}

.contact-subtitle {
    color: #6b7280;
    text-align: center;
    margin-bottom: 25px;
    font-size: 1rem;
    line-height: 1.6;
}

.contact-info-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.contact-info-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    flex: 1;
    max-width: 250px;
}

.contact-info-card:hover {
    background: #f1f5f9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.contact-icon {
    width: 45px;
    height: 45px;
    background: #3b82f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}

.contact-icon i {
    color: white;
    font-size: 1.2rem;
}

.contact-info-card h4 {
    color: #1e293b;
    margin-bottom: 6px;
    font-size: 0.9rem;
    font-weight: 600;
}

.contact-info-card p {
    color: #6b7280;
    font-size: 0.85rem;
    line-height: 1.3;
    word-break: break-all;
}

.inquiry-form-section {
    margin-top: 60px;
    text-align: left;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.inquiry-form-section h2 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 30px;
    text-align: center;
}

.inquiry-form {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
    font-family: 'Inter', sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
}

.form-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}

.btn-primary {
    padding: 14px 32px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    background: #667eea;
    color: white;
}

.btn-primary:hover {
    background: #5568d3;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

/* 푸터 */
.site-footer {
    padding: 60px 20px 30px;
    background: #252525;
    color: white;
    text-align: center;
}

.footer-logo img {
    height: 50px;
    margin-bottom: 30px;
}

.footer-info {
    margin-bottom: 30px;
}

.footer-info p {
    margin: 10px 0;
    color: #ccc;
}

.footer-copy {
    padding-top: 30px;
    border-top: 1px solid #333;
    color: #999;
    font-size: 0.9rem;
    text-align: center;
}

.footer-copy .footer-links {
    margin-top: 15px;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-copy .footer-links a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-copy .footer-links a:hover {
    color: #ffffff;
}

/*

*/

.project-hover-bg.show-afk {
    background-image: url('../images/AFK.jpg');
    opacity: 1;
}

.project-hover-bg.show-hoyeon {
    background-image: url('../images/Port/호연2.webp');
    opacity: 1;
}

.project-hover-bg.show-throne {
    background-image: url('../images/Port/스론리.jpg');
    opacity: 1;
}

.project-hover-bg.show-mulen {
    background-image: url('../images/Port/뮈렌.jpg');
    opacity: 1;
}

.project-hover-bg.show-lineagew {
    background-image: url('../images/Port/리니지2.jpg');
    opacity: 1;
}

.project-hover-bg.show-reverse1999 {
    background-image: url('../images/Port/리버스2.jpg');
    opacity: 1;
}

/* 포트폴리오 그리드 섹션 */
.portfolio-grid-section {
    padding: 0 0 80px 0;
    background: #f8f9fa;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.portfolio-grid-item {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.portfolio-grid-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.portfolio-grid-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.portfolio-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.85) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    transition: background 0.3s ease;
}

.portfolio-grid-item:hover .portfolio-grid-overlay {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.95) 100%);
}

.portfolio-grid-info-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 12px;
    width: 100%;
}

.portfolio-badge {
    background: rgba(255, 255, 255, 0.95);
    color: #1a1a1a;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    flex-shrink: 0;
}

/* 태그 색상 분류 - 기본 */
.portfolio-badge {
    color: #ffffff;
}

/* Voice 태그 - 보라색 */
.portfolio-badge[data-tag="Voice"] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* SFX 태그 - 녹색 */
.portfolio-badge[data-tag="SFX"] {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
}

/* BGM 태그 - 주황색 */
.portfolio-badge[data-tag="BGM"] {
    background: linear-gradient(135deg, #ee0979 0%, #ff6a00 100%);
}

/* Sound 태그 - 핑크 */
.portfolio-badge[data-tag="Sound"] {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

/* 기타 태그 - 회색 */
.portfolio-badge:not([data-tag="Voice"]):not([data-tag="SFX"]):not([data-tag="BGM"]):not([data-tag="Sound"]) {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.portfolio-grid-info {
    padding: 0;
    flex: 1;
}

.portfolio-grid-info h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
    line-height: 1.3;
}

.portfolio-grid-info p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0;
}

/* 모바일 반응형 - 헤더 제외 */
@media (max-width: 768px) {
    /* Wrapper 패딩 조정 */
    .wrapper {
        padding: 0 20px;
    }

    /* Hero 섹션 */
    .hero {
        height: 50vh;
        min-height: 400px;
    }

    .hero-heading {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-top: 20px;
        letter-spacing: 1px;
    }

    .hero-content {
        padding: 0 15px;
    }

    /* Experience Showcase 섹션 */
    .experience-showcase {
        padding: 60px 20px;
    }

    .exp-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .exp-left {
        order: 1;
    }

    .exp-center {
        order: 2;
    }

    .exp-right {
        order: 3;
        display: block;
    }

    .years-badge {
        margin-left: 0;
        margin-bottom: 20px;
    }

    .studio-pic {
        height: 250px;
    }

    .engineer-pic {
        height: 250px;
    }

    .big-headline {
        font-size: 2rem;
        line-height: 1.2;
    }

    .description-block {
        font-size: 0.9rem;
        line-height: 1.8;
    }

    .exp-bottom {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 40px;
    }

    .explore-big {
        font-size: 3rem;
        text-align: left !important;
    }

    .explore-big .solid,
    .explore-big .outline {
        font-size: 3rem;
    }

    .bottom-text {
        font-size: 0.9rem;
    }

    /* Explore Gallery 섹션 */
    .explore-gallery {
        padding: 40px 20px;
    }

    .studio-rooms-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .room-title {
        font-size: 1rem;
    }

    /* Section Heading */
    .section-heading {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }

    /* Our Project 섹션 */
    .all-projects {
        padding: 30px 0 20px 0;
        border-radius: 20px 20px 0 0;
    }

    .project-slide-item {
        min-width: 90%;
        width: 90%;
        aspect-ratio: 16 / 9;
    }

    .project-slider-container {
        padding: 0 20px;
    }

    .project-info {
        left: 20px;
        max-width: calc(100% - 40px);
    }

    .project-info h4 {
        font-size: 1.2rem;
        margin: 8px 0;
    }

    .project-info p {
        font-size: 0.75rem;
        margin-top: 6px;
    }

    .badge {
        padding: 3px 10px;
        font-size: 0.6rem;
        margin-bottom: 6px;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .prev-btn {
        left: 10px;
    }

    .next-btn {
        right: 10px;
    }

    .slider-dots {
        bottom: 20px;
        right: 20px;
        padding: 6px 12px;
    }

    .slider-counter {
        font-size: 0.8rem;
    }

    .view-more-btn {
        padding-right: 20px;
    }

    .more-link {
        padding: 10px 20px;
        font-size: 0.75rem;
    }

    /* Portfolio Grid 섹션 */
    .portfolio-grid-section {
        padding: 0 0 60px 0;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }

    .portfolio-grid-overlay {
        padding: 16px;
    }

    .portfolio-grid-info-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .portfolio-grid-info h4 {
        font-size: 1.05rem;
    }

    .portfolio-grid-info p {
        font-size: 0.9rem;
    }

    /* Service 섹션 */
    .service-section {
        padding: 60px 20px;
    }

    .service-section-layout {
        flex-direction: column;
        gap: 30px;
    }

    .service-category-title {
        font-size: 2rem;
    }

    .service-tags {
        flex-wrap: wrap;
        gap: 8px;
    }

    .service-tag {
        font-size: 0.7rem;
        padding: 6px 12px;
    }

    .service-description {
        font-size: 0.9rem;
    }

    .description-first {
        font-size: 0.95rem;
        line-height: 1.8;
    }

    .description-expandable p {
        font-size: 0.9rem;
        line-height: 1.7;
    }

    /* Our Sound 섹션 */
    .sound-effects-section {
        padding: 60px 20px;
    }

    .sound-container {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .sound-left {
        padding: 40px 20px;
    }

    .sound-heading-main,
    .sound-heading-outline {
        font-size: 2.5rem;
    }

    .sound-description {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }

    .sound-right {
        min-height: 300px;
    }

    /* Sound Features 섹션 */
    .sound-features-section {
        padding: 60px 20px;
    }

    .features-container {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .features-left {
        min-height: 300px;
        height: 300px;
    }

    .studio-mixing-image {
        min-height: 300px;
    }

    .features-right {
        padding: 40px 20px;
    }

    .feature-accordion {
        margin-bottom: 15px;
    }

    .feature-item {
        gap: 20px;
        padding: 0;
    }

    .feature-number {
        font-size: 2.5rem;
    }

    .feature-item h3 {
        font-size: 1.6rem;
    }

    .feature-content {
        padding: 0 0 0 70px;
    }

    .feature-accordion.active .feature-content {
        padding: 12px 0 15px 70px;
    }

    .feature-content p {
        font-size: 0.85rem;
        margin-bottom: 10px;
        line-height: 1.6;
    }

    /* Game Voice 섹션 */
    .game-voice {
        padding: 60px 20px;
    }

    .game-voice-hero {
        min-height: 400px;
        padding: 60px 20px;
    }

    .voice-heading-solid,
    .voice-heading-outline {
        font-size: 2.5rem;
        letter-spacing: 3px;
    }

    .voice-subtitle {
        font-size: 0.9rem;
    }

    .voice-features-container {
        grid-template-columns: 1fr;
        padding: 40px 20px;
        gap: 30px;
    }

    .voice-features-left img {
        width: 100%;
        height: auto;
    }

    .voice-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .voice-box {
        padding: 20px;
    }

    .voice-icon {
        width: 45px;
        height: 45px;
    }

    .voice-icon i {
        font-size: 1.3rem;
    }

    .voice-box h4 {
        font-size: 1rem;
        margin-bottom: 10px;
    }

    .voice-box p {
        font-size: 0.85rem;
        line-height: 1.6;
    }

    /* Studio Showcase 섹션 */
    .studio-showcase {
        padding: 60px 20px;
    }

    .studio-showcase-header {
        margin-bottom: 30px;
    }

    .studio-showcase-title {
        font-size: 2rem;
        letter-spacing: 2px;
    }

    .studio-showcase-subtitle {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .studio-slide-img {
        height: 120px;
    }

    /* Contact 섹션 */
    .contact-block {
        padding: 60px 20px;
    }

    .contact-message {
        font-size: 0.95rem;
        line-height: 1.8;
    }

    .contact-button {
        padding: 12px 30px;
        font-size: 0.9rem;
    }

    /* Footer */
    .site-footer {
        padding: 40px 20px;
    }

    .footer-info {
        font-size: 0.9rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 10px;
    }
}
