@charset "UTF-8";

.landing-content {
    text-align: center;
    padding: 40px 0 20px;
}

.landing-content h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

.landing-subtitle {
    color: #ccc;
    font-size: 1.1em;
    margin-bottom: 35px;
}

.lang-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.lang-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 25px 35px;
    background-color: var(--color06);
    border: 2px solid transparent;
    border-radius: 12px;
    text-decoration: none;
    color: white;
    font-weight: 700;
    font-size: 1.1em;
    transition: border-color 0.2s, transform 0.18s, background-color 0.2s;
}

.lang-card:hover {
    border-color: var(--color01);
    background-color: #1a1f1f;
    transform: translateY(-3px);
    color: var(--color02);
}

.lang-card img {
    width: 48px;
    height: 32px;
    border-radius: 4px;
}

@media (max-width: 480px) {
    .lang-cards {
        flex-direction: column;
        align-items: center;
    }

    .lang-card {
        width: 200px;
    }
}