header {
    background-color: #121116;
    height: 60px;
    padding: 15px 0;
    position: relative;
    margin-bottom: 30px;
    
}

header h1 {
    font-family: "Audiowide", sans-serif;
    display: inline-block;
    float: left;
    font-weight: 400;
    font-size: 22px;
    color: #121116;
    text-transform: uppercase;
    margin: 0;
    margin-left: 15px;
    z-index: 999;
}

.header-svg{
    width: 30px;
    display: inline-block;
    float: right;
    margin-right: 15px;
}
.header-svg svg {
    width: 100%;
    cursor: pointer;
}

.tip-popup {
    position: absolute;
    top: 60px;
    right: 105px;
    background: #1d1c21;
    color: #c7c89f;
    font-family: "Montserrat", sans-serif;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    max-width: 250px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.4);
    display: none;
    z-index: 999;
}

.tip-arrow {
    position: absolute;
    top: -10px;
    right: 8px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 10px solid #1d1c21;
}

.lang-dropdown {
    position: absolute;
    top: 60px;
    right: 60px;
    background: #1d1c21;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.4);
    display: none;
    padding: 12px 0 12px 0;
    z-index: 1000;
    min-width: 150px;
    overflow: visible;
}

.lang-arrow {
    position: absolute;
    top: -10px;
    right: 7px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 10px solid #1d1c21;
}

.lang-block{
    padding: 8px 16px;
    color: #c7c89f;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.lang-dropdown div:hover {
    background: #2a292f;
}
