body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #121212;
    color: #ffffff;
    min-height: 100vh;
}

/* Header и Footer */
header, footer {
    width: 100%;
    background: #333;
    color: #fff;
    padding: 15px;
    text-align: center;
}



/* Фильтры (по умолчанию - в строку для экранов 700px и больше) */
.filters {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 20px 0;
    flex-wrap: wrap;
}

/* Кнопка "Вверх" */
/* Контейнер для кнопок */
.track-buttons-container {
    display: flex;
    justify-content: space-between; /* Располагаем кнопки по краям */
    width: 90%;
    max-width: 800px; /* Делаем ширину такой же, как у .track */
    margin-top: 20px;
}

.filters button {
    padding: 10px 20px;
    cursor: pointer;
    font-size: 16px;
}

/* --- 1) ДО 1024px (кнопки в строку с отступами) --- */
@media (max-width: 1024px) {
    .filters {
        flex-direction: column;
        align-items: center;
        width: 100%;
        padding: 0 10px;
    }

    .filters button {
        width: calc(100% - 20px);
        font-size: 16px;
        padding: 12px;
        margin-bottom: 10px;
    }

    /* Обновляем стили для навигации на планшетах */
    .navbar-nav {
        flex-direction: row !important;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
        width: 100%;
    }

    .navbar-nav .nav-link {
        flex: 0 0 auto;
        padding: 8px 12px;
        margin: 0;
        font-size: 14px;
    }

    .nav-link.faq-nav {
        margin-right: 10px;
    }

    .nav-link.social-nav {
        margin: 0 5px;
    }

    .versions-btn {
        padding: 0.5rem;
    }

    .versions-btn span:not(.versions-count) {
        display: none;
    }
}



/* Контейнер трека */
.track {
    background: #1a1a1a;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.track-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1rem;
    align-items: center;
}


/* Блок с изображением */
.track-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Track image container and play button styles */
.track-image-container {
    position: relative;
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}

.track-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.play-overlay .play-icon {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.2rem;
    margin-left: 2px;
}

.play-overlay:hover {
    background: rgba(0, 0, 0, 0.2);
}

.play-overlay:hover .play-icon {
    color: rgba(255, 255, 255, 1);
}

/* Active state */
.play-overlay:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Track info styles */
.track-details {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-grow: 1;
    min-width: 0;
    justify-content: space-between;
}

.track-time {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.9rem;
}

.track-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.track-tags {
	display: block;
    font-size: 12px;
    color: #6c757d;
    margin-top: 1px;
    overflow-wrap: break-word;
    max-width: 100%;
}


.track-bpm {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #888;
    font-size: 0.9rem;
}

.track-bpm i {
    font-size: 12px;
    transition: color 0.2s ease;
}

.track-bpm i.fa-tachometer-alt {
    color: #ff69b4;
}

.track-vocal {
    color: #888;
    font-size: 0.5rem;
    order: 0;
}

.track-vocal i {
    font-size: 12px;
    transition: color 0.2s ease;
}

.track-vocal i.fa-microphone {
    color: #ff69b4;
}

.track-vocal i.fa-music {
    color: #4CAF50;
}

/* Track title and artist container */
.track-title {
    display: flex;
    flex-direction: column;
    width: 150px;
    flex-shrink: 0;
    gap: 4px;
}

/* Title text */
.track-title-text {
    font-size: 12pt;
    font-weight: 500;

    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    /*text-overflow: ellipsis;*/
}

/* Artist text */
.track-title-artist {
    font-size: 10pt;
    color: #888;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.track-artist,
.track-duration,
.track-genres {
    font-size: 0.9rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Нижняя часть с кнопками */
.track-actions {
    display: flex;
    gap: 0.75rem;
    min-width: 120px;
    justify-content: flex-end;
    align-items: center;
}

/* Стиль кнопок у трека */
.track-actions button {
    padding: 8px 12px;
    font-size: 14px;
    cursor: pointer;
}

/* Активные версии отображаются */
.versions.active {
    display: block;
}

/* Стили для блока версий */
.versions {
    display: none;
    margin-top: 10px;
    padding: 10px;
    background: #f9f9f9;
    border-radius: 6px;
    width: 90%;
}

/* Контейнер для одной версии */
.version-item {
    display: flex;
    align-items: center;  /* Выравнивание по центру */
    justify-content: space-between;
    padding: 8px 10px;
    border-bottom: 1px solid #ddd;
}

/* Выравнивание текста "Version X" */
.version-text {
    font-size: 14px;
    font-weight: 500;
    flex-grow: 1;
}

/* Последняя версия без разделителя */
.version-item:last-child {
    border-bottom: none;
}

/* Общий стиль для обеих кнопок */
#loadMoreButton, #scrollToTop {
    
    color: #ff4081;
    padding: 12px 20px; /* Делаем одинаковый отступ */
    border: none;
    border-radius: 5px;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    font-size: 16px;
    transition: opacity 0.3s, transform 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
   
    height: 44px; /* Фиксируем одинаковую высоту */
}

/* Кнопка "Вверх" смещена вправо */
#scrollToTop {
    margin-left: auto; /* Смещаем кнопку "Вверх" в край */
}

/* Эффект наведения */
#loadMoreButton:hover, #scrollToTop:hover {
    opacity: 0.8;
 
}



.modal {
	
    display: none;
    position: fixed;
    bottom: 90px; /* Отступ от футера */
    left: 0;
    right: 0;
    background: #222;
    color: #fff;
    padding: 20px;
    text-align: center;
    z-index: 1000;
	/*border-radius: 50px */
}

.modal.active {
    display: block;
}

.footer a {
    color: #4fa3f7;
    margin: 0 10px;
    text-decoration: none;
}

.version-container {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 5px;
}

.version-count {
    background: #ff5722;
    color: #fff;
    padding: 3px 7px;
    border-radius: 50%;
    font-size: 12px;
}

.version-label {
    color: #ff5722;
    font-size: 12px;
}

.versions {
    display: none;
    margin-top: 10px;
    padding-left: 20px;
}

.versions.active {
    display: block;
}

.version-count {
    color: red;
    font-weight: bold;
}

.player-container {
    position: fixed;
    bottom: 60px; /* Поднимаем плеер над футером */
    left: 0;
    right: 0;
    background: #222;
    color: #fff;
    padding: 10px;
    text-align: center;
    display: none;
}

.player-container.active {
    display: block;
}

/* Внешний вид Футера */
footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #333;
    color: #fff;
    padding: 10px;
    text-align: center;
    z-index: 900;
}

/* Header Styles */
.navbar {
	background: rgba(0, 0, 0, 0.8);
    padding: 0.5rem 0;
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 1000;
}


.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-brand {
    padding: 0;
    display: flex;
    align-items: center;
}

.logo-image {
    height: 60px; /* Increased from 40px */
    width: auto;
    object-fit: contain;
}



/* Genre Section Styles */
.genre-section {
    display: flex;
    background-color: #ff69b4;
    padding: 3rem 0;
    margin-bottom: 2rem;
    width: 100%;
}

.genre-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Filters Section */
.filters-section {
    width: 100%;
    margin-bottom: 2rem;
    padding: 0 15px;
}

.filters {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

/* Track Styles */
.track-actions i {
    cursor: pointer;
    font-size: 1.2rem;
    color: #888;
    transition: color 0.2s;
}

.track-actions i:hover {
    color: #fff;
}

.track-actions i.liked {
    color: #ff69b4;
}




/* Grid layout for track elements */
.track-grid {
    display: grid;
    grid-template-columns: auto 150px 1fr auto auto;
    gap: 1rem;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
}

/* Track title styles */
.track-title {
    width: 150px;
    min-width: 150px;
}

/* Waveform container */
.waveform-container {
    width: 100%;
    min-width: 200px;
    overflow: hidden;
}

/* Versions button styles */
.versions-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
   
}

.versions-count {
    display: inline-block !important;
    font-size: 0.8rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 2px 6px;
    border-radius: 12px;
    margin-left: 4px;
}

/* Responsive styles */
@media (max-width: 1024px) {
    .track-grid {
        grid-template-columns: auto 120px 1fr auto auto;
    }

    .versions-btn {
        padding: 0.5rem;
    }

    .versions-btn span:not(.versions-count) {
        display: none;
    }
}

@media (max-width: 768px) {
    .track-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .track-title {
        width: 100%;
        min-width: auto;
        text-align: center;
    }

    .waveform-container {
        width: 100%;
        min-width: auto;
    }

    .versions-btn {
        display: inline-flex;
        padding: 0.5rem 1rem;
    }

    .versions-count {
        display: inline-block !important;
    }

    .track-bpm {
        font-size: 0.8rem;
        justify-content: center;
        margin: 0.5rem 0;
    }
}

/* Track details */
.track-details {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-grow: 1;
    min-width: 0;
}

.text-muted {
    color: #fff !important;
}

.filter-btn {
    padding: 0.5rem 1.5rem;
    border: 1px solid #fff;
    background: transparent;
    color: #fff;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.filter-btn.active {
    background: #ff69b4;
    border-color: #ff69b4;
}

/* Action Buttons */
.track-actions {
    display: flex;
    gap: 0.75rem;
    min-width: 120px;
    justify-content: flex-end;
}

.action-btn {
    padding: 0.5rem;
    width: 36px;
    height: 36px;
    border: none; /* Remove borders */
    background: transparent;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    
}

.action-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px; /* Add border radius only on hover */
}

.versions-btn {
    width: auto;
    padding: 0.5rem 1rem;
    border: 1px solid #444444; /* Keep border only for versions button */
    
}

.versions-count {
    background: #ff69b4;
    margin-left: 0.5rem;
    color: #fff;
    padding: 0.1rem 0.4rem;
    border-radius: 50%;
    font-size: 0.8rem;
}

/* Add these styles */
.versions-container {
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    margin-left: 2rem;
}

.versions-header {
    color: #ff69b4;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.version-item {
    margin-bottom: 0.5rem;
    padding: 0.5rem;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.02);
}

.version-grid {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.version-info {
    min-width: 150px;
}

.version-name {
    color: #fff;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.version-duration {
    color: #888;
    font-size: 0.8rem;
}

.version-waveform-container {
    flex-grow: 1;
    height: 40px;
}

.version-play-btn {
    background: transparent;
    border: none;
    color: #fff;
    cursor: pointer;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.version-play-btn:hover {
    color: #ff69b4;
}

/* Audio Player Styles */
.audio-player {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 1000;
}

.player-track-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.player-track-image {
    width: 40px;
    height: 40px;
    border-radius: 4px;
}

.player-track-details {
    display: flex;
    flex-direction: column;
}

.player-track-title {
    color: #fff;
    font-size: 0.9rem;
    
}

.player-track-artist {
    color: #888;
    font-size: 0.8rem;
}

.volume-section {
    width: 100%;
    margin-bottom: 1rem;
}

.volume-control {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-right: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.volume-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.tracks-counter {
    font-size: 14px;
    color: #fff;
    padding-left: 2rem;
    background: linear-gradient(45deg, #ff69b4, #ff4081);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tracks-counter::before {
    content: '\f025'; /* Иконка музыкальной ноты из Font Awesome */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 16px;
    background: linear-gradient(45deg, #ff69b4, #ff4081);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.volume-control i {
    color: #fff;
    font-size: 1.2rem;
}

#volume-slider {
    width: 100px;
    height: 4px;
    -webkit-appearance: none;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    cursor: pointer;
}

#volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 12px;
    height: 12px;
    background: #ff69b4;
    border-radius: 50%;
    cursor: pointer;
}

#volume-slider::-moz-range-thumb {
    width: 12px;
    height: 12px;
    background: #ff69b4;
    border: none;
    border-radius: 50%;
    cursor: pointer;
}

.track-time {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.9rem;
}

.current-time, .duration {
    font-family: monospace;
}

/* Container width consistency */
.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
}

/* Media queries for responsive design */
@media (max-width: 768px) {
    /* Reset all container paddings */
    .container {
        padding: 0 15px;
        width: 100%;
        box-sizing: border-box;
        overflow-x: hidden;
    }

    body {
        overflow-x: hidden;
        width: 100%;
    }

    /* Navbar mobile styles */
    .navbar .container {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }

    .navbar-nav {
        margin-top: 1rem;
        width: 100%;
        padding: 0;
    }

    /* Genre section mobile styles */
    .genre-section {
        padding: 2rem 0;
    }

    .genre-section .container {
        width: 100%;
        padding: 0 15px;
    }

    /* Filters section mobile styles */
    .filters-section {
        padding: 0;
        width: 100%;
    }

    .filters {
        flex-direction: column;
        align-items: center;
        width: 100%;
        padding: 0 15px;
        gap: 0.5rem;
        margin: 1rem auto;
    }

    .filter-btn {
        width: 100%;
        max-width: 100%;
    }

    /* Track list mobile styles */
    .track-list .container {
        padding: 0 15px;
        width: 100%;
    }

    .track-grid {
        gap: 1rem;
    }

    /* Track details mobile adjustments */
    .track-details {
        flex-direction: column;
        align-items: flex-start;
    }

    .track-actions {
        width: 100%;
        justify-content: center;
        margin-top: 0.5rem;
        display: flex;
        align-items: center;
    }

    .waveform-container {
        width: 100%;
        min-width: 0;
        margin: 0.5rem 0;
    }

    .track-title {
        width: 100%;
        min-width: 0;
    }

    /* Prevent horizontal scroll on the entire page */
    html, body {
        max-width: 100%;
        overflow-x: hidden;
    }

    /* Adjust track list container */
    .track-list {
        width: 100%;
        padding: 0;
        overflow: hidden;
    }


    /* Ensure all containers respect viewport width */
    .container {
        max-width: 100%;
        width: 100%;
        padding: 0 15px;
        box-sizing: border-box;
        overflow: hidden;
    }

    .volume-control {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 0 15px;
        gap: 15px;
    }

    .volume-wrapper {
        flex: 1;
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .tracks-counter {
        flex: 1;
        text-align: center;
        padding: 0;
        margin: 0;
    }

    .max-per-page-wrapper {
        flex: 1;
        margin: 0;
        display: flex;
        justify-content: flex-end;
    }

    .max-per-page-wrapper select {
        width: auto;
        min-width: 80px;
    }
}

/* Additional container adjustments for larger screens */
@media (min-width: 769px) and (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }
}
/* Adjust logo size for mobile */
@media (max-width: 768px) {
    .logo-image {
        height: 45px; /* Increased from 32px */
    }
}
@media (max-width: 768px) {
    .genre-section h1 {
        font-size: 2rem;
    }

    .genre-section p {
        font-size: 1rem;
    }
}
/* Медиа-запрос для мобильных устройств */
@media (max-width: 768px) {
    .nav-link.faq-nav {
        margin: 10px 0;
        text-align: center;
    }
}
/* Mobile styles */
@media (max-width: 768px) {
    .genre-section .col-12 {
        padding: 0 20px;
        text-align: center;
    }

    .track-list {
        padding: 0 15px;
    }

    .track {
        margin: 0 auto 1rem auto;
    }
}
/* Responsive styles */
@media (max-width: 768px) {
    .faq-category {
        padding: 1.5rem;
    }

    .faq-category h2 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .coverage-item {
        font-size: 1rem;
    }
}
/* Медиа-запрос для мобильных устройств */
@media (max-width: 768px) {
    .back-button-container {
        padding: 1.5rem 1rem;
    }
    
    .back-button {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
}
/* Обновляем стили для мобильной навигации */
@media (max-width: 768px) {
    .navbar-collapse {
        display: flex !important;
        flex-basis: auto;
        width: 100%;
    }

    .navbar-nav {
        flex-direction: column !important;
        align-items: stretch;
        justify-content: center;
        width: 100%;
        gap: 5px;
        padding: 0 15px;
    }

    .navbar-nav .nav-link {
        width: 100%;
        text-align: center;
        padding: 12px 0;
        margin: 0;
        font-size: 1rem;
    }

    .nav-link.social-nav {
        margin: 0;
        padding: 12px 0;
        font-size: 1rem;
    }

    .nav-link.faq-nav {
        margin: 0;
        padding: 12px 0;
        font-size: 1rem;
    }
}
@media (max-width: 768px) {
    .accordion-header {
        padding: 1rem;
    }

    .accordion-header h3 {
        font-size: 1rem;
    }

    .accordion-content {
        padding: 0 1rem;
    }

    .accordion-item.active .accordion-content {
        padding: 0 1rem 1rem;
    }
}

/* Обновляем стили для мобильной навигации */
@media (max-width: 768px) {
    .navbar-collapse {
        display: flex !important;
        flex-basis: auto;
    }

    .navbar-nav {
        flex-direction: column !important;
        align-items: center;
        justify-content: center;
        width: 100%;
        gap: 10px;
    }

    .navbar-nav .nav-link {
        width: 100%;
        text-align: center;
        padding: 10px 0;
        margin: 0;
    }

    .nav-link.social-nav {
        margin: 0;
        padding: 6px 15px;
        font-size: 0.8rem;
    }
}
/* Медиа-запрос для мобильных устройств */
@media (max-width: 768px) {
    .search-container {
        margin-top: 1rem;
        margin-bottom: 1rem;
        padding: 0 15px;
    }
    
    .search-box input {
        padding: 10px 40px;
        font-size: 0.9rem;
    }
}
/* Обновляем медиа-запрос */
@media (max-width: 768px) {
    .navbar-nav {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        width: 100%;
    }

    .navbar-nav .nav-link {
        width: 100%;
        text-align: center;
        padding: 10px 0;
        margin: 0;
    }

    .nav-link.social-nav {
        margin: 0;
        padding: 6px 15px;
        font-size: 0.8rem;
    }
}
.genre-section h1,
.genre-section p {
    transition: opacity 0.3s ease;
}

/* Add these classes for animation */
.fade-out {
    opacity: 0;
}

.fade-in {
    opacity: 1;
}

.genre-section .row {
    width: 100%;
}

.genre-section .col-12 {
    padding: 0 15px;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.genre-section h1 {
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.genre-section p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 0;
}



/* Стиль для ссылки на FAQ */
.faq-link {
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    padding: 2px 6px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.faq-link:hover {
    color: #fff;
    background: rgba(0, 0, 0, 0.4);
    text-decoration: none;
}

.highlight-version {
    color: #000;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.7);
    padding: 2px 8px;
    border-radius: 12px;
    font-style: italic;
}

.pagination-section {
    margin: 2rem 0;
    width: 100%;
}

.pagination-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.pagination-btn {
    padding: 0.5rem 1rem;
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pagination-btn:hover:not(:disabled) {
    background: rgba(255, 255, 255, 0.1);
}

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.page-info {
    color: #fff;
    font-size: 0.9rem;
}

/* Обновленные стили для навигации */
.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-nav {
    margin-left: auto; /* Выравнивание по правому краю */
}

/* Новые стили для FAQ в навигации */
.nav-link.faq-nav {
    background: linear-gradient(45deg, #ff69b4, #ff4081);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    margin-right: 10px;
}

.nav-link.faq-nav:hover {
    background: linear-gradient(45deg, #ff4081, #ff69b4);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 105, 180, 0.3);
    text-shadow: 0 2px 3px rgba(0, 0, 0, 0.3);
}

/* Медиа-запрос для мобильных устройств */
@media (max-width: 768px) {
    .nav-link.faq-nav {
        margin-right: 0; /* Убираем отступ на мобильных устройствах */
    }
}

/* Additional mobile optimizations */
@media (max-width: 480px) {
    .logo-image {
        height: 40px;
    }

    .track-thumbnail {
        width: 48px;
        height: 48px;
    }

    .pagination-controls {
        flex-direction: column;
        gap: 1rem;
    }

    .pagination-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Track list container styles */
.track-list {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
}

/* Genre section text alignment */
.genre-section .col-12 {
    padding: 0 15px;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}



/* FAQ Page Styles */
.faq-section {
    padding: 4rem 0;
    background-color: #121212;
    min-height: 100vh;
}

.faq-section h1 {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 0 auto;
    max-width: 1200px;
}

.faq-category {
    background: #ffffff;
    border-radius: 8px;
    padding: 2rem;
}

.faq-category h2 {
    color: #000000;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.coverage-section {
    margin-top: 1.5rem;
}

.coverage-title {
    color: #666666;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.coverage-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.coverage-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    color: #333333;
}

.coverage-item i.fa-times {
    color: #ff4444;
}

.coverage-item i.fa-check {
    color: #4CAF50;
}

.coverage-item .free-text {
    color: #ff4444;
    font-weight: 600;
}



/* Стили для заголовков функций */
.feature-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 0;
    margin-bottom: 0.5rem;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.feature-title {
    color: #000000;
    font-size: 1.1rem;
    font-weight: 500;
}

.check-icon {
    color: #4CAF50;
    font-size: 1.2rem;
}

/* Добавляем стиль для выделения "Totally FREE" */
.coverage-item .free-text {
    color: #ff4444;
    font-weight: 600;
}

/* Добавляем стиль для выделения "Monetization" */
.coverage-item .monetization-text {
    color: inherit;
    font-weight: normal;
}

/* Стили для кнопки назад */
.back-button-container {
    padding: 2rem 0;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.back-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #ffffff;
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.back-button:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    transform: translateX(-5px);
}

.back-button i {
    font-size: 1.1rem;
}



/* Стили для кнопки назад в навигации */
.nav-link.back-nav {
    background: linear-gradient(45deg, #666666, #444444);
    padding: 8px 20px;
    border-radius: 20px;
    margin-right: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-link.back-nav:hover {
    background: linear-gradient(45deg, #444444, #666666);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.nav-link.back-nav i {
    font-size: 0.9rem;
}



/* License Types Section */
.license-types-section {
    padding: 4rem 0;
    background: #121212;
}

.license-grid {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 15px;
    margin: 20px 0;
    flex-wrap: nowrap;
}

.license-card {
    flex: 1;
    min-width: 0;
    background: #ffffff;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    position: relative;
}

.best-value {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(45deg, #ff69b4, #ff4081);
    color: #ffffff;
    padding: 4px 16px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.license-card h2 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #000000;
}

.license-description {
    font-size: 0.85rem;
    color: #333333;
    margin-bottom: 15px;
}

.user-limit {
    font-size: 0.8rem;
    color: #333333;
    margin-bottom: 15px;
}

.coverage-item {
    font-size: 0.8rem;
    margin-bottom: 8px;
    color: #333333;
}

.coverage-item span {
    font-size: 0.8rem;
    color: #333333;
}

/* FAQ Accordion Section */
.faq-accordion-section {
    padding: 4rem 0;
    background: #121212;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 2rem;
}

.accordion-container {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.accordion-header {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.accordion-header h3 {
    color: #ffffff;
    font-size: 1.1rem;
    margin: 0;
}

.accordion-header i {
    color: #666666;
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-header i {
    transform: rotate(45deg);
}

.accordion-content {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item.active .accordion-content {
    padding: 0 1.5rem 1.5rem;
    max-height: 800px;
}

.accordion-content p {
    color: #cccccc;
    margin: 0;
    line-height: 1.6;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .license-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .license-description {
        min-height: auto;
    }
}



/* Стили для выделения типов использования в FAQ */
.license-type-highlight {
    font-weight: 600;
    color: #ff69b4;
    font-size: 1.1rem;
}

/* Добавляем стиль для подчеркнутых слов в FAQ */
.license-name-highlight {
    text-decoration: underline;
    font-weight: 500;
}

/* Стиль для иконки цены в карточках лицензий */
.license-price-icon {
    color: #666666;
    font-size: 0.8em;
    margin-left: 0.5rem;
    vertical-align: super;
}

/* Остальные стили для инлайновой иконки остаются без изменений */
.license-price-icon.inline-icon {
    color: inherit;
    font-size: 1em;
    margin: 0 2px;
    vertical-align: baseline;
}

/* Стиль для блока с информацией о музыке */
.music-credit-block {
    background: rgba(255, 255, 255, 0.05);
    border-left: 3px solid #ff69b4;
    padding: 15px;
    margin: 15px 0;
    border-radius: 4px;
}

.music-credit-line {
    color: #fff;
    font-family: monospace;
    font-size: 0.95rem;
    margin: 5px 0;
}

.music-credit-link {
    color: #ff69b4;
    text-decoration: none;
}

.music-credit-link:hover {
    text-decoration: underline;
}

/* Стили для блока с уведомлением об авторских правах */
.copyright-notice-block {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 20px;
    margin: 15px 0;
}

.copyright-notice-block p {
    margin-bottom: 15px;
}

.copyright-notice-block p:last-child {
    margin-bottom: 0;
}

.notice-highlight {
    color: #ff69b4;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 5px;
}

/* Стили для блока с информацией о фестивалях */
.festival-notice-block {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 20px;
    margin: 15px 0;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.festival-notice-block p {
    margin: 0;
    line-height: 1.6;
}

.notice-icon {
    color: #ff69b4;
    font-size: 1.2rem;
    margin-right: 10px;
}



/* Стили для социальных кнопок */
.nav-link.social-nav {
    background: linear-gradient(45deg, #333333, #444444);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 5px; /* Добавляем отступы для PC версии */
}

.nav-link.youtube-nav:hover {
    background: linear-gradient(45deg, #ff0000, #cc0000);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
}

.nav-link.spotify-nav:hover {
    background: linear-gradient(45deg, #1DB954, #1ed760);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(29, 185, 84, 0.3);
}

.nav-link.social-nav i {
    font-size: 1.1rem;
}

/* Медиа-запрос для мобильных устройств */
@media (max-width: 768px) {
    .nav-link.social-nav {
        margin: 0; /* Убираем отступы для мобильной версии */
    }
}

/* Обновляем стили для поиска */
.search-container {
    margin-top: 2rem;
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}




.search-box {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.search-box input {
    width: 100%;
    padding: 12px 45px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.search-box input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.search-box input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.search-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.1rem;
}



/* Добавляем стили для кнопки сброса */
.search-clear {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    padding: 0;
    font-size: 1.1rem;
    display: none; /* По умолчанию скрыта */
    transition: color 0.3s ease;
}

.search-clear:hover {
    color: rgba(255, 255, 255, 0.8);
}

/* Обновляем стиль для input, чтобы учесть кнопку сброса */
.search-box input {
    padding-right: 45px; /* Увеличиваем правый отступ */
}

/* СТИЛЬ ДЛЯ FEATURED TRACK */
.featured-track {
    padding: 1rem 0;
    background: rgba(255, 105, 180, 0.1);
    margin-bottom: 1.5rem;
}

.featured-track h2 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: linear-gradient(45deg, #ff69b4, #ff4081);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.featured-track .track {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 105, 180, 0.3);
    box-shadow: 0 4px 15px rgba(255, 105, 180, 0.1);
}



/* Waveform container */
.waveform-container {
    width: 100%;
    min-width: 200px;
    overflow: hidden;
}



/* Mobile styles */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
        width: 100%;
        box-sizing: border-box;
        overflow-x: hidden;
    }

    body {
        overflow-x: hidden;
        width: 100%;
    }

    .track {
        padding: 0.75rem;
        margin: 0 0 1rem 0;
        width: 100%;
    }

    .track-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .track-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .track-details {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
    }

    .track-actions {
        width: 100%;
        justify-content: center;
        margin-top: 0.5rem;
        display: flex;
        align-items: center;
    }

    .waveform-container {
        width: 100%;
        min-width: 0;
        margin: 0.5rem 0;
    }

    .track-title {
        width: 100%;
        min-width: 0;
    }

    /* Prevent horizontal scroll on the entire page */
    html, body {
        max-width: 100%;
        overflow-x: hidden;
    }

    /* Adjust track list container */
    .track-list {
        width: 100%;
        padding: 0;
        overflow: hidden;
    }


    /* Ensure all containers respect viewport width */
    .container {
        max-width: 100%;
        width: 100%;
        padding: 0 15px;
        box-sizing: border-box;
        overflow: hidden;
    }
}

/* Ensure waveform stays within bounds */
wave {
    max-width: 100%;
    overflow: hidden;
}

/* Base styles for subscription button - hidden by default */
.show-subscription-btn {
    display: none; /* По умолчанию кнопка скрыта */
}

/* Show subscription button only on mobile phones */
@media (max-width: 767px) {
    .show-subscription-btn {
        display: block;
        position: fixed;
        bottom: 20px;
        right: 20px;
        z-index: 1000;
        width: auto;
        min-width: auto;
        transform: none !important;
    }
}

/* Ensure button stays hidden on tablets and desktop */
@media (min-width: 768px) {
    .show-subscription-btn {
        display: none !important;
    }
}

/* Download page styles */
.download-section {
    max-width: 800px;
    margin: 50px auto;
    padding: 30px;
    text-align: center;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.download-section h1 {
    color: #63a166;
    margin-bottom: 30px;
}

.payment-section {
    margin: 30px 0;
}

.payment-section p {
    margin-bottom: 20px;
    color: #666;
}

.download-btn {
    display: inline-block;
    padding: 15px 30px;
    background: #4CAF50;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 18px;
    transition: background 0.3s ease;
}

.download-btn:hover {
    background: #45a049;
}

.download-btn i {
    margin-right: 10px;
}

#paypal-container-QKRVT89GVP7E4 {
    margin: 20px 0;
}

.license-btn {
    background: linear-gradient(45deg, #ff69b4, #ff4081);
    border-radius: 4px;
    color: white;
    transition: all 0.3s ease;
}

.license-btn:hover {
    background: linear-gradient(45deg, #ff4081, #ff69b4);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 105, 180, 0.3);
}

.license-btn i {
    color: white;
}
.loop-icon {
    color: #ff9800;
    font-size: 14px;
    margin-left: 10px;
    vertical-align: middle;
    display: inline-block;
}

/* Анимация вращения иконки Loop */
.animated-loop i {
    animation: spin 2s linear infinite;
    display: inline-block;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.footer-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.footer-buttons a {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    background: #ff69b4;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.footer-buttons a:hover {
    background: #ff4da6;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 105, 180, 0.3);
}

.footer-buttons a i {
    margin-right: 8px;
}

@media (max-width: 768px) {
    .footer-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .footer-buttons a {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
}

/* Медиа-запрос для мобильных устройств */
@media (max-width: 768px) {
    .license-grid {
        flex-direction: column;
        gap: 20px;
    }

    .license-card {
        width: 100%;
        margin-bottom: 20px;
    }
}

.max-per-page-wrapper {
    margin-left: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.max-per-page-wrapper select {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
   
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffffff' d='M6 8L2 4h8z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    
}

.max-per-page-wrapper select:hover {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.max-per-page-wrapper select:focus {
    outline: none;
    border-color: #ff69b4;
    box-shadow: 0 0 0 2px rgba(255, 105, 180, 0.25);
}

.max-per-page-wrapper select option {
    background-color: #1a1a1a;
    color: #fff;
    padding: 8px;
}

/* Scroll to Top Button */
.scroll-to-top-btn {
    position: fixed;
    right: 20px;
    bottom: 50%;
    transform: translateY(50%);
    
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(255, 105, 180, 0.3);
    opacity: 0.9;
}

.scroll-to-top-btn:hover {
    opacity: 1;
    transform: translateY(50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 105, 180, 0.4);
}

.scroll-to-top-btn.visible {
    display: flex;
}

@media (max-width: 768px) {
    .scroll-to-top-btn {
        right: 15px;
        width: 35px;
        height: 35px;
        font-size: 14px;
        bottom: 50%; /* Center vertically */
        transform: translateY(50%); /* Center vertically */
    }

    .scroll-to-top-btn:hover {
        transform: translateY(50%) scale(1.1); /* Maintain vertical centering while scaling */
    }
}





