@import url("https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.min.css");
@import url('https://fonts.googleapis.com/css2?family=Nanum+Gothic&display=swap');

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

.nanum-gothic-regular {
  font-family: "Nanum Gothic", sans-serif;
  font-weight: 400;
  font-style: normal;
}

body {
    background: linear-gradient(135deg, #0c0c0c 0%, #1a1a1a 100%);
    color: #00ff00;
    font-family: 'Courier New', monospace;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    text-align: center;
    animation: fadeIn 2s ease-in-out;
}

.ascii-art {
    font-size: clamp(8px, 1.2vw, 16px);
    line-height: 1;
    white-space: pre;
    margin-bottom: 30px;
    text-shadow: 0 0 10px #00ff00;
    animation: glow 2s ease-in-out infinite alternate;
}

.message {
    font-size: clamp(16px, 3vw, 24px);
    margin-bottom: 20px;
    letter-spacing: 2px;
    opacity: 0.9;
}

.subtitle {
    font-size: clamp(12px, 2vw, 18px);
    color: #888;
    letter-spacing: 1px;
    margin-bottom: 30px;
}

.loading-bar {
    width: 300px;
    height: 2px;
    background: #333;
    margin: 0 auto;
    border-radius: 1px;
    overflow: hidden;
    margin-bottom: 20px;
}

.loading-progress {
    height: 100%;
    background: linear-gradient(90deg, #00ff00, #00cc00);
    width: 0%;
    animation: loading 5s ease-in-out infinite;
}

.cursor {
    animation: blink 1s infinite;
}

.contact-links {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    gap: 15px;
    z-index: 1000;
}

.contact-links a {
    color: #666;
    font-size: 24px;
    text-decoration: none !important;
    transition: all 0.3s ease;
    opacity: 0.7;
    border: none;
    outline: none;
}

.contact-links a:hover {
    color: #00ff00;
    opacity: 1;
    text-shadow: 0 0 10px #00ff00;
    transform: scale(1.2);
    text-decoration: none !important;
}

.contact-links a:visited {
    color: #666;
    text-decoration: none !important;
}

.contact-links a:active {
    color: #00ff00;
    text-decoration: none !important;
}

.bold {
    font-weight: bold;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes glow {
    from {
        text-shadow: 0 0 10px #00ff00;
    }
    to {
        text-shadow: 0 0 20px #00ff00, 0 0 30px #00ff00;
    }
}

@keyframes loading {
    0% { width: 0%; }
    50% { width: 100%; }
    100% { width: 0%; }
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

@media (max-width: 768px) {
    .ascii-art {
        font-size: 8px;
    }
    
    .loading-bar {
        width: 250px;
    }
}

@media (max-width: 480px) {
    .ascii-art {
        font-size: 6px;
    }
    
    .loading-bar {
        width: 200px;
    }
}