body {
    margin: 0;
    padding: 0;
    font-family: 'Noto Sans KR', sans-serif;
    background: linear-gradient(135deg, #1a0033 0%, #0d001a 100%); /* 깊은 우주 배경 */
    color: #e0e0ff; /* 밝은 글자색 */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
    overflow: hidden; /* 배경 애니메이션이 튀어나가지 않도록 */
    position: relative;
}

/* 별이 움직이는 배경 효과 */
body::before, body::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: 200px 200px;
    animation: moveStars 60s linear infinite;
    opacity: 0.8;
}

body::before {
    background-image: radial-gradient(white 1px, transparent 1px);
    animation-delay: 0s;
}

body::after {
    background-image: radial-gradient(#a0a0ff 0.5px, transparent 0.5px);
    animation-delay: -30s; /* 다른 속도로 움직이게 */
    transform: scale(0.8);
}

@keyframes moveStars {
    from {
        background-position: 0 0;
    }
    to {
        background-position: 10000px 5000px;
    }
}

.container {
    max-width: 900px;
    padding: 40px;
    background-color: rgba(0, 0, 0, 0.4); /* 반투명 배경으로 우주 느낌 살림 */
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.2); /* 은은한 네온 효과 */
    z-index: 10; /* 별 배경 위로 */
    animation: fadeIn 1.5s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.alien-image {
    max-width: 100%; /* 이미지가 부모 컨테이너를 넘어가지 않도록 */
    height: auto;
    margin-bottom: 30px;
    filter: drop-shadow(0 0 15px rgba(100, 255, 200, 0.6)); /* 이미지에 은은한 빛 효과 */
    animation: floatImage 3s ease-in-out infinite;
}

@keyframes floatImage {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 3em;
    color: #00ffcc; /* 형광 초록색 포인트 */
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(0, 255, 204, 0.8);
}

p {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 25px;
}

.buttons {
    margin-top: 30px;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    margin: 10px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.home-btn {
    background-color: #ff66cc; /* 마젠타 계열 */
    color: #ffffff;
}

.home-btn:hover {
    background-color: #e044b1;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 102, 204, 0.4);
}

.back-btn {
    background-color: #66ccff; /* 하늘색 계열 */
    color: #ffffff;
}

.back-btn:hover {
    background-color: #44b1e0;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(102, 204, 255, 0.4);
}

.footer-text {
    margin-top: 40px;
    font-size: 0.9em;
    color: #aaaaff;
    opacity: 0.7;
}

/* 반응형 디자인 */
@media (max-width: 768px) {
    h1 {
        font-size: 2.2em;
    }
    .container {
        padding: 25px;
        margin: 20px;
    }
    .btn {
        display: block; /* 모바일에서 버튼 세로 정렬 */
        margin: 10px auto;
    }
}