* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Courier New', 'Monaco', 'Consolas', monospace;
    background: #000000;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    color: #00ff00;
    overflow-x: hidden;
    overflow-y: hidden;
    position: relative;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 255, 0, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 255, 0, 0.05) 0%, transparent 50%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 0.8;
    }
}

.container {
    text-align: center;
    padding: 15px 20px;
    max-width: 1200px;
    width: 100%;
    position: relative;
    z-index: 1;
}

.ascii-art {
    margin-bottom: 15px;
    animation: fadeInDown 1s ease-out;
}

.logo {
    font-size: 10px;
    line-height: 1.1;
    color: #00ff00;
    text-shadow: 
        0 0 10px rgba(0, 255, 0, 0.5),
        0 0 20px rgba(0, 255, 0, 0.3),
        0 0 30px rgba(0, 255, 0, 0.2);
    margin: 0 auto;
    white-space: pre;
    overflow-x: auto;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 
            0 0 10px rgba(0, 255, 0, 0.5),
            0 0 20px rgba(0, 255, 0, 0.3),
            0 0 30px rgba(0, 255, 0, 0.2);
    }
    to {
        text-shadow: 
            0 0 20px rgba(0, 255, 0, 0.8),
            0 0 30px rgba(0, 255, 0, 0.5),
            0 0 40px rgba(0, 255, 0, 0.3),
            0 0 50px rgba(0, 255, 0, 0.2);
    }
}

.coming-soon {
    margin-bottom: 15px;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.coming-soon-text {
    font-size: 8px;
    line-height: 1.1;
    color: #00ff00;
    text-shadow: 
        0 0 10px rgba(0, 255, 0, 0.6),
        0 0 20px rgba(0, 255, 0, 0.4);
    margin: 0 auto;
    white-space: pre;
    overflow-x: auto;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% {
        opacity: 1;
        text-shadow: 
            0 0 10px rgba(0, 255, 0, 0.6),
            0 0 20px rgba(0, 255, 0, 0.4);
    }
    50% {
        opacity: 0.8;
        text-shadow: 
            0 0 15px rgba(0, 255, 0, 0.8),
            0 0 25px rgba(0, 255, 0, 0.6),
            0 0 35px rgba(0, 255, 0, 0.4);
    }
}

.info {
    margin-bottom: 10px;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.subtitle {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #00ff00;
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
    letter-spacing: 2px;
}

.date-info {
    margin-bottom: 10px;
}

.launch-date {
    font-size: 26px;
    font-weight: bold;
    color: #00ff00;
    text-shadow: 
        0 0 10px rgba(0, 255, 0, 0.5),
        0 0 20px rgba(0, 255, 0, 0.3);
    margin-bottom: 10px;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.description {
    font-size: 16px;
    color: #00ff00;
    line-height: 1.4;
    text-shadow: 0 0 5px rgba(0, 255, 0, 0.5);
    margin-bottom: 5px;
}

.video-wrap {
    margin-top: 10px;
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
}

.intro-video {
    max-width: 100%;
    max-height: 300px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

/* FHD 해상도 이상에서 동영상 크기 조절 */
@media (min-width: 1920px) {
    .intro-video {
        max-width: 50%;
        max-height: 400px;
    }
}

/* 1910x979 해상도에 맞춘 조정 */
@media (min-width: 1900px) and (max-width: 1920px) {
    .intro-video {
        max-width: 60%;
        max-height: 350px;
    }
}

.footer {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid rgba(0, 255, 0, 0.3);
    font-size: 12px;
    color: rgba(0, 255, 0, 0.7);
    animation: fadeInUp 1s ease-out 0.9s both;
}

.contact-us {
    margin-bottom: 8px;
}

.contact-title {
    font-size: 13px;
    color: #00ff00;
    margin-bottom: 5px;
    text-shadow: 0 0 5px rgba(0, 255, 0, 0.5);
}

.contact-email {
    margin-bottom: 5px;
}

.contact-email a {
    color: #00ff00;
    text-decoration: none;
    font-size: 12px;
    text-shadow: 0 0 5px rgba(0, 255, 0, 0.5);
    transition: text-shadow 0.3s ease;
}

.contact-email a:hover {
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.8), 0 0 15px rgba(0, 255, 0, 0.5);
}

.copyright {
    margin-top: 5px;
    font-size: 11px;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 반응형 디자인 */
@media (max-width: 768px) {
    .logo {
        font-size: 8px;
    }
    
    .coming-soon-text {
        font-size: 7px;
    }
    
    .subtitle {
        font-size: 22px;
    }
    
    .launch-date {
        font-size: 24px;
    }
    
    .description {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 6px;
    }
    
    .coming-soon-text {
        font-size: 5px;
    }
    
    .subtitle {
        font-size: 18px;
    }
    
    .launch-date {
        font-size: 20px;
    }
    
    .description {
        font-size: 14px;
    }
    
    .container {
        padding: 20px 15px;
    }
}

/* 스크롤바 스타일링 */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: rgba(0, 255, 0, 0.1);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb {
    background: rgba(0, 255, 0, 0.3);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 255, 0, 0.5);
}
