@font-face {
    font-family: 'PyeojinGothic-Bold';
    src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/2504-1@1.0/PyeojinGothic-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
}

        /* Common Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            line-height: 1.6;
            color: #333;
            padding-top: 120px;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Top Header Bar */
        .top-header {
            background: white;
            padding: 0;
            border-bottom: 1px solid #e0e0e0;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
            height: 60px;
        }

        .top-header .container {
            height: 100%;
            display: flex;
            align-items: center;
        }

        .top-nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
        }

        .logo {
            display: flex;
            align-items: center;
            cursor: pointer;
        }

        .logo img {
            height: 40px; /* 로고 높이 설정 */
            width: auto; /* 비율 유지 */
            object-fit: contain; /* 이미지 비율 유지 */
        }

        .logo-icon {
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .logo-icon IMG {
        	width: 100%;
        	height: 100%;
        }

        .logo-text {
            font-size: 18px;
            font-weight: bold;
            color: #333;
            font-style: italic;
        }
        .logo-text SPAN {
            color: #ff3301;
        }

        .top-right {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .lang-btn {
            background: #ff3301;
            color: white;
            padding: 8px 16px;
            border-radius: 4px;
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
        }
        
        /* Top Menu Styles */
        .top-menu {
		    display: flex;
		    align-items: center;
		    gap: 15px; /* 메뉴 간격을 조금 줄임 */
		    margin-right: 10px; /* 로그인 버튼과의 간격 */
        }

		.top-menu a {
		    color: #333;
		    text-decoration: none;
		    font-size: 16px;
		    padding: 6px 12px; /* 패딩을 조금 늘려서 클릭 영역 확대 */
		    border-radius: 4px;
		    transition: all 0.3s ease;
		    white-space: nowrap;
		    min-width: fit-content;
		}
        
        .top-menu a:hover {
            color: #ff6b6b;
            background-color: #f8f9fa;
        }
        
        .top-menu .room SPAN {
        	color: #ff6b6b;
        }

        /* Main Navigation */
        .main-nav {
            background: #2d2d2d;
            padding: 0;
            position: fixed;
            top: 69px;
            left: 0;
            right: 0;
            z-index: 999;
            box-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }

        .nav-container {
            display: flex;
            justify-content: center;
            position: relative;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            margin: 0;
            padding: 0;
            font-family: 'PyeojinGothic-Bold', sans-serif;
        }

        .nav-menu li {
            position: relative;
        }

        .nav-menu a {
            display: block;
            color: white;
            text-decoration: none;
            padding: 14px 25px;
            font-size: 20px;
            font-weight: 400;
            transition: all 0.3s ease;
            border-bottom: 3px solid transparent;
            white-space: nowrap; /* 텍스트 줄바꿈 방지 */
        }

        .nav-menu a:hover,
        .nav-menu a.active {
            color: white;
            border-bottom-color: #ff6b6b;
        }

        /* Mobile menu button - top-header에 배치 */
        .mobile-menu-btn {
            display: none;
            color: #333;
            cursor: pointer;
            z-index: 1001;
            background: none;
            border: none;
            padding: 8px;
            border-radius: 4px;
            transition: background-color 0.3s ease;
            width: 30px;
            height: 30px;
            position: relative;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 5px;
        }

        .mobile-menu-btn:hover {
            background-color: #f8f9fa;
        }

        /* 햄버거 선 스타일 */
        .mobile-menu-btn span {
            display: block;
            width: 22px;
            height: 3.5px;
            background-color: #333;
            border-radius: 2px;
            transition: all 0.3s ease;
            transform-origin: center;
            will-change: transform;
        }

        /* X자 애니메이션 */
        .mobile-menu-btn.active span:nth-child(1) {
            transform: translateY(6.75px) rotate(45deg);
        }

        .mobile-menu-btn.active span:nth-child(2) {
            opacity: 0;
            transform: scaleX(0);
        }

        .mobile-menu-btn.active span:nth-child(3) {
            transform: translateY(-6.75px) rotate(-45deg);
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
            display: flex;
            align-items: center;
            color: white;
            position: relative;
            overflow: hidden;
            margin-top: 0;
            padding: 20px 0;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 50%;
            height: 100%;
            background: linear-gradient(45deg, transparent 0%, rgba(255, 107, 107, 0.1) 100%);
            clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
        }

        .hero-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            position: relative;
            z-index: 2;
        }

        .hero-text {
            flex: 1;
            max-width: 600px;
            font-family: 'PyeojinGothic-Bold', sans-serif;
        }

        .hero-subtitle {
            color: #ff6b6b;
            font-size: 16px;
            margin-bottom: 20px;
            font-weight: 500;
        }

        .hero h1 {
            font-size: 3.2rem;
            margin-bottom: 30px;
            font-weight: 300;
        }

        .hero h1 .highlight {
            color: #ff3301;
            font-weight: 400;
        }

        .hero-person {
            flex: 0 0 300px;
            height: 400px;
            background: linear-gradient(45deg, #333, #555);
            border-radius: 10px;
            position: relative;
            overflow: hidden;
            right: -150px;
        }

        .hero-person::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 500"><rect fill="%23444" width="400" height="500"/><circle cx="200" cy="150" r="60" fill="%23666"/><rect x="150" y="250" width="100" height="150" fill="%23555" rx="10"/></svg>');
            background-size: cover;
        }

        .hero-caption {
            position: absolute;
            bottom: 20px;
            right: 20px;
            color: #ccc;
            font-size: 14px;
        }

        /* Content Section */
        .content-section {
            background: white;
            padding: 80px 0;
        }

        .content-divider {
            width: 100%;
            height: 1px;
            background: #e0e0e0;
            margin: 40px 0;
        }

        .content-title {
            font-size: 1.8rem;
            color: #333;
            margin-bottom: 40px;
            text-align: center;
            font-weight: 400;
        }

        .content-text {
            font-size: 1rem;
            line-height: 1.8;
            color: #666;
            margin-bottom: 20px;
            text-align: center;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Dark Section */
        .dark-section {
            background: #1a1a1a;
            color: white;
            padding: 100px 0;
        }

        .dark-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 60px;
        }

        .dark-text {
            flex: 1;
        }

        .dark-text h2 {
            font-size: 2.5rem;
            margin-bottom: 30px;
            line-height: 1.3;
            font-weight: 300;
        }

        .dark-text p {
            font-size: 1.1rem;
            margin-bottom: 20px;
            opacity: 0.9;
            line-height: 1.8;
        }

        .btn {
            display: inline-block;
            background: #ff6b6b;
            color: white;
            padding: 15px 30px;
            text-decoration: none;
            border-radius: 5px;
            font-weight: 500;
            margin-top: 20px;
            transition: background 0.3s ease;
        }

        .btn:hover {
            background: #ff5252;
        }

        .dark-image {
		    flex: 1;
		    width: 100%;
		    height: 350px;
		    background: #333;
		    border-radius: 10px;
		    position: relative;
		    overflow: hidden;
		    display: flex;
		    align-items: center;
		    justify-content: center;
		}
		
		.dark-image img {
		    width: 100%;
		    object-fit: cover; /* 이미지 비율 유지하면서 컨테이너 채우기 */
		    object-position: center; /* 이미지 중앙 정렬 */
		    border-radius: 10px;
		}

		/* 기존 CSS는 그대로 유지하고, iframe 스타일만 추가 */
		.dark-image iframe {
		    width: 100%;
		    height: 100%;
		    border-radius: 10px;
		    object-fit: cover;
		}
		
		/* 반응형을 위한 추가 스타일 */
		@media (max-width: 768px) {
		    .dark-image iframe {
		        height: 250px;
		    }
		}
		
        /* FAQ Section */
        .faq-section {
            background: #f8f9fa;
            padding: 80px 0;
        }

        .faq-title {
            text-align: center;
            font-size: 2rem;
            margin-bottom: 50px;
            color: #333;
            font-weight: 400;
        }

        .faq-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-text {
            font-size: 1rem;
            line-height: 1.8;
            color: #666;
            margin-bottom: 30px;
            text-align: left;
        }

        /* Contact Section */
        .contact-section {
            background: #333;
            color: white;
            padding: 80px 0;
            text-align: center;
        }

        .contact-title {
            font-size: 1.8rem;
            margin-bottom: 30px;
            font-weight: 400;
        }

        .contact-subtitle {
            color: #ff6b6b;
            font-size: 1.3rem;
            font-weight: bold;
            margin-bottom: 30px;
        }

        .phone-number {
            font-size: 2rem;
            font-weight: bold;
            margin: 20px 0;
        }

        .contact-buttons {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 20px;
        }

        .contact-btn {
            padding: 8px 16px;
            border-radius: 20px;
            text-decoration: none;
            font-size: 12px;
            font-weight: bold;
        }

        .kakao-btn {
            background: #ffeb3b;
            color: #333;
        }

        .telegram-btn {
            background: #2196f3;
            color: white;
        }

        /* Footer */
        footer {
            background: #1a1a1a;
            color: #ccc;
            padding: 40px 0;
            text-align: center;
        }

        .footer-content {
            font-size: 12px;
            line-height: 1.6;
        }

        /* Mobile Responsive Styles */
        @media (max-width: 768px) {
            body {
                padding-top: 60px;
            }

		    .logo img {
		        height: 30px; /* 모바일에서 로고 높이 축소 */
		    }

		    .top-right {
		        gap: 10px;
		    }
		    
            .mobile-menu-btn {
                display: flex;
            }
            
		    .lang-btn {
		    	display: none !important;
		    }

		    .top-menu {
		    	position: fixed;
		    	top: 0;
		    	left: 0;
		    	width: 100%;
		    	height: 100vh;
		    	background: white;
		    	flex-direction: column;
		    	justify-content: flex-start;
		    	padding: 60px 20px 20px 20px;
		    	z-index: 998;
		    	overflow-y: auto;
		    	margin: 0;
		    	gap: 0;
		    	transition: clip-path 0.5s cubic-bezier(0.77, 0, 0.175, 1), opacity 0.3s ease, visibility 0s 0.5s;
		    	clip-path: circle(0px at calc(100% - 30px) 22px);
		    	opacity: 0;
		    	visibility: hidden;
		    	pointer-events: none;
		    }

            .nav-menu a {
                padding: 18px 30px;
                text-align: left;
                font-size: 16px;
                border-bottom: none;
                display: flex;
                align-items: center;
                color: white;
                text-decoration: none;
                white-space: normal; /* 모바일에서는 줄바꿈 허용 */
            }

            .nav-menu a:hover {
                background: #3d3d3d;
                border-bottom: none;
            }

            /* 히어로 섹션 모바일 조정 - 위치 수정 */
            .hero {
                min-height: 80vh; /* 모바일에서 높이 증가 */
                padding-top: 40px; /* 상단 여백 추가 */
            }

            .hero-content {
                flex-direction: column;
                text-align: center;
                gap: 40px;
                justify-content: center; /* 수직 중앙 정렬 */
            }

            .hero h1 {
                font-size: 2.2rem;
            }

            .hero-person {
                flex: none;
                width: 250px;
                height: 320px;
            }

            .dark-content {
                flex-direction: column;
            }

            .dark-text h2 {
                font-size: 1.8rem;
            }

            .phone-number {
                font-size: 1.5rem;
            }

            .contact-buttons {
                flex-direction: column;
                align-items: center;
            }
            
		    .dark-image {
		        height: 250px;
		    }
		    
		    .dark-image img {
		        width: 100%;
		        height: 100%;
		        object-fit: cover;
		        object-position: center;
		    }
		    
		    .top-menu.mobile-active {
		        clip-path: circle(150% at calc(100% - 30px) 22px);
		        opacity: 1;
		        visibility: visible;
		        pointer-events: auto;
		        transition: clip-path 0.5s cubic-bezier(0.77, 0, 0.175, 1), opacity 0.3s ease, visibility 0s;
		    }
		    
		    .top-menu.mobile-active a {
		        padding: 16px 0px 5px 5px;
		        text-align: left;
		        font-size: 18px;
		        border-bottom: 1px solid #444;
		        border-bottom: 1px solid #ddd;
		        display: flex;
		        align-items: center;
		        color: white !important;
		        color: #2d2d2d !important;
		        text-decoration: none;
		        white-space: normal;
		        width: 100%;
		        background: transparent;
		        border-radius: 0;
		    }
		
		    .top-menu.mobile-active a:hover {
		        background: #3d3d3d !important;
		        color: white !important;
		    }
	        
	        .hero-person {
	        	right: 0px;
	        }
	        
	        .top-menu A.room {
	        	font-size: 24px;
	        	letter-spacing: -1px;
	        	font-weight: 800 !important;
	        	font-family: 'Arial', sans-serif;
	        }
	        .top-menu A.apply {
	        	font-weight: normal !important;
	        	font-family: 'Malgun Gothic', '맑은 고딕', sans-serif;
	        }
            
	        
        }

        @media (max-width: 480px) {
	        .logo-icon IMG {
	        	width: 60%;
	        	height: 60%;
	        }
	        
            /* 더 작은 모바일에서 히어로 섹션 추가 조정 */
            .hero {
                min-height: 75vh;
                padding-top: 30px;
            }

            .hero h1 {
                font-size: 1.8rem;
            }

            .hero-person {
                width: 200px;
                height: 260px;
            }

            .content-title,
            .faq-title,
            .contact-title {
                font-size: 1.4rem;
            }

            .nav-menu a {
                padding: 15px 10px;
                font-size: 15px;
            }
            
            .top-menu {
            	gap: 0px;
            	margin-right: 0px;
            }
            .top-menu a {
            	padding: 3px 6px;
            	font-size: 16px;
            }
            
            .lang-btn {
            	padding: 3px 5px;
           	    font-size: 12px;
            }
            
	        .logo-text {
	            font-size: 16px;
	        }
	        
	        .hero-person {
	        	right: 0px;
	        }
        }
        
        /* 데스크톱에서는 기존 스타일 유지 */
		@media (min-width: 769px) {
		    .mobile-menu-btn {
		        display: none;
		    }
		    
		    .top-menu {
		        display: flex !important;
		        align-items: center;
		        gap: 15px;
		        margin-right: 10px;
		    }
		}

	/* User Menu Styles */
	.user-menu {
	    position: relative;
	    display: flex;
	    align-items: center;
	}
	
	.user-profile {
	    display: flex;
	    align-items: center;
	    border-radius: 15px;
	    cursor: pointer;
	    transition: all 0.3s ease;
	    background: rgba(255, 107, 107, 0.1);
	    border: 1px solid transparent;
	}
	
	.user-profile:hover {
	    background: rgba(255, 107, 107, 0.15);
	    border-color: rgba(255, 107, 107, 0.3);
	}
	
	.user-avatar {
	    width: 32px;
	    height: 32px;
	    border-radius: 50%;
	    background: #ff6b6b;
	    display: flex;
	    align-items: center;
	    justify-content: center;
	    color: white;
	    font-weight: bold;
	    font-size: 14px;
	    flex-shrink: 0;
	}
	
	.user-avatar.large {
	    width: 40px;
	    height: 40px;
	    font-size: 16px;
	}
	
	.user-name {
	    font-size: 14px;
	    font-weight: 500;
	    color: #333;
	    white-space: nowrap;
	}
	
	.dropdown-arrow {
	    font-size: 10px;
	    color: #666;
	    transition: transform 0.3s ease;
	    margin-left: 4px;
	}
	
	.user-profile.active .dropdown-arrow {
	    transform: rotate(180deg);
	}
	
	/* 드롭다운 메뉴 */
	.user-dropdown {
	    position: absolute;
	    top: 100%;
	    right: 0;
	    margin-top: 8px;
	    width: 280px;
	    background: white;
	    border-radius: 12px;
	    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
	    border: 1px solid #e0e0e0;
	    opacity: 0;
	    visibility: hidden;
	    transform: translateY(-10px);
	    transition: all 0.3s ease;
	    z-index: 1000;
	}
	
	.user-dropdown.active {
	    opacity: 1;
	    visibility: visible;
	    transform: translateY(0);
	}
	
	.dropdown-header {
	    padding: 20px;
	    background: linear-gradient(135deg, #ff6b6b 0%, #ff5252 100%);
	    border-radius: 12px 12px 0 0;
	    color: white;
	}
	
	.user-info {
	    display: flex;
	    align-items: center;
	    gap: 12px;
	}
	
	.user-details {
	    display: flex;
	    flex-direction: column;
	    gap: 4px;
	}
	
	.user-details .user-name {
	    font-size: 16px;
	    font-weight: 600;
	    color: white;
	}
	
	.user-email {
	    font-size: 13px;
	    color: rgba(255, 255, 255, 0.8);
	}
	
	.dropdown-divider {
	    height: 1px;
	    background: #e0e0e0;
	    margin: 8px 0;
	}
	
	.dropdown-menu {
	    padding: 8px 0;
	}
	
	.dropdown-item {
	    display: flex;
	    align-items: center;
	    gap: 12px;
	    padding: 12px 20px;
	    color: #333;
	    text-decoration: none;
	    font-size: 14px;
	    font-weight: 500;
	    transition: all 0.3s ease;
	    cursor: pointer;
	}
	
	.dropdown-item:hover {
	    background: #f8f9fa;
	    color: #ff6b6b;
	}
	
	.dropdown-item.logout {
	    color: #dc3545;
	}
	
	.dropdown-item.logout:hover {
	    background: #fff5f5;
	    color: #dc3545;
	}
	
	.item-icon {
	    font-size: 16px;
	    width: 20px;
	    text-align: center;
	    flex-shrink: 0;
	}
	
	/* 알림 배지 (선택사항) */
	.notification-badge {
	    position: absolute;
	    top: -2px;
	    right: -2px;
	    width: 18px;
	    height: 18px;
	    background: #dc3545;
	    color: white;
	    border-radius: 50%;
	    font-size: 10px;
	    font-weight: bold;
	    display: flex;
	    align-items: center;
	    justify-content: center;
	    border: 2px solid white;
	}
	
	/* 모바일 반응형 */
	@media (max-width: 768px) {
	    /* 햄버거 메뉴가 나타나는 사이즈에서 유저 메뉴 전체 숨김 */
	    .user-menu {
	        display: none !important;
	    }
	    
	    .user-profile {
	        padding: 6px 10px;
	    }
	    
	    .user-name {
	        display: none; /* 모바일에서는 이름 숨김 */
	    }
	    
	    .user-dropdown {
	        width: 260px;
	        right: -10px;
	    }
	    
	    .dropdown-header {
	        padding: 16px;
	    }
	    
	    .user-details .user-name {
	        font-size: 15px;
	    }
	    
	    .dropdown-item {
	        padding: 14px 20px;
	        font-size: 15px;
	    }
	    
        .main-nav {
        	top: 44px;
        }
	}
	
	@media (max-width: 480px) {
	    .user-dropdown {
	        width: calc(100vw - 30px);
	        right: -15px;
	    }
	}
	
	/* 드롭다운 외부 클릭시 닫기를 위한 오버레이 */
	.dropdown-overlay {
	    position: fixed;
	    top: 0;
	    left: 0;
	    width: 100%;
	    height: 100%;
	    z-index: 999;
	    opacity: 0;
	    visibility: hidden;
	}
	
	.dropdown-overlay.active {
	    opacity: 1;
	    visibility: visible;
	}









/* PC에서는 모바일 전용 섹션 숨김 */
.mobile-bottom-section {
	display: none;
}

.mobile-bottom-buttons {
	display: none;
}
/* 모바일에서만 표시 */
@media (max-width: 768px) {
    /* 모바일 하단 버튼 섹션 표시 */
    .top-menu.mobile-active .mobile-bottom-section {
        display: block !important;
        border-top: 1px solid #e0e0e0;
        background: #f8f9fa;
        margin-top: auto; /* 하단으로 밀어냄 */
        padding: 0 !important; /* 모든 패딩 제거 */
        margin: 0 !important; /* 모든 마진 제거 */
        position: fixed !important; /* 고정 위치 */
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important; /* 전체 너비 */
        box-sizing: border-box !important;
        z-index: 9999 !important;
    }

    /* 하단 버튼 스타일 */
    .mobile-bottom-buttons {
        display: flex;
        gap: 0; /* 버튼 간 간격 제거 */
        padding: 16px 20px; /* 내부 패딩 */
        margin: 0;
        width: 100%;
        box-sizing: border-box;
        background: white; /* 배경을 흰색으로 */
    }
    
    /* 로그인 상태에 따른 표시/숨김 처리 */
    .mobile-bottom-buttons.logged-out-only {
        display: flex;
    }
    
    .mobile-bottom-buttons.logged-in-only {
        display: none;
    }
    
    /* 로그인 시 표시될 요소들 */
    body.logged-in .mobile-bottom-buttons.logged-out-only {
        display: none !important;
    }
    
    body.logged-in .mobile-bottom-buttons.logged-in-only {
        display: flex !important;
    }

    .mobile-bottom-btn {
        flex: 1 !important;
        padding: 16px 20px !important; /* 패딩 증가 */
        border: none !important; /* 테두리 제거 */
        border-radius: 0 !important;
        background: white !important;
        color: #666 !important; /* 더 연한 회색 */
        text-decoration: none !important;
        text-align: center !important;
        font-size: 16px !important; /* 폰트 크기 증가 */
        font-weight: 400 !important; /* 폰트 두께 조정 */
        transition: all 0.3s ease !important;
        display: block !important;
        margin: 0 !important;
        position: relative !important;
    }
    
    /* 버튼 사이 구분선 */
    .mobile-bottom-btn:first-child::after {
        content: '' !important;
        position: absolute !important;
        right: 0 !important;
        top: 20% !important;
        bottom: 20% !important;
        width: 1px !important;
        background: #ddd !important;
    }
    
    .mobile-bottom-btn:last-child {
        /* 마지막 버튼은 구분선 없음 */
    }

    .mobile-bottom-btn:hover {
        background: #f8f9fa !important; /* 더 부드러운 호버 효과 */
        color: #333 !important;
    }

    .mobile-bottom-btn.primary {
        background: white !important; /* 동일한 배경 */
        color: #666 !important; /* 동일한 텍스트 색상 */
        border-color: transparent !important;
    }

    .mobile-bottom-btn.primary:hover {
        background: #f8f9fa !important;
        color: #333 !important;
    }
    
    /* 로그인 후 로그아웃 버튼만 왼쪽 정렬 */
    .mobile-bottom-buttons.logged-in-only .mobile-bottom-btn {
        text-align: left !important;
    }
}

@media (max-width: 480px) {
    .top-menu.mobile-active {
        top: 44px;
        padding-bottom: 80px !important;
    }
    
    .mobile-bottom-section {
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
    }
    
    .mobile-bottom-buttons {
        padding: 16px 20px;
    }
    
    .mobile-bottom-btn {
        padding: 14px 16px !important;
        font-size: 15px !important;
    }
}


body {padding-top: 60px;}
body.main {padding-top: 120px;}
body .main-nav {display: none;}
body.main .main-nav {display: block;}

/* 로그인 후 햄버거 메뉴 활성 상태에서 top-header 스타일 수정 */
body.logged-in.mobile-menu-open .top-header,
body.mobile-menu-open .top-header {
    border-bottom: none !important;
    box-shadow: none !important;
}

/* 로그인 후 햄버거 메뉴에서 로고 숨김 */
body.logged-in.mobile-menu-open .logo .logo-icon,
body.logged-in.mobile-menu-open .logo .logo-text,
body.mobile-menu-open .logo .logo-icon,
body.mobile-menu-open .logo .logo-text {
    display: none !important;
}

@media (max-width: 768px) {
	body {padding-top: 10px;}
	body.main {padding-top: 60px;}
    .top-header {
        padding: 0;
    }
	body.main #app.loaded {
		margin-top: 45px;
	}
	
	/* 모바일에서 로그인 후 햄버거 메뉴 활성화 시 top-header 스타일 수정 */
	body.logged-in.mobile-menu-open .top-header,
	body.mobile-menu-open .top-header {
	    border-bottom: none !important;
	    box-shadow: none !important;
	}
	
	/* 모바일에서 로그인 후 햄버거 메뉴에서 로고 숨김 */
	body.logged-in.mobile-menu-open .logo-icon,
	body.logged-in.mobile-menu-open .logo-text,
	body.mobile-menu-open .logo-icon,
	body.mobile-menu-open .logo-text {
	    display: none !important;
	}
}
@media (max-width: 480px) {
	body.main #app.loaded {
		margin-top: 38px;
	}
}

/* 트레이닝 접근 안내 메시지 스타일 */
.training-access-notice {
    margin: 60px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
}

/* 정보 섹션 스타일 (잠금 표시용) */
.info-section {
    margin-bottom: 2rem;
}

.access-restriction-info {
    background: linear-gradient(135deg, rgba(255, 165, 0, 0.05) 0%, rgba(255, 165, 0, 0.02) 100%);
    border: 1px solid rgba(255, 165, 0, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.restriction-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: #ffa500;
}

.restriction-header .lock-icon {
    font-size: 1.5rem;
    margin-right: 0.75rem;
}

.restriction-header h3 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
}

.restriction-content {
    color: #333;
}

.restriction-content p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.progress-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.info-item .label {
    color: #666;
    font-size: 0.9rem;
}

.info-item .value {
    font-weight: 600;
    color: #333;
}

.action-buttons {
    margin-top: 1.5rem;
    display: flex;
    gap: 1rem;
}

.btn-continue {
    background: linear-gradient(135deg, #ffa500 0%, #ff8c00 100%);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-continue:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 165, 0, 0.3);
}

.notice-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 24px;
    padding: 48px 40px;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.08),
        0 8px 16px rgba(0, 0, 0, 0.04);
    text-align: center;
    max-width: 560px;
    width: 100%;
    border: 1px solid rgba(255, 165, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.notice-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ffa500 0%, #ff8c00 100%);
}

.notice-icon {
    margin-bottom: 24px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.notice-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.notice-content p {
    font-size: 16px;
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 24px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.notice-countdown {
    background: rgba(255, 165, 0, 0.1);
    border-radius: 12px;
    padding: 12px 20px;
    margin: 24px 0;
    border: 1px solid rgba(255, 165, 0, 0.2);
}

.notice-countdown span {
    font-size: 14px;
    color: #ff8c00;
    font-weight: 500;
}

.week-progress-info {
    background: rgba(255, 165, 0, 0.05);
    border-radius: 12px;
    padding: 16px;
    margin: 20px 0;
    border: 1px solid rgba(255, 165, 0, 0.15);
}

.progress-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.progress-item:last-child {
    margin-bottom: 0;
}

.progress-item .label {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.progress-item .value {
    font-size: 16px;
    color: #333;
    font-weight: 600;
    background: rgba(255, 165, 0, 0.1);
    padding: 4px 12px;
    border-radius: 8px;
    border: 1px solid rgba(255, 165, 0, 0.2);
}

.notice-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 32px;
}

.notice-btn {
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 160px;
    position: relative;
    overflow: hidden;
}

.notice-btn.primary {
    background: linear-gradient(135deg, #ffa500 0%, #ff8c00 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(255, 165, 0, 0.3);
}

.notice-btn.primary:hover {
    background: linear-gradient(135deg, #ff8c00 0%, #e67e00 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 165, 0, 0.4);
}

.notice-btn.secondary {
    background: white;
    color: #6c757d;
    border: 2px solid #e9ecef;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.notice-btn.secondary:hover {
    background: #f8f9fa;
    border-color: #dee2e6;
    color: #495057;
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .notice-card {
        padding: 40px 30px;
        margin: 0 20px;
        border-radius: 20px;
    }
    
    .notice-content h2 {
        font-size: 24px;
    }
    
    .notice-content p {
        font-size: 15px;
    }
    
    .notice-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .notice-btn {
        width: 100%;
        max-width: 280px;
        min-width: unset;
    }
}

@media (max-width: 480px) {
    .training-access-notice {
        margin: 40px 0;
        min-height: 300px;
    }
    
    .notice-card {
        padding: 32px 24px;
        margin: 0 16px;
    }
    
    .notice-content h2 {
        font-size: 22px;
    }
    
    .notice-content p {
        font-size: 14px;
    }
    
    .notice-countdown {
        padding: 10px 16px;
        margin: 20px 0;
    }
    
    .notice-countdown span {
        font-size: 13px;
    }
}



