/* Header Styles */
.header {
    display: flex;
    width: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    background-color: #1A2B23;
    padding-top: 12px;
    padding-bottom: 12px;
    padding-left: 16px;
    padding-right: 16px;
}

/* Desktop Header */
.header-desktop {
    display: none;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1312px;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 32px;
}

.logo-container {
    display: flex;
    width: 101px;
    height: 88px;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1.14;
}

.logo-desktop {
    width: 101px;
    height: 88px;
    flex-shrink: 0;
}

.header-center {
    display: flex;
    align-items: center;
    gap: 16px;
}

.responsible-gaming-icon {
    width: 50px;
    height: 50px;
    aspect-ratio: 1;
    border: 1px solid #FEED90;
    border-radius: 50%;
}

.responsible-gaming-text {
    width: 100%;
    max-width: 475px;
    opacity: 0.9;
}

.responsible-gaming-message {
    color: rgba(202, 161, 99, 0.9);
    font-size: 12px;
    font-weight: 700;
    font-family: 'Barlow', sans-serif;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 16px;
    border-radius: 200px;
}

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

.nav-link {
    display: flex;
    /* width: 132px; */
    justify-content: center;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    background-color: rgba(255, 255, 255, 0.1);
    padding-left: 26px;
    padding-right: 26px;
    padding-top: 9px;
    padding-bottom: 9px;
    border-radius: 999px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-link:hover {
    background-color: rgba(255, 183, 19, 0.1);
    border-color: #FFB713;
}

.nav-link-active {
    background-color: rgba(255, 183, 19, 0.1) !important;
    border-color: #FFB713 !important;
}

.nav-text {
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    font-family: 'Barlow', sans-serif;
}

.nav-link-active .nav-text {
    color: rgba(255, 183, 19, 0.8) !important;
}

/* Mobile Header */
.header-mobile {
    display: block;
    width: 100%;
    max-width: 1312px;
    position: relative;
}

.header-mobile-content {
    width: 100%;
}

.header-mobile-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.logo-container-mobile {
    display: flex;
    width: 80px;
    height: 70px;
    justify-content: center;
    align-items: center;
    background-color: none!;
}

.logo-mobile {
    width: 80px;
    height: 70px;
    flex-shrink: 0;
}

.hamburger-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 24px;
}

.hamburger-icon, .close-icon {
    font-size: 24px;
}

.responsible-gaming-mobile {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
}

.responsible-gaming-icon-mobile {
    width: 40px;
    height: 40px;
    aspect-ratio: 1;
    border: 1px solid #FEED90;
    border-radius: 50%;
}

.responsible-gaming-text-mobile {
    text-align: center;
    max-width: 280px;
    opacity: 0.9;
}

.responsible-gaming-message-mobile {
    color: rgba(202, 161, 99, 0.9);
    font-size: 10px;
    font-weight: 700;
    font-family: 'Barlow', sans-serif;
}

.mobile-menu {
    position: absolute;
    top: 56px;
    right: 12px;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(8px);
    border-radius: 8px;
    z-index: 50;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    padding: 16px;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding: 16px;
}

.mobile-nav-link {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    background-color: rgba(255, 255, 255, 0.1);
    padding-left: 26px;
    padding-right: 26px;
    padding-top: 9px;
    padding-bottom: 9px;
    border-radius: 999px;
    text-decoration: none;
    transition: all 0.3s ease;
    flex: 1;
}

.mobile-nav-link:hover {
    background-color: rgba(255, 183, 19, 0.1);
    border-color: #FFB713;
}

.mobile-nav-link-active {
    background-color: rgba(255, 183, 19, 0.1) !important;
    border-color: #FFB713 !important;
}

.mobile-nav-text {
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    font-family: 'Barlow', sans-serif;
}

.mobile-nav-link-active .mobile-nav-text {
    color: rgba(255, 183, 19, 0.8) !important;
}