/* Стили для страницы релиза */
.release-page {
    padding: 120px 0 60px;
    background: linear-gradient(to bottom, rgba(10,10,10,0.95), rgba(10,10,10,0.8));
}

.release-header {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.release-cover {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(138, 43, 226, 0.2);
}

.release-cover img {
    width: 100%;
    height: auto;
    display: block;
}

.release-type {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(138, 43, 226, 0.2);
    border: 1px solid #8A2BE2;
    border-radius: 4px;
    font-size: 14px;
    color: #8A2BE2;
    margin-bottom: 20px;
}

.release-details h1 {
    font-size: 48px;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #fff, #8A2BE2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.release-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.6);
}

.streaming-platforms {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.platform-btn {
    padding: 12px 24px;
    border-radius: 8px;
    background: rgba(138, 43, 226, 0.1);
    border: 1px solid rgba(138, 43, 226, 0.3);
    color: white;
    transition: all 0.3s ease;
}

.platform-btn:hover {
    background: rgba(138, 43, 226, 0.2);
    transform: translateY(-2px);
}

.tracklist {
    margin-bottom: 60px;
}

.track-item {
    display: flex;
    align-items: center;
    padding: 15px;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.track-item:hover {
    background: rgba(138, 43, 226, 0.1);
}

.track-number {
    width: 30px;
    color: rgba(255, 255, 255, 0.4);
}

.track-title {
    flex: 1;
}

.track-duration {
    color: rgba(255, 255, 255, 0.4);
}

/* Пагинация */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.pagination a, .pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(138, 43, 226, 0.1);
    color: white;
    transition: all 0.3s ease;
}

.pagination a:hover,
.pagination a.active {
    background: rgba(138, 43, 226, 0.3);
    transform: translateY(-2px);
}

/* Адаптивность */
@media (max-width: 1024px) {
    .release-header {
        grid-template-columns: 300px 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .release-header {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .release-cover {
        max-width: 300px;
        margin: 0 auto;
    }

    .streaming-platforms {
        justify-content: center;
    }

    .release-meta {
        justify-content: center;
        flex-wrap: wrap;
    }
} 