        :root {
            --primary: #6e45e2;
            --secondary: #88d3ce;
            --accent: #ff7e5f;
            --dark: #1a1a2e;
            --light: #f8f9fa;
            --gray: #e6e6e6;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            background-color: var(--light);
            color: var(--dark);
            line-height: 1.6;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        header {
            background: linear-gradient(135deg, var(--primary), var(--dark));
            padding: 20px 0;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .header-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }

        .logo-toggle-container {
            display: flex;
            align-items: center;
            width: 100%;
            justify-content: space-between;
        }

        .logo {
            transition: all 0.3s;
            margin: auto;
            margin-top: 5px;
            margin-bottom: 15px;
        }

        .logo img {
            height: 30px;
            transition: all 0.3s;
        }

        nav {
            width: 100%;
        }

        nav ul {
            display: flex;
            list-style: none;
            justify-content: center;
            flex-wrap: wrap;
        }

        nav ul li {
            margin: 0 15px;
        }

        nav ul li a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            transition: color 0.3s;
            position: relative;
            padding: 5px 0;
        }

        nav ul li a:hover {
            color: var(--accent);
        }

        nav ul li a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--accent);
            transition: width 0.3s;
        }

        nav ul li a:hover::after {
            width: 100%;
        }

        .menu-toggle {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.9rem;
            cursor: pointer;
            padding: 5px;
            order: -1;
        }

        /* Banner styles */
        .banner-container {
            margin-top: 40px;
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            width: 100%;
        }

        .banners {
            display: flex;
            transition: transform 0.5s ease-in-out;
            width: 100%;
            height: 100%;
        }

        .banner {
            min-width: 100%;
            flex-shrink: 0;
            background-size: cover;
            background-position: center;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            height: 0;
            padding-bottom: 56.25%; /* 16:9 aspect ratio */
        }

        .banner::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.6);
        }

        .banner-content {
            position: absolute;
            z-index: 1;
            width: 90%;
            max-width: 800px;
            padding: 20px;
            text-align: center;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }

        .banner h2 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: clamp(1.5rem, 5vw, 2.5rem);
            margin-bottom: clamp(10px, 3vw, 20px);
            line-height: 1.2;
        }

        .banner p {
            font-size: clamp(0.9rem, 2.5vw, 1.2rem);
            margin-bottom: clamp(15px, 4vw, 30px);
            line-height: 1.5;
        }

        .banner-controls {
            position: absolute;
            top: 50%;
            width: 100%;
            display: flex;
            justify-content: space-between;
            transform: translateY(-50%);
            z-index: 2;
            padding: 0 10px;
        }

        .banner-control {
            background-color: rgba(255, 255, 255, 0.5);
            color: white;
            border: none;
            width: clamp(30px, 8vw, 50px);
            height: clamp(30px, 8vw, 50px);
            border-radius: 50%;
            font-size: clamp(1rem, 4vw, 1.5rem);
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .banner-control:hover {
            background-color: rgba(255, 255, 255, 0.8);
            color: var(--dark);
        }

        .banner-dots {
            display: flex;
            justify-content: center;
            position: absolute;
            bottom: clamp(10px, 3vw, 20px);
            left: 0;
            right: 0;
            z-index: 2;
        }

        .dot {
            width: clamp(8px, 2vw, 12px);
            height: clamp(8px, 2vw, 12px);
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.5);
            margin: 0 clamp(3px, 1vw, 5px);
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .dot.active {
            background-color: white;
        }

        .btn {
            display: inline-block;
            background-color: var(--accent);
            color: white;
            padding: clamp(8px, 2vw, 12px) clamp(15px, 4vw, 30px);
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
            font-size: clamp(0.9rem, 2.5vw, 1rem);
        }

        .btn:hover {
            background-color: #ff6a45;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255, 126, 95, 0.4);
        }

        .btn-outline {
            background-color: transparent;
            border: 2px solid var(--accent);
            color: var(--accent);
        }

        .btn-outline:hover {
            background-color: var(--accent);
            color: white;
        }

        .section-title {
            font-family: 'Space Grotesk', sans-serif;
            font-size: clamp(1.6rem, 5vw, 2rem);
            margin-bottom: 30px;
            position: relative;
            display: inline-block;
        }

        .section-title::after {
            content: '';
            position: absolute;
            width: 50%;
            height: 4px;
            bottom: -10px;
            left: 0;
            background: linear-gradient(to right, var(--primary), var(--secondary));
            border-radius: 2px;
        }

        .new-mixes {
            margin: clamp(30px, 5vw, 60px) 0;
        }

        .mixes-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: clamp(20px, 3vw, 30px);
            margin-bottom: 40px;
        }

        .mix-card {
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s, box-shadow 0.3s;
            text-decoration: none;
            color: inherit;
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .mix-image {
            width: 100%;
            height: 0;
            padding-bottom: 100%;
            position: relative;
            overflow: hidden;
            flex-shrink: 0;
        }

        .mix-image img {
            position: absolute;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .mix-info {
            padding: 20px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .mix-card.style1 {
            border-top: 5px solid var(--primary);
        }

        .mix-card.style2 {
            border-top: 5px solid var(--accent);
        }

        .mix-card.style3 {
            border-top: 5px solid var(--secondary);
        }

        .mix-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }


        .mix-card:hover .mix-image img {
            transform: scale(1.05);
        }


        .mix-title {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.3rem;
            margin-bottom: 10px;
            color: var(--dark);
        }

        .mix-meta {
            display: flex;
            justify-content: space-between;
            margin-bottom: 10px;
            font-size: 0.9rem;
            color: #666;
        }

        .mix-date {
            font-size: 0.8rem;
            color: #888;
            margin-bottom: 10px;
        }

        .mix-actions {
            display: flex;
            justify-content: space-between;
            margin-top: 20px;
        }

        .btn-small {
            padding: 8px 15px;
            font-size: 0.9rem;
        }

        .category-section {
            margin-bottom: clamp(30px, 5vw, 60px);
        }

        .category-mixes {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
            gap: clamp(15px, 3vw, 20px);
        }

        .category-mix {
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s, box-shadow 0.3s;
            text-decoration: none;
            color: inherit;
        }

        .category-mix:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        .category-mix-image {
            width: 100%;
            height: 0;
            padding-bottom: 100%; /* Создаем квадратный контейнер */
            position: relative;
            overflow: hidden;
        }

        .category-mix-image img {
            position: absolute;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .category-mix:hover .category-mix-image img {
            transform: scale(1.05);
        }

        .category-mix-info {
            padding: 15px;
        }

        .category-mix-title {
            font-size: 1rem;
            margin-bottom: 8px;
        }

        .category-mix-meta {
            font-size: 0.8rem;
            color: #666;
            margin-bottom: 10px;
        }

        .show-all {
            text-align: center;
            margin-top: 20px;
        }

        footer {
            background-color: var(--dark);
            color: white;
            padding: 40px 0 20px;
            margin-top: 60px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }

        .footer-column h3 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.2rem;
            margin-bottom: 20px;
            position: relative;
        }

        .footer-column h3::after {
            content: '';
            position: absolute;
            width: 40px;
            height: 3px;
            bottom: -8px;
            left: 0;
            background: linear-gradient(to right, var(--primary), var(--secondary));
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column ul li {
            margin-bottom: 10px;
        }

        .footer-column ul li a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-column ul li a:hover {
            color: var(--accent);
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 15px;
        }

        .social-links a {
            color: white;
            font-size: 1.2rem;
            transition: color 0.3s;
            text-decoration: none;
        }

        .social-links a:hover {
            color: var(--accent);
        }

        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            color: #aaa;
        }

        /* Стили для жанров */
        .mix-genres {
            display: flex;
            flex-wrap: wrap;
            gap: 5px;
            margin-bottom: 10px;
        }

        .mix-genre {
            background-color: var(--secondary);
            color: var(--dark);
            padding: 3px 10px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            white-space: nowrap;
        }

        .mix-genre:nth-child(2n) {
            background-color: var(--primary);
            color: white;
        }

        .mix-genre:nth-child(3n) {
            background-color: var(--accent);
            color: white;
        }

        .mix-genre:nth-child(4n) {
            background-color: #6e45e2;
            color: white;
        }

        .mix-genre:nth-child(5n) {
            background-color: #88d3ce;
            color: var(--dark);
        }

        .category-mix-actions {
            display: flex;
            justify-content: space-between;
            margin-top: 15px;
        }

        /* Mobile styles */
        @media (max-width: 992px) {
            .logo img {
                height: 45px;
            }
            
            .mixes-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
            }

            .logo-toggle-container {
                margin-bottom: 10px;
            }
            .logo {
                margin-bottom: 0px;
            }

            nav ul {
                display: none;
                flex-direction: column;
                align-items: center;
                width: 100%;
                padding: 10px 0;
            }

            nav ul.show {
                display: flex;
            }

            nav ul li {
                margin: 5px 0;
                width: 100%;
                text-align: center;
            }

            nav ul li a {
                display: block;
                padding: 10px;
            }

            .menu-toggle {
                display: block;
            }

            .banner-container {
                margin-top: 20px;
                border-radius: 0;
            }

            .mixes-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 576px) {
            .logo {
                margin-bottom: 0px;
                text-align: center;
                margin-right: 30px;
            }
            .logo img {
                height: auto;
                width:75%;
            }

            .mix-actions {
                flex-direction: column;
                gap: 10px;
            }

            .btn {
                width: 100%;
                text-align: center;
            }
            
            .category-mix-actions {
                flex-direction: column;
                gap: 10px;
            }
            
            .category-mix-actions .btn {
                width: 100%;
            }
        }

      /* Pagination styles */
        .pagination {
            display: flex;
            justify-content: center;
            margin-top: 40px;
            gap: 8px;
        }

        .page-item {
            list-style: none;
        }

        .page-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 6px;
            background-color: white;
            color: var(--dark);
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            border: 1px solid var(--gray);
        }

        .page-link:hover {
            background-color: var(--primary);
            color: white;
            border-color: var(--primary);
        }

        .page-link.active {
            background-color: var(--primary);
            color: white;
            border-color: var(--primary);
        }

        .page-link.disabled {
            opacity: 0.5;
            pointer-events: none;
        }


        