/*****************************
*           HEADER
*****************************/

.header-nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0 20px 0;
    margin-left: auto;
    margin-right: auto;
    max-width: 1000px;
    width: 100%;
}

.header-ul {
    flex: 1;
    flex-direction: row;
    list-style: none;
    display: flex;
    font-family: 'Good Times', sans-serif;
}

.header-li {
    margin: 0 15px;
}

.nav-header-a {
    color: white;
    text-decoration: none;
    position: relative;
    font-size: 12px;
    letter-spacing: 1px;
}

.nav-header-a::after {
    content: '';
    position: absolute;
    bottom: -8px; 
    left: 50%;
    width: 0;
    height: 2.5px;
    background-color: #9A29FF;
    transition: width 0.3s ease-in-out, left 0.3s ease-in-out;
}

.nav-header-a:hover::after {
    width: 100%;
    left: 0;
}

.logo-title {
    color: white;
    font-family: 'Tenada', sans-serif;
    display: flex;
    align-items: center;
    margin-bottom: -5px;
    font-size: 20px;
}

.nav-container {
    background-color: #2F0F4E;
}

.nav-view {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    background-color: #1A0929;
    display: flex;
    flex-direction: row;
    padding: 15px;
    gap: 10px;
    box-sizing: border-box;
}

.nav-view-text {
    color: white;
    font-family: 'Good Times', sans-serif;
    font-size: 14px;
    letter-spacing: 1px;
}

.arrow-nav-view-inverted {
  transform: scaleX(-1);
}

/*****************************
*       LOGO AND ICONS
*****************************/

.imgs {
    max-height: 24px;
    object-fit: cover;
}

.logo-img {
    width: 45px;
    height: 45px;
    object-fit: cover;
    margin-right: 20px;
}

.logo-container {
    display: flex;
    justify-content: start;
    margin-right: 20px;
}

.icons-container {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.clickable {
    cursor: pointer;
}

.twitter {
    height: 14px;
    margin-top: 2px;
}

.youtube {
    height: 12px;
}

.instagram {
    height: 16px;
}

.discord {
    height: 13px;
}

.tiktok {
    height: 15px;
}

.social-icons, .social-icons-nav, .social-icons-mobile{
    display: flex;
    gap: 10px;
    margin-top: 3px;
    align-items: center;
    margin-right: 10px;
}

a.social-icons, a.social-icons-nav, a.social-icons-mobile {
    outline: none; 
    box-shadow: none;
}

/*****************************
*       TRANSLATION MENU
*****************************/

.translate-popup {
    position: absolute;
    top: 60px;
    background: #1A0929;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    z-index: 1000;
    min-width: 180px;
    padding: 10px 0;
}
.translate-menu {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.language-container {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 8px 16px;
    transition: background 0.2s;
}
.language-container:hover {
    background: #ffffff21;
}
.language-flag {
    width: 28px;
    height: 18px;
    margin-right: 10px;
    border-radius: 3px;
    object-fit: cover;
}
.language-text {
    font-size: 10px;
    color: white;
    text-decoration: none;
    font-family: "Good Times";
    letter-spacing: 1px;
    font-weight: normal;
}
.last-flag-margin {
    margin-bottom: 0;
}