@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

body {
    background: radial-gradient(circle at top, #0f2027, #020617);
    font-family: 'Inter', sans-serif;
    color: #fff;
}

.logo {
    font-size: 36px;
    font-weight: 700;
    letter-spacing: 1px;
}

.text-accent {
    color: #38bdf8;
}

.subtitle {
    color: #94a3b8;
}

.lang-card {
    text-decoration: none;
    color: inherit;
}

.lang-card .card {
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(10px);
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.4s ease;
}

.lang-card .card-body {
    height: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.lang-card h4 {
    margin-top: 15px;
    font-weight: 600;
}

.lang-card small {
    color: #94a3b8;
}

.flag {
    font-size: 42px;
    border-radius: 6px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.lang-card:hover .card {
    transform: translateY(-12px) scale(1.03);
    border-color: #38bdf8;
    box-shadow: 0 25px 60px rgba(56,189,248,0.25);
}

.lang-card h4 {
    color: #ffffff;
}
.footer-text {
    color: #94a3b8;
}


/*.brand-logo {
    max-width: 80px;
    width: 100%;
    height: auto;
}

/* Mobile */
@media (max-width: 576px) {
    .brand-logo {
        max-width: 90px;
    }
}

/* Large screens */
@media (min-width: 992px) {
    .brand-logo {
        max-width: 90px;
    }
}
*/