* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body,
html {
    width: 100%;
    height: 100%;
    overflow: hidden;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
        "Helvetica Neue", Arial, sans-serif;
}

.language-selector {
    width: 100vw;
    height: 100vh;
    background-color: #000000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

.logo-container {
    margin-bottom: 30px;
    animation: fadeIn 1s ease-in-out;
}

.language-options {
    display: flex;
    align-items: center;
    gap: 40px;
    animation: slideUp 1s ease-in-out;
    color: #fccb03;
    font-size: 28px;
    font-weight: 700;
}

.language-link {
    color: #fccb03;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding: 10px 0;
}

.language-link:hover {
    transform: scale(1.1);
    text-shadow: 0 0 20px rgba(247, 147, 26, 0.5);
}

.language-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: #fccb03;
    transition: width 0.3s ease;
}

.language-link:hover::after {
    width: 100%;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 태블릿 */
@media (max-width: 1024px) {
    .announcement-ko,
    .announcement-en {
        font-size: 16px;
    }
}

/* 모바일 */
@media (max-width: 768px) {
    .logo-image {
        width: 180px;
    }

    .language-link {
        font-size: 24px;
    }

    .divider {
        font-size: 24px;
    }

    .language-options {
        gap: 30px;
    }
}

/* 작은 모바일 */
@media (max-width: 480px) {
    .logo-container {
        margin-bottom: 20px;
    }

    .logo-image {
        width: 150px;
    }

    .announcement-ko,
    .announcement-en {
        font-size: 12px;
        line-height: 1.4;
        margin: 3px 0;
    }

    .language-link {
        font-size: 20px;
    }

    .divider {
        font-size: 20px;
    }

    .language-options {
        gap: 20px;
    }
}
