        :root {
            --primary: #556B2F;
            --secondary: #2F4F2F;
            --accent: #F0E68C;
            --text: #E0E0E0;
            --bg: #1A1A1A;
        }
        body {
            margin: 0;
            padding: 0;
            font-family: 'Courier Prime', monospace;
            background: var(--bg);
            color: var(--text);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 2rem;
        }
        h1 {
            font-family: 'Oswald', sans-serif;
            font-size: 3.5rem;
            text-transform: uppercase;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
        }
        p {
            font-size: 1.4rem;
            margin-bottom: 3rem;
            max-width: 800px;
        }
        .language-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 1.5rem;
            max-width: 1400px;
            width: 100%;
            margin-bottom:2rem;
        }
        .lang-btn {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 1.5rem 1rem;
            background: var(--primary);
            color: white;
            text-decoration: none;
            font-size: 1.1rem;
            font-weight: bold;
            border-radius: 8px;
            transition: background 0.3s, transform 0.2s;
            min-height: 100px;
        }
        .lang-btn:hover {
            background: #6B8E23;
            transform: translateY(-5px);
        }
        .lang-btn .name {
            font-family: 'Oswald', sans-serif;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        @media (min-width: 1400px) {
            .language-grid {
                grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            }
        }

.flag-img {
    width: 2.8rem;           
    height: auto;           
    margin-bottom: 0.8rem;
    border-radius: 4px;      
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);  
    background: rgba(0,0,0,0.05);  
    display: block;          
}

.lang-btn:hover .flag-img {
    transform: scale(1.08);
    transition: transform 0.25s ease;
}