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

        body {
            margin: 0;
            font-family: 'Pretendard', sans-serif;
            background-color: #000;
            color: white;
            line-height: 1.6;
        }

        .main-container {
            max-width: 1920px;
            width: 100%;
            margin: 0 auto;
            position: relative;
            box-sizing: border-box;
        }

        /* 헤더 스타일링 */
        .header {
            width: 100%;
            height: 90px;
            position: relative;
            background: black;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 53px;
            z-index: 1000;
            box-sizing: border-box;
            flex-wrap: nowrap;
        }

        .logo-container {
            width: 186px;
            height: 90px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .logo {
            width: 203.06px;
            height: 67.26px;
            margin-left: -17.06px;
            margin-top: 5px;
            max-width: 100%;
            height: auto;
        }

        .nav-menu {
            display: flex;
            gap: 50px;
            margin-left: -300px;
            flex: 1;
            justify-content: center;
            max-width: 800px;
            overflow: visible;
            min-width: 0;
        }

        .nav-item {
            text-decoration: none;
            color: #c7c7c7;
            font-size: 18px;
            font-weight: 400;
            line-height: 19.43px;
            text-align: center;
            transition: color 0.3s ease;
            white-space: nowrap;
        }

        .nav-item:hover {
            color: white;
        }

        .auth-buttons {
            display: flex;
            gap: 10px;
            align-items: center;
            flex-shrink: 0;
            min-width: 160px;
        }

        .signup-btn {
            width: 83.95px;
            height: 35.09px;
            background: #fe153c;
            border: none;
            border-radius: 3px;
            color: white;
            font-size: 16.9px;
            font-weight: 400;
            line-height: 19.43px;
            cursor: pointer;
            transition: background-color 0.3s ease;
            flex-shrink: 0;
        }

        .signup-btn:hover {
            background: #e01236;
        }

        .login-btn {
            width: 65.14px;
            height: 35.09px;
            background: #3b3b3b;
            border: none;
            border-radius: 3px;
            color: #d8d8d8;
            font-size: 16.9px;
            font-weight: 400;
            line-height: 19.43px;
            cursor: pointer;
            transition: background-color 0.3s ease;
            flex-shrink: 0;
        }

        .login-btn:hover {
            background: #4b4b4b;
        }

        /* 햄버거 버튼 스타일 */
        .hamburger-btn {
            display: none;
            flex-direction: column;
            justify-content: space-between;
            width: 30px;
            height: 22px;
            background: transparent;
            border: none;
            cursor: pointer;
            padding: 3px;
            margin-left: 10px;
            position: relative;
            z-index: 999;
        }

        .hamburger-line {
            width: 100%;
            height: 2px;
            background: white;
            border-radius: 1px;
            transition: all 0.3s ease;
            display: block;
            box-sizing: border-box;
        }

        /* 모바일 메뉴 오버레이 */
        .mobile-menu-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 1998;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

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

        /* 모바일 메뉴 */
        .mobile-menu {
            position: fixed;
            top: 0;
            left: -300px;
            width: 280px;
            height: 100%;
            background: #1a1a1a;
            z-index: 1999;
            transition: left 0.3s ease;
            overflow-y: auto;
        }

        .mobile-menu.active {
            left: 0;
        }

        .mobile-menu-header {
            height: 90px;
            display: flex;
            align-items: center;
            justify-content: flex-end;
            padding: 0 20px;
            border-bottom: 1px solid #333;
        }

        .mobile-menu-close {
            background: transparent;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
            padding: 10px;
            transition: color 0.3s ease;
        }

        .mobile-menu-close:hover {
            color: #fe153c;
        }

        .mobile-menu-items {
            padding: 30px 0;
        }

        .mobile-nav-item {
            display: block;
            padding: 15px 30px;
            color: #c7c7c7;
            text-decoration: none;
            font-size: 18px;
            font-weight: 400;
            transition: all 0.3s ease;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .mobile-nav-item:hover {
            color: white;
            background: rgba(255, 255, 255, 0.05);
            padding-left: 40px;
        }

        /* 프로필 상세 섹션 */
        .profile-detail-section {
            width: 100%;
            min-height: calc(100vh - 90px);
            background: #000;
            padding: 40px 0;
        }

        .profile-detail-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 40px;
        }

        /* 프로필 헤더 */
        .profile-header {
            display: grid;
            grid-template-columns: 400px 1fr;
            gap: 50px;
            margin-bottom: 50px;
            background: #1a1a1a;
            border-radius: 20px;
            padding: 40px;

        }

        /* 사진 섹션 */
        .profile-photos-section {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .main-photo {
            width: 100%;
            height: 450px;
            border-radius: 15px;
            overflow: hidden;
            background: #2a2a2a;
        }

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

        .photo-gallery {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 10px;
        }

        .gallery-item {
            height: 80px;
            border-radius: 8px;
            overflow: hidden;
            cursor: pointer;
            border: 2px solid transparent;
            transition: all 0.3s ease;
        }

        .gallery-item:hover {
            border-color: #fe153c;
            transform: scale(1.05);
        }

        .gallery-item.active {
            border-color: #fe153c;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* 프로필 정보 섹션 */
        .profile-info-section {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .profile-main-info {
            border-bottom: 1px solid #333;
            padding-bottom: 20px;
        }

        .actor-name {
            font-size: 36px;
            font-weight: 700;
            color: white;
            margin-bottom: 15px;
        }

        .actor-status {
            display: flex;
            gap: 10px;
            align-items: center;
        }

        .status-badge {
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 500;
            background: #2a2a2a;
            color: #888;
        }

        .status-badge.active {
            background: #fe153c;
            color: white;
        }

        .experience-badge {
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 500;
            background: #333;
            color: #ccc;
        }

        /* 기본 정보 */
        .basic-info {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .info-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 8px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .info-row:last-child {
            border-bottom: none;
        }

        .info-label {
            font-size: 14px;
            color: #888;
            font-weight: 500;
        }

        .info-value {
            font-size: 14px;
            color: white;
            font-weight: 400;
        }

        /* 전문 분야 */
        .specialty-section h3 {
            font-size: 18px;
            font-weight: 600;
            color: white;
            margin-bottom: 15px;
        }

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

        .specialty-tag {
            padding: 8px 16px;
            background: #fe153c;
            color: white;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 500;
        }

        /* 연락 버튼 */
        .contact-buttons {
            display: flex;
            gap: 10px;
        }

        .contact-btn {
            flex: 1;
            padding: 12px 20px;
            border: none;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            font-family: 'Pretendard', sans-serif;
        }

        .contact-btn.primary {
            background: #fe153c;
            color: white;
        }

        .contact-btn.primary:hover {
            background: #e01236;
        }

        .contact-btn.secondary {
            background: transparent;
            color: #fe153c;
            border: 2px solid #fe153c;
        }

        .contact-btn.secondary:hover {
            background: #fe153c;
            color: white;
        }

        /* 콘텐츠 섹션 */
        .profile-content {
            display: flex;
            flex-direction: column;
            gap: 40px;
        }

        .content-section {
            background: #1a1a1a;
            border-radius: 20px;
            padding: 30px;
        }

        .content-title {
            font-size: 24px;
            font-weight: 600;
            color: white;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #fe153c;
        }

        .content-card {
            padding: 20px 0;
        }

        /* 자기소개 */
        .introduction-text {
            font-size: 16px;
            line-height: 1.8;
            color: #ccc;
        }

        /* 필모그래피 */
        .filmography-list {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .filmography-item {
            display: flex;
            align-items: center;
            gap: 25px;
            padding: 20px;
            background: #2a2a2a;
            border-radius: 12px;
            border-left: 4px solid #fe153c;
        }

        .work-year {
            font-size: 18px;
            font-weight: 700;
            color: #fe153c;
            min-width: 60px;
        }

        .work-details {
            flex: 1;
        }

        .work-title {
            font-size: 18px;
            font-weight: 600;
            color: white;
            margin-bottom: 5px;
        }

        .work-role {
            font-size: 14px;
            color: #888;
            padding: 4px 12px;
            background: #444;
            border-radius: 20px;
            display: inline-block;
        }

        /* 비디오 컨테이너 */
        .video-container {
            width: 100%;
            border-radius: 15px;
            overflow: hidden;
            background: #333;
        }

        .video-container video {
            width: 100%;
            height: auto;
            display: block;
        }

        /* SNS 링크 */
        .sns-links {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 15px;
        }

        .sns-link {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 15px 20px;
            background: #333;
            border-radius: 12px;
            text-decoration: none;
            color: white;
            transition: all 0.3s ease;
            font-weight: 500;
        }

        .sns-link:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }

        .sns-link.instagram:hover {
            background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
        }

        .sns-link.youtube:hover {
            background: #ff0000;
        }

        .sns-link.tiktok:hover {
            background: #000000;
        }

        .sns-link.website:hover {
            background: #fe153c;
        }

        /* 반응형 디자인 */
        @media (max-width: 1000px) {
            .header {
                padding: 0 30px;
                height: 80px;
            }

            .logo-container {
                width: auto;
                min-width: 140px;
            }

            .logo {
                width: 160px;
                height: auto;
                margin-left: 0;
                margin-top: 0;
            }

            .nav-menu {
                display: none;
            }

            .auth-buttons {
                gap: 8px;
            }

            .signup-btn {
                width: 75px;
                height: 32px;
                font-size: 15px;
            }

            .login-btn {
                width: 60px;
                height: 32px;
                font-size: 15px;
            }

            .hamburger-btn {
                display: flex !important;
                width: 28px;
                height: 20px;
                margin-left: 10px;
            }

            .profile-header {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .profile-photos-section {
                max-width: 400px;
                margin: 0 auto;
            }
        }

        @media (max-width: 768px) {
            .header {
                padding: 0 20px;
                height: 70px;
            }

            .logo {
                width: 140px;
            }

            .auth-buttons {
                gap: 6px;
            }

            .signup-btn {
                width: 65px;
                height: 30px;
                font-size: 13px;
            }

            .login-btn {
                width: 50px;
                height: 30px;
                font-size: 13px;
            }

            .profile-detail-container {
                padding: 0 20px;
            }

            .profile-header {
                padding: 30px 20px;
            }

            .content-section {
                padding: 20px;
            }

            .content-card {
                padding: 20px;
            }

            .actor-name {
                font-size: 28px;
            }

            .content-title {
                font-size: 20px;
            }

            .main-photo {
                height: 350px;
            }

            .photo-gallery {
                grid-template-columns: repeat(3, 1fr);
            }

            .gallery-item {
                height: 70px;
            }

            .contact-buttons {
                flex-direction: column;
            }

            .filmography-item {
                flex-direction: column;
                align-items: flex-start;
                gap: 15px;
            }

            .work-year {
                min-width: auto;
            }

            .sns-links {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 480px) {
            .profile-detail-section {
                padding: 20px 0;
            }

            .profile-header {
                margin-bottom: 30px;
            }

            .profile-content {
                gap: 30px;
            }

            .main-photo {
                height: 300px;
            }

            .photo-gallery {
                grid-template-columns: repeat(2, 1fr);
            }

            .gallery-item {
                height: 60px;
            }

            .actor-name {
                font-size: 24px;
            }

            .content-title {
                font-size: 18px;
            }

            .specialty-tags {
                justify-content: center;
            }
        }