 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
}
 body {
     font-family: 'Arial', sans-serif;
     line-height: 1.6;
     color: #333;
     background-color: #f5f5f5;
     padding-top: 80px;
     background: url(img/bg.png) repeat-x rgb(20, 24, 28);
     color: #9ab;
     font-size: 14px;
}
 a {
     color:#fff;
}
 a:hover {
     color: #40bcf4;
}
 header {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 80px;
     background-color: #000;
     z-index: 1000;
}
 .header-container {
     width: 100%;
     max-width: 1400px;
     height: 100%;
     margin: 0 auto;
     display: flex;
     padding: 0 20px;
     position: relative;
	 align-items: center;
}
 .nav-logo {
     height: 40px;
     transition: opacity 0.3s;
}
 .nav-logo:hover {
     opacity: 0.8;
}

 @media (max-width: 1200px) {
     .header-container {
    }
     .nav-logo-link {
         position: absolute;
         left: 50%;
         transform: translateX(-50%);
    }
}
 .search-item {
     margin: 0 0 20px 0;
}
 .search-item form {
     display: flex;
     justify-content: center;
}
 .search-item input[type="text"] {
     padding: 8px 12px;
     border: none;
     outline: none;
     width: 100%;
     max-width: 1400px;
}
 .search-item button {
     padding: 8px 12px;
     background-color: #00e100;
     border: none;
     cursor: pointer;
}
 main {
     width: 100%;
     padding: 20px;
     background: #15181c;
}
 .indexh h1 {
     font-size: calc(16px + (40 - 16) * ((100vw - 320px) / (1920 - 320)));
	 margin-bottom: 20px;
    color: #bfb9b9;
    text-align: center;
    white-space: nowrap;
    overflow: visible;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
    line-height: 1.2;
    min-font-size: 16px;
    -webkit-text-size-adjust: 100%;
	}
 .description {
     margin-bottom: 20px;
     padding: 10px;
     width: 100%;
     text-align: justify;
}
 .description h3 {
     font-size: 1.3rem;
     margin-bottom: 10px;
     color: #bfb9b9;
}
 .section-header {
     display: flex;
     justify-content: space-between;
     align-items: center;
     margin-bottom: 20px;
     width: 100%;
     flex-wrap: nowrap;
}
 .section-header h2 {
     font-size: 1.4rem;
     color: #fff;
     margin: 0;
     white-space: nowrap;
     margin-right: 15px;
}
 .section-header h2 i {
     padding:0 10px 0 0;
     color: #70e000;
     font-size:16px;
}
 .view-all-btn i{
     padding:0 10px 0 0;
}
 .view-all-btn {
     display: inline-block;
     padding: 8px 16px;
     background-color: #432;
     color: #fff;
     text-decoration: none;
     font-weight: normal;
     transition: background-color 0.3s;
     white-space: nowrap;
     flex-shrink: 0;
}
 .view-all-btn:hover {
     color: #fff;
     transform: translateY(-1px);
     background:#cc8844;
     box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
 .movies-grid {
     display: grid;
     grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
     gap: 25px;
     margin-bottom: 40px;
     width: 100%;
}
 .movie-card {
     overflow: hidden;
     transition: transform 0.3s;
     position: relative;
}
 .movie-card:hover {
     transform: translateY(-5px);
}
 .movie-card a {
     text-decoration: none;
     color: #333;
     display: block;
}
 .image-container {
     position: relative;
     overflow: hidden;
}
 .movie-card img {
     width: 100%;
     object-fit: cover;
     transition: all 0.3s ease;
}
 .movie-card:hover img {
     filter: brightness(0.7);
}
 .play-icon {
     position: absolute;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
     color: rgb(154, 203, 106);
     transition: 0.3s;
     font-size: 3rem;
     opacity: 0;
     z-index: 2;
}
 .rating-badge {
     position: absolute;
     bottom: 10px;
     right: 10px;
     background-color: rgba(0, 0, 0, 0.8);
     color: #f5c518;
     padding: 5px 10px;
     font-weight: bold;
     font-size: 0.9rem;
     opacity: 0;
     transition: opacity 0.3s ease;
     display: flex;
     align-items: center;
     gap: 5px;
     z-index: 2;
}
 .rating-badge i {
     color: #f5c518;
}
 .movie-card:hover .play-icon, .movie-card:hover .rating-badge {
     opacity: 1;
}
 .movie-card h3 {
     font-size: 1rem;
     white-space: nowrap;
     overflow: hidden;
     color:#fff;
     text-overflow: ellipsis;
     font-weight: normal;
}
 .movie-card h3:hover {
     color: #40bcf4;
}
 .movie-card time {
     display: block;
     padding: 0 4px;
     font-size: 0.9rem;
     color: #9ab;
}
 .pagination {
     display: flex;
     justify-content: center;
     margin: 40px 0;
     gap: 8px;
}
 .pagination a {
     display: flex;
     align-items: center;
     justify-content: center;
     width: 40px;
     height: 40px;
     background-color: #fff;
     color: #333;
     text-decoration: none;
     font-weight: bold;
     box-shadow: 0 2px 5px rgba(0,0,0,0.1);
     transition: all 0.3s ease;
}
 .pagination a:hover {
     background-color: #00e100;
     color: #000;
}
 .pagination a.active {
     background-color: #00e100;
     color: #000;
}
 .pagination-arrow {
     background-color: #f0f0f0 !important;
}
 .pagination-arrow:hover {
     background-color: #e0e0e0 !important;
}
 footer {
     background-color: #000;
     color: #fff;
     padding: 20px;
     text-align: center;
     width: 100%;
     border-top: 1px solid #00e100;
}
 .social-links {
     margin-bottom: 10px;
}
 .social-links a {
     color: #fff;
     font-size: 1.8rem;
     margin: 0 15px;
     transition: color 0.3s;
}
 .social-links a:hover {
     color: #00e100;
}
 .footer-links {
     display: flex;
     justify-content: center;
     gap: 20px;
     margin-bottom: 20px;
     flex-wrap: wrap;
}
 .footer-links a {
     text-decoration: none;
     transition: color 0.3s;
}
 .copyright {
     font-size: 0.9rem;
     color: #aaa;
}
 .scroll-to-top {
     position: fixed;
     bottom: 30px;
     right: 30px;
     width: 50px;
     height: 50px;
     background: #567;
     color:#fff;
     border: none;
     cursor: pointer;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 1.2rem;
     opacity: 0;
     visibility: hidden;
     transition: all 0.3s ease;
     z-index: 999;
}
 .scroll-to-top:hover {
     color:#40bcf4;
}
 .scroll-to-top.visible {
     opacity: 1;
     visibility: visible;
}
 .movie-page {
     max-width: 1400px;
     margin: 0 auto;
     padding: 20px;
}
 .breadcrumbs {
     margin-bottom: 20px;
     font-size: 0.9rem;
}
 .breadcrumbs a {
     text-decoration: none;
     transition: color 0.3s;
}
 .breadcrumbs a:hover {
}
 .breadcrumbs .current {
     font-weight: bold;
}
 .breadcrumbs span {
     margin: 0 5px;
}
 .movie-info {
     display: flex;
     flex-wrap: wrap;
     gap: 30px;
     margin-bottom: 10px;
}
 .movie-poster-container {
     flex: 0 0 200px;
}
 .movie-poster {
     box-shadow: 0 4px 8px rgba(0,0,0,0.2);
     height: auto;
}
 .movie-details {
     flex: 1;
     min-width: 300px;
}
 .movie-details h1 {
     margin: 0;
	 line-height: 1.2;
     color: #bfb9b9;
     text-align: left;
	 font-size: x-large;
}
@media (max-width: 1000px) {
  .movie-details h1 {font-size: large;}
}
@media (max-width: 500px) {
  .movie-details h1 { font-size: medium; }
}
 .original-title {
     font-size: 14px;
     font-weight: 400;
     font-style: italic;
}
 .movie-meta {
     display: grid;
     grid-template-columns: repeat(2, 1fr);
     column-gap: 30px;
     row-gap: 0;
     margin-bottom: 20px;
     grid-template-columns: auto 30%;
}
 .meta-row {
     display: flex;
     align-items: flex-start;
     margin-bottom: 4px;
}
 .meta-label {
     font-weight: 400;
     margin-right: 8px;
     min-width: 90px;
     color: #d5d1d1;
     font-size: 14px;
}
 .movie-ratings {
     display: flex;
     gap: 20px;
     max-width: 200px;
     align-items: center;
     margin: 10px 0;
}
 .rating-item {
     display: flex;
     align-items: center;
     gap: 5px;
}
 .rating-item i {
     color: #f5c518;
     font-size: 1.2rem;
}
 .rating-value {
     color: #f5c518;
     font-weight: bold;
}
 .mpaa-rating {
     background-color: #f5c518;
     color: #000;
     padding: 2px 6px;
     font-weight: bold;
     font-size: 0.8rem;
     text-decoration: none;
     display: inline-block;
}
 .mpaa-rating:hover {
     background-color: #e0b416;
}
 .movie-description {
     margin-bottom: 20px;
}
 .movie-description h3 {
     font-size: 1.5rem;
     color: #fff;
}
 .movie-player {
     margin-bottom: 40px;
     width: 100%;
}
 .player-container {
     position: relative;
     padding-bottom: 56.25%;
     height: 0;
     overflow: hidden;
     max-width: 1400px;
     margin: 0 auto;
     background: #000;
     box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}
 .player-container iframe {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     border: none;
}
 .similar-movies {
     margin-bottom: 40px;
}
 @media (max-width: 1000px) {
     .movie-meta {
         grid-template-columns: 1fr;
		 margin-bottom: 0;
    }
}
 @media (max-width: 768px) {
     .nav-list {
         flex-wrap: wrap;
         height: auto;
         padding: 10px 0;
    }
     .nav-list li {
         margin: 5px 10px;
    }
     .search-item {
         margin: 10px auto;
         width: 100%;
    }
     .search-item form {
         width: 100%;
    }
     .search-item input[type="search"] {
         flex-grow: 1;
    }
     .nav-logo {
         height: 30px;
         margin-right: 10px;
    }
     body {
         padding-top: 120px;
    }
     .movies-grid {
         grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
         gap: 15px;
    }
     .section-header h2 {
         font-size: 1.5rem;
    }
     .movie-info {
         flex-direction: column;
		 margin-bottom: 0;
		 gap: 6px;
    }
     .movie-poster-container {
         margin: 0 auto;
    }
     .movie-ratings {
         align-items: flex-start;
         max-width: 100%;
         gap: 5px;
    }
}
 @media (max-width: 480px) {
     .movies-grid {
         grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }
     .section-header h2 {
         font-size: 1.3rem;
    }
     .view-all-btn {
         padding: 5px 10px;
         font-size: 0.8rem;
    }
     .scroll-to-top {
         width: 40px;
         height: 40px;
         font-size: 1rem;
         bottom: 20px;
         right: 20px;
    }
     .nav-logo {
         height: 25px;
    }
     .movie-details h1 {
         font-size: 1.0rem;
    }
     .original-title {
         font-size: 1rem;
    }
}
 #tvshows {
     background: #3a4b58;
     color: #fff;
}
 #movies {
     background: #edce5d;
     color: #000;
}
 .movie-type {
     align-items: center;
     display: flex;
     font-size: 12px;
     font-weight: bold;
     gap: 6px;
     left: 0;
     padding: 8px 12px;
     position: absolute;
     top: 0;
     z-index: 2;
}
 .premier {
     display: flex;
}
 .premier .date {
     color:#faebd7;
     font-size: 14px;
}
 .rating_content {
     flex: 1;
     text-align: center;
     border-radius: 4px;
     font-weight: bold;
     padding: 4px 0;
     display: flex;
     align-items: center;
     justify-content: center;
}
 .rating_content svg {
     width: 42px;
     aspect-ratio: 16 / 9;
     margin-right: 8px;
}
 .rating_content.imdb {
     background-color: #f5c518;
     color: #000;
}
 .rating_content.tmdb {
     background-color: #101d3c;
     color: #fff;
}
 .video-player {
     position: relative;
     width: 100%;
     cursor: pointer;
     aspect-ratio: 16 / 9;
     background-color: #000;
     overflow: hidden;
     margin: 0 auto;
}
 .video-player img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     display: block;
     background-size: cover;
}
 .video-player .overlay {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background-color: rgba(0, 0, 0, 0.5);
     color: white;
     display: flex;
     justify-content: center;
     align-items: center;
     font-size: 24px;
     opacity: 0;
     transition: opacity 0.3s ease;
     flex-direction: column;
     text-align: center;
}
 .video-player:hover .overlay {
     opacity: 1;
}
 .video-player .overlay .fa-circle-play {
     font-size: 100px;
     margin-bottom: 10px;
     transition: color 0.3s ease;
}
 .video-player:hover .overlay .fa-circle-play {
     color: rgb(154, 203, 106);
}
 .controls {
     position: absolute;
     bottom: 0;
     left: 0;
     width: 100%;
     background-color: rgba(50, 50, 50, 0.9);
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding: 10px;
     box-sizing: border-box;
     transition: opacity 0.3s ease;
}
 .controls button {
     background: none;
     border: none;
     font-size: 20px;
     cursor: pointer;
     margin: 0 5px;
     color:#fff;
     transition: color 0.3s ease;
}
 .controls button:hover {
     color: #00e100;
}
 .controls .left-controls, .controls .right-controls {
     display: flex;
     align-items: center;
}
 .controls .time {
     color: white;
     font-size: 14px;
     margin: 0 10px;
}
 .readmore-js-toggle, .readmore-js-section {
     text-decoration:none;
}
 .movie-description a {
     padding: 5px 0;
     display: block;
}
 .error-container {
     display: flex;
     justify-content: center;
     align-items: center;
     min-height: 60vh;
     padding: 40px 20px;
     text-align: center;
}
 .error-content {
     max-width: 800px;
     margin: 0 auto;
}
 .error-code {
     font-size: 10rem;
     font-weight: bold;
     color: #00e100;
     line-height: 1;
     margin-bottom: 20px;
     text-shadow: 0 4px 8px rgba(0, 225, 0, 0.3);
}
 .error-title {
     font-size: 3rem;
     color: #fff;
     margin-bottom: 30px;
     line-height: 1.2;
}
 .error-message {
     color: #9ab;
     font-size: 1.5rem;
     margin-bottom: 40px;
     line-height: 1.5;
}
 .error-actions {
     display: flex;
     justify-content: center;
     gap: 20px;
     flex-wrap: wrap;
}
 .error-btn {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     padding: 12px 24px;
     text-decoration: none;
     border-radius: 4px;
     font-weight: bold;
     font-size: 1rem;
     transition: all 0.3s ease;
     min-width: 160px;
}
 .error-btn i {
     margin-right: 8px;
     font-size: 1em;
}
 .home-btn {
     background-color: #00e100;
     color: #000;
}
 .home-btn:hover {
     background-color: #00c100;
     transform: translateY(-2px);
     box-shadow: 0 2px 8px rgba(0, 225, 0, 0.3);
}
 .movies-btn {
     background-color: #432;
     color: #fff;
}
 .movies-btn:hover {
     background-color: #cc8844;
     transform: translateY(-2px);
     box-shadow: 0 2px 8px rgba(204, 136, 68, 0.3);
}
 .series-btn {
     background-color: #3a4b58;
     color: #fff;
}
 .series-btn:hover {
     background-color: #4d6375;
     transform: translateY(-2px);
     box-shadow: 0 2px 8px rgba(58, 75, 88, 0.3);
}
 @media (max-width: 768px) {
     .error-code {
         font-size: 8rem;
    }
     .error-title {
         font-size: 2.2rem;
    }
     .error-message {
         font-size: 1.2rem;
         margin-bottom: 30px;
    }
     .error-actions {
         gap: 15px;
    }
     .error-btn {
         padding: 10px 18px;
         font-size: 0.9rem;
         min-width: 140px;
    }
}
 @media (max-width: 480px) {
     .error-code {
         font-size: 6rem;
    }
     .error-title {
         font-size: 1.8rem;
    }
     .error-message {
         font-size: 1rem;
         margin-bottom: 25px;
    }
     .error-actions {
         gap: 10px;
    }
     .error-btn {
         padding: 8px 12px;
         min-width: 120px;
         font-size: 0.8rem;
    }
}
 .search_result {
     background: #3a4b58;
     padding:10px;
     font-weight:normal;
     font-size:16px;
     margin:40px 0;
}
 .search_result h2 {
     color: #fff;
}
 .search_result h2 span{
     color: #d5d1d1;
}
 .no-results-container {
     text-align: center;
     margin: 0 auto;
}
 .no-results-icon {
     font-size: 4rem;
     color: #00e100;
     margin-bottom: 20px;
}
 .no-results-query {
     color: #00e100;
     font-weight: bold;
     font-style: italic;
}
 .no-results-tips {
     text-align: left;
     max-width: 500px;
     margin: 30px auto;
     padding: 20px;
     background-color: rgba(20, 24, 28, 0.7);
     border-radius: 6px;
}
 .no-results-tips ul {
     padding-left: 20px;
     margin-top: 15px;
}
 .no-results-tips li {
     margin-bottom: 10px;
     color: #9ab;
}
 .no-results-actions {
     display: flex;
     justify-content: center;
     gap: 20px;
     flex-wrap: wrap;
     margin-top: 40px;
}
 .view-all-btn {
     display: inline-flex;
     align-items: center;
     padding: 12px 24px;
     background-color: #432;
     color: #fff;
     text-decoration: none;
     border-radius: 4px;
     transition: all 0.3s;
}
 .view-all-btn:hover {
     background-color: #cc8844;
     transform: translateY(-2px);
     box-shadow: 0 2px 8px rgba(204, 136, 68, 0.3);
}
 .view-all-btn i {
     margin-right: 10px;
}
/* Карусель похожих фильмов */
 .movies-carousel-container {
     position: relative;
     width: 100%;
     margin: 0 auto;
     padding: 0 40px;
     overflow: hidden;
}
 .movies-carousel {
     display: flex;
     transition: transform 0.5s ease;
     will-change: transform;
     gap: 25px;
     padding: 10px 0;
}
 .movies-carousel .movie-card {
     flex: 0 0 180px;
     min-width: 180px;
}
 .movies-carousel .movie-card img {
     width: 180px;
     height: 240px;
     object-fit: cover;
}
 .carousel-btn {
     position: absolute;
     top: 50%;
     transform: translateY(-50%);
     background-color: rgba(0, 0, 0, 0.7);
     border: none;
     color: white;
     font-size: 24px;
     width: 40px;
     height: 60px;
     cursor: pointer;
     z-index: 10;
     display: flex;
     align-items: center;
     justify-content: center;
     border-radius: 4px;
     transition: all 0.3s;
     opacity: 0;
}
 .movies-carousel-container:hover .carousel-btn {
     opacity: 1;
}
 .carousel-btn:hover {
     background-color: rgba(0, 225, 0, 0.7);
}
 .prev-btn {
     left: 0;
}
 .next-btn {
     right: 0;
}
 @media (max-width: 768px) {
     .movies-carousel-container {
         padding: 0 30px;
    }
     .carousel-btn {
         width: 30px;
         height: 50px;
         font-size: 18px;
         opacity: 1;
    }
}
 @media (max-width: 480px) {
     .movies-carousel-container {
         padding: 0 20px;
    }
     .carousel-btn {
         width: 25px;
         height: 40px;
         font-size: 16px;
    }
}
 .banner-container {
     display: grid;
     grid-template-columns: 1fr;
     grid-template-rows: auto auto;
     gap: 15px;
     margin: 10px 0;
     background: linear-gradient(rgb(0 0 0 / 62%), rgba(20, 24, 28, 0.95)), url(img/bg_ban.jpg) center / cover no-repeat;
     padding: 4px;
     color: #9ab;
     box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
     font-family: 'Arial', sans-serif;
     overflow: hidden;
     border: 1px solid #1a1a1a;
}
 .banner-content {
     display: grid;
     grid-template-columns: auto 1fr;
     gap: 15px;
     align-items: center;
}
 .banner-icon img {
     width: 80px;
     height: 80px;
     object-fit: contain;
     border-radius: 12px;
     box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
 .banner-text h2 {
     margin: 0 0 8px 0;
     font-size: 18px;
     font-weight: 700;
     color: #fff;
}
 .banner-text p {
     margin: 0 0 8px 0;
     font-size: 14px;
     line-height: 1.4;
     color: #9ab;
}
 .banner-text .highlight {
     color: #00e100;
     font-weight: 600;
     text-transform: uppercase;
}
 .banner-buttons {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 10px;
}
 .banner-btn {
     padding: 10px 0;
     text-decoration: none;
     font-weight: 600;
     font-size: 14px;
     text-align: center;
     text-transform: uppercase;
     letter-spacing: 0.5px;
     transition: all 0.3s ease;
     box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
 .btn-details {
     color: #40bcf4;
     border: 2px solid #40bcf4;
     background: transparent;
}
 .btn-details:hover {
     background: rgba(64, 188, 244, 0.1);
}
 .btn-install {
     color: #fff;
     background: #432;
     border: 2px solid transparent;
	 transition: background-color 0.3s;
     white-space: nowrap;
     flex-shrink: 0;
}
 .btn-install:hover {
     transform: translateY(-2px);
	 color: #fff;
     background:#cc8844;
     box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
 }
 @media (min-width: 768px) {
     .banner-container {
         grid-template-columns: 1fr auto;
         grid-template-rows: 1fr;
         align-items: center;
    }
     .banner-buttons {
         grid-template-columns: 1fr;
         width: 180px;
    }
}
 @media (max-width: 480px) {
     .banner-content {
         grid-template-columns: 1fr;
         text-align: center;
    }
     .banner-icon {
         display: flex;
         justify-content: center;
    }
     .banner-buttons {
         grid-template-columns: 1fr;
    }
}


.hamburger {
    cursor: pointer;
    display: none;
    height: 24px;
    margin-right: 15px;
    position: relative;
    width: 24px;
    z-index: 1001;
}

.hamburger span {
    background: #fff;
    border-radius: 3px;
    display: block;
    height: 3px;
    left: 0;
    opacity: 1;
    position: absolute;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
    width: 100%;
}

.hamburger span:nth-child(1) {
    top: 0;
}

.hamburger span:nth-child(2),
.hamburger span:nth-child(3) {
    top: 8px;
}

.hamburger span:nth-child(4) {
    top: 16px;
}

.hamburger.active span:nth-child(1),
.hamburger.active span:nth-child(4) {
    left: 50%;
    top: 8px;
    width: 0%;
}

.hamburger.active span:nth-child(2) {
    transform: rotate(45deg);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg);
}

nav {
    align-items: center;
    display: flex;
    flex-grow: 1;
    margin-left: 20px;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-right: 14px;
    position: relative;
}

.nav-links a {
    align-items: center;
    color: #fff;
    display: flex;
    font-size: 18px;
    text-decoration: none;
    transition: color 0.3s;
    white-space: nowrap;
}

.nav-links a:hover {
    color: #40bcf4;
}

.nav-links i {
    font-size: 16px;
    margin-right: 8px;
}

.dropdown {
    position: relative;
}

.dropdown-content {
    border-radius: 4px;
    background-color: #000;
    column-count: 4;
    column-gap: 20px;
    display: none;
    max-height: 70vh;
    min-width: 400px;
    overflow-y: auto;
    padding: 10px;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1;
	border-top: 2px solid #40bcf4;
}

.dropdown-content a {
    align-items: center;
    border-bottom: 1px solid #40bcf4;
    color: #fff;
    display: flex;
    padding: 8px 12px;
	font-size:14px;
    text-decoration: none;
    white-space: nowrap;
}

.dropdown-content i {
    margin-right: 10px;
    text-align: center;
    width: 20px;
}

.dropdown.active .dropdown-content {
    display: block;
}

.genre-arrow {
    margin-left: 5px;
}
@media (max-width: 1380px) {
    nav {
        display: none;
        margin-left: 0;
        order: 4;
        width: 100%;
    }

    nav.active {
        background: #000;
        display: block;
        height: calc(100vh - 50px);
        left: 0;
        overflow-y: auto;
        padding: 20px;
        position: fixed;
        top: 50px;
        width: 100%;
        z-index: 1000;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        padding: 0;
    }

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

    .nav-links li {
        border-bottom: 1px solid #333;
        margin: 0;
    }

    .nav-links li a {
        font-size: 13px;
        padding: 12px;
    }

    .dropdown > a::after {
        content: '\f078';
        font-family: 'Font Awesome 5 Free';
        font-size: 12px;
        font-weight: 900;
        margin-left: 5px;
        transition: transform 0.3s;
    }

    .dropdown.active > a::after {
        content: '\f077';
    }

    .dropdown-content {
        background-color: rgba(0, 0, 0, 0.1);
        box-shadow: none;
        column-gap: 15px;
        columns: 2;
        display: none;
        margin-top: 0;
        position: static;
        width: 100%;
    }

    .dropdown-content a {
        border-bottom: 1px solid #40bcf4;
        color: #fff;
        font-size: 14px;
        padding: 10px 15px 10px 30px;
    }
}

@media (max-width: 992px) {
    nav.active {
        padding: 0;
    }

    .genre-arrow {
        display: none;
    }

    .dropdown-content {
        padding: 0px 0 0 20px;
        columns: 2;
        column-gap: 2px;
        width: 100%;
        overflow-x: hidden;
        min-width: auto;
    }

    .dropdown-content a {
        border-bottom: none;
        padding: 8px 15px;
        font-size: 13px;
        break-inside: avoid;
    }
}

@media (min-width: 993px) {
    .dropdown-content {
        columns: 4;
        column-gap: 20px;
        padding: 10px;
    }
}

@media (max-width: 1380px) {
    header {
        flex-wrap: wrap;
        padding: 10px;
    }

    .logo {
        margin: 0;
        order: 1;
        text-align: center;
        width: 100%;
    }

    .hamburger {
        display: block;
        order: 0;
    }

    nav {
        display: none;
        margin-left: 0;
        order: 4;
        width: 100%;
    }

    header {
        align-items: center;
        display: flex;
        flex-wrap: nowrap;
    }

    .hamburger,
    .logo,
    .search-container {
        align-items: center;
        display: flex;
        flex: 0 0 auto;
        margin: 0;
        padding: 0;
    }

    .logo {
        justify-content: center;
        width: auto;
        text-align: center;
        flex-grow: 1;
        margin-left: auto;
        margin-right: auto;
    }

    .hamburger {
        margin-right: 10px;
    }

    .search-container {
        margin-left: 10px;
    }

    .logo img {
        display: block;
        margin: 0 auto;
    }
}

@media (min-width: 993px) {

    nav {
        margin-left: 20px;
    }
}

#newyear a {
	color: #70e000;
}

#newyear a:hover {
	color: #70e000;
}