@font-face {
    font-family: 'Corporate HQ';
    src: url('./fonts/corp.ttf') format('truetype');
    font-style: normal;
}

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

body {
    font-family: 'Pretendard', sans-serif;
    background-color: #1a1a1a;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

/* Back Button for Artist Detail Page */
.back-button {
    position: fixed;
    top: 100px;
    left: 40px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background-color: rgba(26, 26, 26, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    z-index: 100;
    backdrop-filter: blur(10px);
}

.back-button:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateX(-4px);
}

.back-button svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.back-button:hover svg {
    transform: translateX(-3px);
}

.back-button span {
    letter-spacing: 0.02em;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    border-bottom: 1px solid #333;
    z-index: 1000;
    height: 72px;
}

.nav-container {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 252px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.logo-text {
    height: 25px;
    width: 200px;
}

.logo-icon {
    width: 48px;
    height: 48px;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 8px;
}


.nav-menu {
    display: flex;
    gap: 56px;
    align-items: center;
    flex: 1;
    justify-content: center;
    margin: 0 100px;
}

.nav-link {
    display: flex;
    align-items: center;
    transition: opacity 0.3s ease;
    position: relative;
}

.nav-link img {
    height: 12.5px;
    width: auto;
    display: block;
    object-fit: contain;
}

/* Individual menu item sizes based on Figma */
.nav-link:nth-child(1) img { /* COMPANY */
    width: 99px;
}
.nav-link:nth-child(2) img { /* ARTIST */
    width: 76px;
}
.nav-link:nth-child(3) img { /* W LIFE */
    width: 77px;
}
.nav-link:nth-child(4) img { /* NEWS */
    width: 61px;
}
.nav-link:nth-child(5) img { /* CAREER */
    width: 77px;
}
.nav-link:nth-child(6) img { /* CONNECT */
    width: 100px;
}

.nav-link:hover {
    opacity: 0.7;
}

/* Hero Section */
.hero {
    position: relative;
    height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 72px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('assets/hero-bg.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 40px;
}

.hero-title {
    font-size: 72px;
    font-weight: 800;
    letter-spacing: -2.16px;
    text-transform: uppercase;
    margin-bottom: 40px;
    font-family: 'Corporate HQ', sans-serif;
    line-height: 1;
}

.hero-text {
    font-size: 14px;
    line-height: 1.6;
    letter-spacing: -0.42px;
    max-width: 680px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.8);
}

.hero-text strong {
    font-weight: 600;
}

/* Artist Section */
.artist-section {
    padding: 80px 0;
    background-color: #1a1a1a;
    overflow: hidden;
    position: relative;
}

.section-title {
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -0.96px;
    text-transform: uppercase;
    margin-bottom: 32px;
    font-family: 'Montserrat', sans-serif;
}

.artist-grid {
    display: flex;
    gap: 24px;
    animation: scroll-left 60s linear infinite;
    width: fit-content;
}

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

.artist-grid:hover {
    animation-play-state: paused;
}

.artist-card {
    position: relative;
    flex-shrink: 0;
    width: 336px;
    height: 378px;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.artist-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.artist-image {
    width: 100%;
    height: 100%;
    background-color: #333;
    background-size: cover;
    background-position: center;
}

.artist-info {
    position: absolute;
    bottom: 20px;
    left: 16px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.artist-role {
    font-size: 40px;
    font-weight: 800;
    letter-spacing: -1.2px;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
}

.artist-name {
    font-size: 20px;
    font-weight: 500;
    letter-spacing: -0.6px;
}

.artist-arrow {
    position: absolute;
    top: 0;
    right: 0;
    padding: 8px;
}

.artist-arrow img {
    width: 32px;
    height: 32px;
}

/* W Life Section */
.wlife-section {
    padding: 100px 0;
    background-color: #1a1a1a;
}

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

.wlife-item {
    width: 100%;
    height: 338px;
    background-color: #f2f2f2;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.wlife-item:hover {
    opacity: 0.8;
}

/* News Section */
.news-section {
    padding: 80px 0;
    background-color: #ffffff;
}


.news-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 48px;
}

.news-title-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
}

.news-section .section-title {
    margin-bottom: 0;
    color: #000000;
}

.section-arrow {
    width: 12px;
    height: 12px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.section-arrow:hover {
    transform: translate(2px, -2px);
}

.news-title {
    font-size: 64px;
    font-weight: 800;
    letter-spacing: -1.92px;
    text-transform: uppercase;
    color: #1a1a1a;
    font-family: 'Corporate HQ', sans-serif;
}

.news-nav {
    display: flex;
    gap: 24px;
}

.nav-btn {
    width: 48px;
    height: 48px;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.nav-btn:hover {
    opacity: 0.6;
}

.nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.nav-btn:disabled:hover {
    opacity: 0.3;
}

.nav-btn img {
    width: 48px;
    height: 48px;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.news-card {
    padding: 32px 0;
    border-top: 1px solid #1a1a1a;
    border-bottom: 1px solid #b0b0b0;
}

.news-card-title {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: -0.6px;
    color: #000000;
    margin-bottom: 12px;
}

.news-card-excerpt {
    font-size: 13px;
    line-height: 1.6;
    letter-spacing: -0.39px;
    color: #4d4d4d;
    margin-bottom: 24px;
}

.news-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.news-card-footer img {
    width: 24px;
    height: 24px;
}

.news-date {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: -0.48px;
    color: #1a1a1a;
}

/* Company Page Styles */
.company-sticky-topbar {
    position: sticky;
    top: 72px;
    background-color: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    padding: 24px 240px;
    z-index: 999;
    margin-top: 72px;
}

.company-topbar-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 48px;
    font-weight: 900;
    letter-spacing: -1.44px;
    line-height: 48px;
    color: #1a1a1a;
    text-transform: uppercase;
}

.company-hero {
    margin-top: 0;
    background-color: #ffffff;
    position: relative;
}

.company-ticker {
    background-color: #1a1a1a;
    height: 32px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
}

.ticker-content {
    display: flex;
    gap: 8px;
    animation: ticker-scroll 20s linear infinite;
    white-space: nowrap;
}

.ticker-content span {
    color: #696969;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: -0.42px;
    padding: 0 8px;
}

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

.company-hero-content {
    position: relative;
    padding: 0;
    min-height: 1000px;
    max-width: 1920px;
    margin: 0 auto;
}

.company-hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 48px;
    font-weight: 900;
    letter-spacing: -1.44px;
    line-height: 48px;
    color: #1a1a1a;
    text-transform: uppercase;
    position: absolute;
    left: 252px;
    top: 220px;
    width: 576px;
    height: 46px;
    margin: 0;
}

.company-logo-large {
    position: absolute;
    left: auto;
    right: 256px;
    top: 340px;
    width: 560px;
    height: 560px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.company-logo-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) saturate(100%);
}

.company-content {
    background-color: #ffffff;
    padding: 100px 0 120px;
    position: relative;
}

.company-container {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 252px;
    position: relative;
}

.company-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 936px;
    margin: 0 auto;
    padding: 0;
}

.company-item {
    padding-bottom: 24px;
    border-bottom: 1px solid #e0e0e0;
}

.company-item:last-child {
    border-bottom: none;
}

.company-item-title {
    font-size: 24px;
    font-weight: 600;
    letter-spacing: -0.72px;
    color: #1a1a1a;
    margin-bottom: 8px;
    line-height: 1.45;
}

.company-item-text {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.61;
    color: #4d4d4d;
    letter-spacing: -0.42px;
}

.nav-link.active {
    opacity: 1;
    position: relative;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #8c8c8c;
}

/* Artist Page Styles */
.artist-hero {
    margin-top: 88px;
    background-color: #ffffff;
    position: relative;
}

.artist-ticker {
    background-color: #1a1a1a;
    height: 32px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
}

.artist-content {
    background-color: #ffffff;
    min-height: calc(100vh - 72px);
    padding: 60px 0 80px;
}

.artist-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 60px;
    display: flex;
    gap: 60px;
    justify-content: space-between;
}

.artist-header {
    flex-shrink: 0;
    width: 200px;
}

.artist-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 48px;
    font-weight: 900;
    letter-spacing: -1.44px;
    color: #1a1a1a;
    text-transform: uppercase;
    margin-bottom: 32px;
}

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

.artist-list-item {
    font-size: 18px;
    font-weight: 400;
    color: #8d8d8d;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    letter-spacing: -0.54px;
    transition: color 0.3s ease;
}

.artist-list-item:hover {
    color: #151515;
    cursor: pointer;
}

.artist-list-item.active {
    color: #151515;
    text-decoration: underline;
    text-underline-position: from-font;
    font-weight: 600;
}

.artist-list-item .arrow {
    font-size: 16px;
    display: inline-block;
}

.artist-grid-container {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    padding-right: 0;
}

.artist-page-grid {
    display: grid;
    grid-template-columns: 200px repeat(4, 180px);
    grid-template-rows: repeat(3, 315px);
    gap: 20px;
    width: fit-content;
    position: relative;
    justify-content: end;
}


/* 빈 공간 스타일 */
.artist-grid-space {
    height: 315px;
    /* width는 그리드 셀 크기에 맞춰 자동 조정 */
}

/* 이미지가 왼쪽으로 이동하는 클래스 */
.artist-grid-item.shift-left {
    transform: translateX(-200px);
}

.artist-grid-item {
    position: relative;
    width: 180px;
    height: 315px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 1;
    cursor: pointer;
    overflow: visible;
}


.artist-grid-item.active-artist .artist-grid-image,
.artist-grid-item.expanded .artist-grid-image {
    width: 380px;
    z-index: 10;
    position: relative;
    transform: translateX(-200px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}



.artist-grid-image {
    width: 180px;
    height: 315px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #5b5b5b;
    position: relative;
    cursor: pointer;
    transition: width 0.3s ease, transform 0.3s ease;
}


.artist-grid-label {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 16px;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.artist-grid-role {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: -0.36px;
    color: #ffffff;
    text-transform: uppercase;
}

.artist-grid-name {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -0.48px;
    color: #ffffff;
}

.artist-arrow-indicator {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.artist-arrow-indicator:hover {
    transform: scale(1.1);
}

.artist-arrow-indicator svg,
.artist-arrow-indicator img {
    width: 24px;
    height: 24px;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    width: 30px;
    height: 30px;
    position: absolute;
    right: 80px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    z-index: 1001;
}

.mobile-menu-btn span {
    position: absolute;
    width: 22px;
    height: 2px;
    background-color: #8c8c8c;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.3s ease;
}

.mobile-menu-btn span:nth-child(1) {
    top: 7px;
}

.mobile-menu-btn span:nth-child(2) {
    top: 14px;
}

.mobile-menu-btn span:nth-child(3) {
    top: 21px;
}

.mobile-menu-btn:hover span {
    background-color: #ffffff;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: translateX(-50%) rotate(45deg);
    top: 14px;
}

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

.mobile-menu-btn.active span:nth-child(3) {
    transform: translateX(-50%) rotate(-45deg);
    top: 14px;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 88px;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #1a1a1a;
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

.mobile-menu-items {
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.mobile-menu-items .nav-link {
    display: block;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.mobile-menu-items .nav-link:hover,
.mobile-menu-items .nav-link.active {
    opacity: 1;
}

.mobile-menu-items .nav-link img {
    height: 16px;
    width: auto;
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    border-top: 1px solid #333;
    padding: 60px 0 40px;
}

.footer-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 60px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 40px;
}

.footer-logo-text {
    height: 19px;
    width: auto;
}

.footer-logo-icon {
    width: 32px;
    height: 32px;
}

.footer-links {
    display: flex;
    gap: 66px;
    margin-bottom: 40px;
}

.footer-links a {
    font-size: 16px;
    letter-spacing: -0.48px;
    color: #f2f2f2;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 0.7;
}

.footer-social {
    display: flex;
    gap: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.social-icon:hover {
    opacity: 0.7;
}

/* Artist Detail Page */
.artist-detail {
    min-height: calc(100vh - 72px);
    padding: 100px 0;
    background-color: #ffffff;
}

.artist-detail-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 60px;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.artist-detail-image {
    flex: 0 0 500px;
    height: 700px;
    overflow: hidden;
    background-color: #f5f5f5;
}

.artist-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.artist-detail-info {
    flex: 1;
    padding-top: 40px;
}

.artist-detail-header {
    margin-bottom: 60px;
}

.artist-detail-role {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #666;
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
}

.artist-detail-name {
    font-size: 48px;
    font-weight: 700;
    letter-spacing: -1.44px;
    color: #1a1a1a;
    margin: 0;
}

.artist-detail-bio {
    margin-bottom: 60px;
}

.artist-detail-section {
    display: flex;
    padding: 20px 0;
    border-bottom: 1px solid #e5e5e5;
}

.artist-detail-section:first-child {
    border-top: 1px solid #e5e5e5;
}

.artist-detail-label {
    flex: 0 0 120px;
    font-size: 14px;
    font-weight: 600;
    color: #666;
    margin: 0;
}

.artist-detail-text {
    flex: 1;
    font-size: 16px;
    font-weight: 400;
    color: #1a1a1a;
    margin: 0;
}

.artist-detail-filmography {
    margin-top: 80px;
}

.artist-detail-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.72px;
    color: #1a1a1a;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.filmography-tabs {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    border-bottom: 1px solid #e5e5e5;
}

.filmography-tab {
    padding: 12px 24px;
    background: none;
    border: none;
    font-size: 14px;
    font-weight: 500;
    color: #999;
    cursor: pointer;
    position: relative;
    transition: color 0.3s ease;
}

.filmography-tab.active {
    color: #1a1a1a;
    font-weight: 600;
}

.filmography-tab.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #1a1a1a;
}

.filmography-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.filmography-item {
    display: flex;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid #f0f0f0;
}

.filmography-year {
    flex: 0 0 60px;
    font-size: 14px;
    font-weight: 600;
    color: #666;
}

.filmography-type {
    flex: 0 0 80px;
    font-size: 14px;
    font-weight: 500;
    color: #999;
}

.filmography-title {
    flex: 1;
    font-size: 16px;
    font-weight: 500;
    color: #1a1a1a;
}

.filmography-role {
    flex: 0 0 60px;
    font-size: 14px;
    font-weight: 400;
    color: #666;
    text-align: right;
}

.artist-detail-back {
    max-width: 1440px;
    margin: 60px auto 0;
    padding: 0 60px;
}

.back-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: 1px solid #e5e5e5;
    background-color: #ffffff;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.back-button:hover {
    background-color: #f5f5f5;
    border-color: #333;
}

/* Responsive Design */
@media (max-width: 1680px) {
    .container {
        padding: 0 120px;
    }
    
    .nav-container {
        padding: 0 180px;
    }
    
    .footer-container {
        padding: 0 120px;
    }
    
    .nav-menu {
        gap: 48px;
        margin: 0 80px;
    }
}

@media (max-width: 1280px) {
    .nav-container {
        padding: 0 120px;
    }
    
    .nav-menu {
        gap: 40px;
        margin: 0 60px;
    }
    
    .hero-title {
        font-size: 80px;
    }
    
    .artist-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .wlife-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .container {
        padding: 0 60px;
    }
    
    .nav-container,
    .footer-container {
        padding: 0 60px;
    }
    
    .hero-title {
        font-size: 60px;
    }
    
    .artist-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .wlife-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .nav-menu {
        gap: 25px;
        margin: 0 40px;
    }
    
    .nav-link img {
        height: 11px;
    }
    
    .nav-link:nth-child(1) img { width: 88px; }
    .nav-link:nth-child(2) img { width: 68px; }
    .nav-link:nth-child(3) img { width: 69px; }
    .nav-link:nth-child(4) img { width: 55px; }
    .nav-link:nth-child(5) img { width: 69px; }
    .nav-link:nth-child(6) img { width: 90px; }
}

@media (max-width: 768px) {
    .container {
        padding: 0 30px;
    }
    
    .nav-container {
        padding: 0 30px;
    }
    
    .footer-container {
        padding: 0 30px;
    }

    .logo-text {
        display: none;
    }
    
    .logo-icon {
        width: 40px;
        height: 40px;
    }
    
    
    .hero-title {
        font-size: 40px;
        margin-bottom: 40px;
    }
    
    .hero-text {
        font-size: 14px;
    }
    
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        margin-left: auto;
        margin-right: 20px;
    }
    
    .artist-grid,
    .wlife-grid,
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .news-title {
        font-size: 40px;
    }
    
    .news-card-title {
        font-size: 18px;
    }
    
    .footer-links {
        flex-wrap: wrap;
        gap: 30px;
    }
}

/* Company Page Responsive Styles */
@media (max-width: 1680px) {
    .company-sticky-topbar {
        padding: 24px 180px;
    }

    .company-hero-title {
        left: 180px;
    }

    .company-logo-large {
        right: 180px;
        width: 500px;
        height: 500px;
    }

    .company-container {
        padding: 0 180px;
    }
}

@media (max-width: 1280px) {
    .company-sticky-topbar {
        padding: 20px 120px;
    }

    .company-topbar-title {
        font-size: 40px;
        line-height: 40px;
    }

    .company-hero-content {
        min-height: 800px;
    }

    .company-hero-title {
        left: 120px;
        font-size: 40px;
        line-height: 40px;
        max-width: 480px;
    }

    .company-logo-large {
        right: 120px;
        width: 400px;
        height: 400px;
    }

    .company-container {
        padding: 0 120px;
    }
}

@media (max-width: 1024px) {
    .company-sticky-topbar {
        padding: 20px 60px;
    }

    .company-topbar-title {
        font-size: 36px;
        line-height: 36px;
    }

    .company-hero-content {
        min-height: 800px;
        flex-direction: column;
        padding: 60px 0;
    }

    .company-hero-title {
        position: relative;
        left: auto;
        top: auto;
        margin: 0 auto;
        text-align: center;
    }

    .company-logo-large {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        margin: 60px auto 0;
    }

    .company-list {
        padding: 0 60px;
    }

    .company-content {
        padding: 40px 0 80px;
    }
}

@media (max-width: 768px) {
    .company-sticky-topbar {
        padding: 16px 30px;
    }

    .company-topbar-title {
        font-size: 32px;
        line-height: 32px;
    }

    .company-content {
        padding: 20px 0 60px;
    }
    .company-hero-content {
        min-height: calc(100vh - 80px);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: relative;
        padding-bottom: 40px;
    }

    .company-hero-title {
        font-size: 36px;
        line-height: 36px;
        width: auto;
        position: relative;
        left: auto;
        right: auto;
        top: auto;
        text-align: center;
        margin-top: -150px;
    }
    
    .company-logo-large {
        width: 300px;
        height: 300px;
        position: relative;
        left: auto;
        right: auto;
        top: auto;
        transform: none;
        margin-top: 60px;
        margin-bottom: -40px;
    }
    
    .company-container {
        padding: 0 30px;
    }
    
    .company-list {
        max-width: 100%;
        padding: 0 30px;
    }
    
    .company-item-title {
        font-size: 20px;
    }
    
    .company-item-text {
        font-size: 13px;
    }
}

/* Extra small mobile screens */
@media (max-width: 480px) {
    .company-sticky-topbar {
        padding: 12px 20px;
    }

    .company-topbar-title {
        font-size: 28px;
        line-height: 28px;
    }

    .company-hero-title {
        font-size: 32px;
        line-height: 32px;
        margin-top: -120px;
    }

    .company-logo-large {
        width: 260px;
        height: 260px;
        margin-top: 50px;
        margin-bottom: -30px;
    }

    .company-hero-content {
        min-height: calc(100vh - 60px);
        padding-bottom: 30px;
    }

    .company-content {
        padding: 10px 0 40px;
    }
}