.elementor-6468 .elementor-element.elementor-element-d5a817b{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-db9656d */:root {
            --primary-dark: #1a1a1a;
            --primary-light: #ffffff;
            --accent-blue: #0066FF;
            --accent-hover: #0052CC;
            --gray-100: #f8f8f8;
            --gray-200: #e8e8e8;
            --gray-300: #d0d0d0;
            --gray-500: #666666;
            --gray-700: #333333;
        }
        
        /* 전역 스타일 */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            color: var(--primary-dark);
            line-height: 1.6;
            min-height: 100vh;
            overflow-x: hidden;
            position: relative;
        }
        
        /* 전체 배경 - 푸른색 그라데이션 */
        .main-background {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #0066FF 0%, #0052CC 25%, #004AD0 50%, #0066FF 100%);
            background-size: 400% 400%;
            animation: gradientShift 15s ease infinite;
            z-index: -2;
        }
        
        @keyframes gradientShift {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }
        
        /* 배경 패턴 오버레이 */
        .bg-pattern {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 40%),
                radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.08) 0%, transparent 40%),
                radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
            animation: float 20s ease-in-out infinite;
            z-index: -1;
        }
        
        @keyframes float {
            0%, 100% { transform: translate(0, 0) scale(1); }
            33% { transform: translate(30px, -30px) scale(1.05); }
            66% { transform: translate(-20px, 20px) scale(0.95); }
        }
        
        /* 메인 래퍼 */
        .main-wrapper {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 40px 20px;
        }
        
        /* 메인 컨테이너 - 1400px */
        .maintenance-container {
            position: relative;
            width: 100%;
            max-width: 1400px;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-radius: 32px;
            box-shadow: 0 25px 100px rgba(0, 0, 0, 0.2);
            padding: 80px;
            animation: slideUp 1s ease-out;
        }
        
        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* 내부 콘텐츠 래퍼 */
        .content-wrapper {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
        }
        
        /* 로고 영역 */
        .logo-area {
            margin-bottom: 4rem;
            animation: fadeInDown 0.8s ease-out;
        }
        
        .logo {
            font-size: 3rem;
            font-weight: 800;
            color: var(--primary-dark);
            letter-spacing: -0.02em;
        }
        
        .logo span {
            color: var(--accent-blue);
        }
        
        /* 진행 상태 표시 */
        .progress-indicator {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1.5rem;
            margin-bottom: 4rem;
            animation: fadeIn 1s ease-out 0.2s both;
        }
        
        .progress-dot {
            width: 16px;
            height: 16px;
            border-radius: 50%;
            background: var(--gray-200);
            position: relative;
            transition: all 0.3s ease;
        }
        
        .progress-dot.active {
            background: var(--accent-blue);
            transform: scale(1.2);
            box-shadow: 0 0 20px rgba(0, 102, 255, 0.5);
            animation: pulse 2s ease-in-out infinite;
        }
        
        @keyframes pulse {
            0%, 100% { 
                transform: scale(1.2); 
                box-shadow: 0 0 20px rgba(0, 102, 255, 0.5);
            }
            50% { 
                transform: scale(1.4); 
                box-shadow: 0 0 30px rgba(0, 102, 255, 0.8);
            }
        }
        
        /* 메인 메시지 */
        .main-message {
            animation: fadeInUp 1s ease-out 0.4s both;
            margin-bottom: 4rem;
        }
        
        .main-title {
            font-size: clamp(3rem, 6vw, 4.5rem);
            font-weight: 800;
            margin-bottom: 2rem;
            line-height: 1.2;
            letter-spacing: -0.03em;
        }
        
        .highlight {
            color: var(--accent-blue);
            position: relative;
            display: inline-block;
        }
        
        .sub-message {
            font-size: 1.5rem;
            color: var(--gray-500);
            line-height: 1.6;
        }
        
        /* 기능 목록 */
        .features-preview {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-bottom: 4rem;
            animation: fadeInUp 1s ease-out 0.6s both;
        }
        
        .feature-item {
            background: var(--gray-100);
            padding: 3rem 2rem;
            border-radius: 20px;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }
        
        .feature-item:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 40px rgba(0, 102, 255, 0.15);
            border-color: var(--accent-blue);
            background: white;
        }
        
        .feature-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
            display: block;
        }
        
        .feature-text {
            font-size: 1.125rem;
            font-weight: 700;
            color: var(--gray-700);
            line-height: 1.4;
        }
        
        /* 연락처 섹션 */
        .contact-section {
            background: linear-gradient(135deg, rgba(0, 102, 255, 0.05) 0%, rgba(0, 102, 255, 0.02) 100%);
            padding: 3rem;
            border-radius: 24px;
            margin-bottom: 3rem;
            animation: fadeInUp 1s ease-out 0.8s both;
            border: 1px solid rgba(0, 102, 255, 0.1);
        }
        
        .contact-title {
            font-size: 1.75rem;
            font-weight: 700;
            margin-bottom: 2rem;
            color: var(--primary-dark);
        }
        
        .contact-info {
            display: flex;
            justify-content: center;
            gap: 3rem;
            flex-wrap: wrap;
        }
        
        .contact-item {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            font-size: 1.125rem;
        }
        
        .contact-icon {
            width: 48px;
            height: 48px;
            background: white;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        }
        
        .contact-item a {
            color: var(--accent-blue);
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            font-size: 1.25rem;
        }
        
        .contact-item a:hover {
            color: var(--accent-hover);
            transform: translateX(3px);
        }
        
        /* 카운트다운 */
        .countdown {
            animation: fadeIn 1s ease-out 1s both;
        }
        
        .countdown-label {
            font-size: 1.125rem;
            color: var(--gray-500);
            margin-bottom: 1.5rem;
            font-weight: 600;
        }
        
        .countdown-timer {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
        }
        
        .time-unit {
            background: white;
            padding: 1.5rem 2rem;
            border-radius: 16px;
            border: 2px solid var(--gray-200);
            min-width: 120px;
            transition: all 0.3s ease;
        }
        
        .time-unit:hover {
            border-color: var(--accent-blue);
            transform: translateY(-4px);
            box-shadow: 0 10px 30px rgba(0, 102, 255, 0.15);
        }
        
        .time-number {
            font-size: 3rem;
            font-weight: 800;
            color: var(--accent-blue);
            line-height: 1;
            font-variant-numeric: tabular-nums;
        }
        
        .time-label {
            font-size: 0.875rem;
            color: var(--gray-500);
            text-transform: uppercase;
            margin-top: 0.5rem;
            letter-spacing: 0.05em;
        }
        
        /* 로딩 애니메이션 */
        .loading-animation {
            display: inline-flex;
            gap: 0.35rem;
            margin-left: 0.75rem;
        }
        
        .loading-dot {
            width: 10px;
            height: 10px;
            background: var(--accent-blue);
            border-radius: 50%;
            animation: loading 1.4s ease-in-out infinite;
        }
        
        .loading-dot:nth-child(1) { animation-delay: 0s; }
        .loading-dot:nth-child(2) { animation-delay: 0.2s; }
        .loading-dot:nth-child(3) { animation-delay: 0.4s; }
        
        @keyframes loading {
            0%, 80%, 100% {
                transform: scale(0.8);
                opacity: 0.5;
            }
            40% {
                transform: scale(1.2);
                opacity: 1;
            }
        }
        
        /* 애니메이션 */
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        /* 반응형 디자인 */
        @media (max-width: 1024px) {
            .maintenance-container {
                padding: 60px 40px;
            }
            
            .features-preview {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
        }
        
        @media (max-width: 768px) {
            .main-wrapper {
                padding: 20px;
            }
            
            .maintenance-container {
                padding: 40px 24px;
                border-radius: 20px;
            }
            
            .logo {
                font-size: 2.5rem;
            }
            
            .main-title {
                font-size: 2.5rem;
            }
            
            .sub-message {
                font-size: 1.25rem;
            }
            
            .contact-info {
                flex-direction: column;
                gap: 1.5rem;
            }
            
            .countdown-timer {
                gap: 0.75rem;
                flex-wrap: wrap;
            }
            
            .time-unit {
                min-width: 70px;
                padding: 1rem;
            }
            
            .time-number {
                font-size: 2rem;
            }
        }/* End custom CSS */