.all-releases {
    padding: 120px 0 60px;
    background: #0A0A0A;
}

.page-title {
    font-size: 48px;
    text-align: left;
    margin-bottom: 40px;
    margin-left: 20px;
    background: linear-gradient(90deg, #fff, #8A2BE2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Фильтры */
.releases-filter {
    display: flex;
    justify-content: flex-start;
    gap: 15px;
    margin-bottom: 60px;
    margin-left: 20px;
}

.filter-btn {
    padding: 10px 20px;
    background: rgba(138, 43, 226, 0.1);
    border: 1px solid rgba(138, 43, 226, 0.3);
    border-radius: 30px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: rgba(138, 43, 226, 0.3);
    transform: translateY(-2px);
}

/* Секции релизов */
.release-section {
    margin-bottom: 80px;
}

.section-title {
    font-size: 24px;
    margin-bottom: 30px;
    margin-left: 20px;
    color: rgba(255, 255, 255, 0.8);
    text-align: left;
}

/* Карточки релизов */
.releases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.release-card {
    background: rgba(138, 43, 226, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.release-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(138, 43, 226, 0.2);
}

.release-image {
    position: relative;
    padding-bottom: 100%;
    background: linear-gradient(45deg, #8A2BE2, #4B0082);
}

.release-type {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 4px 8px;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 4px;
    font-size: 12px;
    color: white;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 60px;
    height: 60px;
    background: rgba(138, 43, 226, 0.9);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s ease;
}

.release-card:hover .play-btn {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.release-info {
    padding: 20px;
}

.release-info h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: white;
}

.release-info p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 15px;
}

/* Стриминговые платформы */
.streaming-links {
    display: flex;
    gap: 15px;
}

.stream-link {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 14px;
    transition: all 0.3s ease;
}

.stream-link:hover {
    background: rgba(138, 43, 226, 0.3);
    transform: translateY(-2px);
}

.stream-link.vk {
    background: rgba(76, 117, 163, 0.2);
}

.stream-link.youtube {
    background: rgba(255, 0, 0, 0.2);
}

.stream-link.soundcloud {
    background: rgba(255, 85, 0, 0.2);
}

/* Адаптивность */
@media (max-width: 768px) {
    .page-title {
        font-size: 36px;
        margin-left: 15px;
    }

    .releases-filter {
        margin-left: 15px;
    }

    .section-title {
        margin-left: 15px;
    }

    .releases-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 28px;
        margin-left: 10px;
    }

    .releases-filter {
        margin-left: 10px;
    }

    .section-title {
        margin-left: 10px;
    }

    .release-info h3 {
        font-size: 16px;
    }
} 