@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&family=VT323&display=swap');

nav {
    background-color: #000;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-transform: uppercase;
    border-bottom: 4px solid #f0f;
    box-shadow: 0 0 20px #f0f;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    font-family: "VT323", monospace;
}

.nav-links {
    display: flex;
    justify-content: center;
    flex: 1;
    gap: 20px;
    align-items: center;
}

nav a {
    color: #0f0;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.3s ease;
    text-shadow: 0 0 10px #0f0;
    font-family: "VT323", monospace;
}

nav a:hover {
    color: #f0f;
    text-shadow: 0 0 10px #f0f;
}

/* Mobile Menu Button */
.menu-btn {
    display: none;
    background: none;
    border: 2px solid #0f0;
    color: #0f0;
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
    text-shadow: 0 0 5px #0f0;
    transition: all 0.3s ease;
    font-family: "VT323", monospace;
}

.menu-btn:hover {
    background: rgba(0, 255, 0, 0.1);
    box-shadow: 0 0 10px #0f0;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .menu-btn {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #000;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 6px rgba(0, 255, 0, 0.2);
        border: 2px solid #0f0;
        z-index: 1000;
    }

    .nav-links.active {
        display: flex;
    }

    nav a {
        margin: 10px 0;
        width: 100%;
        text-align: center;
    }
}

nav img {
    height: 40px;
    margin-right: 10px;
    filter: drop-shadow(0 0 5px #0f0);
}

.container {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.language-dropdown {
    font-family: "VT323", monospace;
    position: relative;
    display: inline-block;
}

.language-btn {
    background-color: transparent;
    color: #0f0;
    padding: 8px 16px;
    border: 2px solid #0f0;
    cursor: pointer;
    font-family: "VT323", monospace;
    font-size: 20px;
    text-shadow: 0 0 5px #0f0;
    transition: all 0.3s ease;
}

.language-btn:hover {
    background: rgba(0, 255, 0, 0.1);
    box-shadow: 0 0 10px #0f0;
}

.language-dropdown-content {
    display: none;
    position: absolute;
    background-color: #000;
    border: 2px solid #0f0;
    z-index: 1;
    top: 100%;
    right: 0;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 0 10px #0f0;
}

.language-dropdown-content a {
    font-size: 18px;
}

.language-dropdown:hover .language-dropdown-content {
    display: block;
}

.language-option {
    color: #0f0;
    padding: 8px 16px;
    display: block;
    text-decoration: none;
    transition: all 0.3s ease;
    text-shadow: 0 0 5px #0f0;
}

.language-option:hover {
    background: rgba(0, 255, 0, 0.1);
    text-shadow: 0 0 10px #0f0;
}

@media screen and (max-width: 480px) {
    nav {
        padding: 10px;
    }

    nav img {
        height: 30px;
    }

    .language-btn {
        padding: 6px 12px;
    }
}
