/* ------------------------------------- */
/* Переменные и Общие стили */
/* ------------------------------------- */
:root {
    --nl-header-height: 70px;
    --nl-accent-color: #ff6600; 
    --nl-text-light: #fff;
    --nl-text-dark: #000;
    --nl-bg-dark: #000;
    --nl-bg-light: #fff;
}

@font-face {
	font-family: 'Font Awesome';
	src: url('webfonts/fa-solid-900.woff2') format('woff2');
	font-weight: 900;
	font-style: normal;
	font-display: block;
}

}

@font-face {
	font-family: 'Inter';
	src: url('webfonts/inter-400.woff2') format('woff2');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}


@font-face {
	font-family: 'Unbounded';
	src: url('webfonts/Unbounded-300.woff2') format('woff2');
	font-weight: 300;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Unbounded';
	src: url('webfonts/Unbounded-400.woff2') format('woff2');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Unbounded';
	src: url('webfonts/Unbounded-500.woff2') format('woff2');
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Unbounded';
	src: url('webfonts/Unbounded-600.woff2') format('woff2');
	font-weight: 600;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Unbounded';
	src: url('webfonts/Unbounded-700.woff2') format('woff2');
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}


@font-face {
	font-family: 'Unbounded';
	src: url('webfonts/Unbounded-900.woff2') format('woff2');
	font-weight: 900;
	font-style: normal;
	font-display: swap;
}

body {
	font-family: 'Inter', sans-serif;
	font-weight: 400;
	line-height: 1.6;
	color: var(--text-primary-dark-theme);
	background: var(--primary-dark-bg);
	margin: 0;
	padding: 0;
}

.nl_header_nav {
    width: 100%;
    background-color: var(--primary-dark-bg);
    margin: 0;
    padding: 0;
    border-bottom: 4px solid var(--accent-orange);
}

.nl_nav_container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    height: var(--nl-header-height);
    padding: 0 20px;
    position: relative;
	z-index: 1000;
}

.nl_nav_container:after {
    content: "";
    display: table;
    clear: both;
}

.logo-container {
    margin-right: 30px;
}

.logo {
    display: flex;
    align-items: flex-end;
    font-weight: 500;
    color: #fff;
    height: 30px;
    text-transform: uppercase;
    position: relative;
    font-size: 24px;
    letter-spacing: 2px;
    line-height: 1;
    text-decoration: none;
    font-weight: 900;
}

.logo span {
    color: #f60;
    font-size: 2.3em;
    position: relative;
    bottom: -5px;
    font-weight: 900;
    margin-right: 2px;
}

.logo div {
    position: absolute;
    right: 0;
    top: -15px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0;
    color: #f60;
    height: 20px;
    display: flex;
    align-items: center;
    padding: 0 10px;
}

.nl_nav_links_list {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
	gap:10px;
}

.nl_list_item {
    margin: 0px;
    display: inline-block;
    position: relative;
}

.nl_list_item a,
.nl_dropdown_btn {
    display: block;
    color: var(--text-primary-dark-theme);
    font-size: 17px;
    text-decoration: none;
    border: none;
    background: none;
    cursor: pointer;
    font-family: 'Unbounded', sans-serif;
    font-weight: 400;
    transition: color 0.3s;
}

.nl_list_item a:hover {
    color: var(--accent-orange);
}

.nl_list_item i {
    margin-right: 8px;
}

.nl_toggle_icon {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.nl_dropdown_content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 650px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
    z-index: 1001;
    padding-top: 24px;
	background:var(--nl-bg-light);
}

.nl_list_item:hover > .nl_dropdown_content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px 20px;
}

.nl_list_item:hover .nl_toggle_icon {
    transform: rotate(180deg);
}

.nl_genre_list {
    display: contents;
}

.nl_dropdown_content li {
    display: block;
    width: 100%;
}


.nl_dropdown_content li a {
    color: var(--nl-text-dark);
    padding-block: 4px;
    padding-inline: 4px;
    display: block;
    white-space: nowrap;
    transition: color 0.2s;
	font-weight: 200;
}

.nl_dropdown_content li a:hover {
    background: var(--accent-orange);
	 color: var(--nl-text-dark);
}

.nl_toggle_input {
    display: none;
}

.nl_mobile_toggle {
    display: none;
}

@media all and (max-width: 1100px) {
    .nl_nav_container {
        justify-content: space-between;
        width: 100%;
    }
	
	.nl_dropdown_wrapper {
		border-bottom: 4px solid #eee;
	}

    .logo-container {
        margin-right: 0;
        flex-shrink: 0;
    }

    .nl_nav_links_list {
        display: none;
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 320px;
        height: 100vh;
        background-color: var(--nl-bg-light);
        flex-direction: column;
        align-items: stretch;
        padding: 10px;
        box-shadow: -4px 0 15px rgba(0, 0, 0, 0.3);
        transition: right 0.3s ease;
        overflow-y: auto;
        z-index: 1001;
    }

    .nl_mobile_toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--text-primary-dark-theme);
        font-size: 24px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 10px;
        z-index: 1002;
        transition: color 0.3s;
        position: relative;
        width: 40px;
        height: 40px;
        margin-left: auto; 
    }

    .nl_mobile_toggle i {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        transition: opacity 0.3s;
    }

    .nl_mobile_toggle i.fa-times {
        opacity: 0;
    }

    #nl_drop:checked ~ .nl_nav_links_list {
        display: block;
        right: 0;
    }

    #nl_drop:checked ~ .nl_mobile_toggle i.fa-bars {
        opacity: 0;
    }
    
    #nl_drop:checked ~ .nl_mobile_toggle i.fa-times {
        opacity: 1;
        color: var(--accent-orange);
    }
    .nl_list_item {
        display: block;
        width: 100%;
        border-bottom: 1px solid #eee;
    }

    .nl_list_item a,
    .nl_dropdown_btn {
        padding: 4px 0;
        width: 100%;
        text-align: left;
        box-sizing: border-box;
        color: var(--nl-text-dark);
        font-weight: 400;
    }

    .nl_list_item:hover > .nl_dropdown_content {
        display: none;
    }

    .nl_dropdown_content {
        display: none;
        position: static;
        min-width: auto;
        box-shadow: none;
        padding: 0;
        width: 100%;
        grid-template-columns: 1fr;
    }

    #nl_drop_genres:checked ~ .nl_dropdown_content {
        display: block;
    }

    #nl_drop_genres:checked ~ .nl_dropdown_btn .nl_toggle_icon {
        transform: rotate(180deg);
    }

    .nl_dropdown_content li a {
        color: var(--nl-text-dark);
        font-size: 14px;
        border-bottom: 1px solid #eee;
    }

    .nl_dropdown_content li:last-child a {
        border-bottom: none;
    }

    .nl_dropdown_content li a:hover {
        background-color: #eee;
    }
}

@media all and (max-width: 330px) {
    .nl_list_item {
        display: block;
        width: 94%;
    }
}