/**
 * Release Page Styles for WowPlatter plugin.
 *
 * @package    WowPlatter
 * @subpackage WowPlatter/public/css
 */

/* Release Page Layout */
.wowplatter-release-page {
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 1rem 0;
}

/* Bootstrap Grid System Implementation */
.wowplatter-release-page .container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
    max-width: 1140px;
}

.wowplatter-release-page .row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.wowplatter-release-page [class*="col-"] {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
}

/* Bootstrap Column Classes */
.wowplatter-release-page .col-12 {
    flex: 0 0 100%;
    max-width: 100%;
}

/* Large screens (≥992px) */
@media (min-width: 992px) {
    .wowplatter-release-page .col-lg-4 {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
    
    .wowplatter-release-page .col-lg-8 {
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
    }
}

/* Bootstrap Utility Classes */
.wowplatter-release-page .mb-4 {
    margin-bottom: 1.5rem !important;
}

.wowplatter-release-page .d-flex {
    display: flex !important;
}

.wowplatter-release-page .justify-content-between {
    justify-content: space-between !important;
}

.wowplatter-release-page .align-items-center {
    align-items: center !important;
}

.wowplatter-release-page .text-center {
    text-align: center !important;
}

.wowplatter-release-page .text-muted {
    color: #6c757d !important;
}

.wowplatter-release-page .display-4 {
    font-size: 2.5rem;
    font-weight: 300;
    line-height: 1.2;
}

/* Navigation Buttons */
.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: #fff;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
    color: #fff;
    text-decoration: none;
}

.btn-outline-primary {
    background-color: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    padding: 8px 18px;
    border-radius: 25px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.btn-outline-primary:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
}

/* Release Image Container */
.wowplatter-release-image-container {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    height: fit-content;
    position: sticky;
    top: 20px;
    transition: all 0.3s ease;
}

.wowplatter-release-image-container:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/* Image Gallery Optimization for Narrower Column */
.wowplatter-image-gallery {
    margin-top: 1rem;
}

.wowplatter-image-gallery .row {
    margin: 0;
}

.wowplatter-image-gallery .col-auto {
    padding: 0.25rem;
    flex: 0 0 auto;
    width: auto;
}

.wowplatter-gallery-thumb {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.wowplatter-gallery-thumb:hover {
    transform: scale(1.05);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.wowplatter-release-main-image {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.wowplatter-thumb-image {
    border-radius: 4px;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.wowplatter-thumb-image:hover {
    transform: scale(1.05);
}

.wowplatter-no-main-image {
    padding: 3rem 1rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    text-align: center;
}

/* Release Info */
.wowplatter-release-info {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    height: fit-content;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.wowplatter-release-info:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.wowplatter-release-title {
    color: #2d3748;
    font-weight: 700;
    font-size: 2.2rem;
    line-height: 1.3;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.wowplatter-artist-title-header {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.wowplatter-artist-title-header h1 {
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 0;
}

.wowplatter-release-meta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.wowplatter-release-meta p {
    font-size: 1rem;
    margin-bottom: 0;
    padding: 0.75rem;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 8px;
    border-left: 4px solid #667eea;
    transition: all 0.2s ease;
}

.wowplatter-release-meta p:hover {
    background: rgba(102, 126, 234, 0.15);
    transform: translateX(2px);
}

.wowplatter-release-meta a {
    color: #667eea;
    font-weight: 600;
    text-decoration: none;
}

.wowplatter-release-meta a:hover {
    color: #5a6fd8;
    text-decoration: underline;
}

/* Card Elements */
.card {
    border: none;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.card-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 1rem 1.5rem;
    font-weight: 600;
    font-size: 1rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    border-radius: 15px 15px 0 0;
    border-bottom: none;
}

.card-body {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.98);
}

/* Tracklist */
.wowplatter-tracklist {
    list-style: none;
    padding: 0;
    margin: 0;
}

.wowplatter-tracklist li {
    padding: 1rem;
    margin-bottom: 0.5rem;
    background: rgba(102, 126, 234, 0.05);
    border-radius: 10px;
    border-left: 4px solid #667eea;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.2s ease;
}

.wowplatter-tracklist li:hover {
    background: rgba(102, 126, 234, 0.1);
    transform: translateX(4px);
}

.wowplatter-tracklist li:last-child {
    margin-bottom: 0;
}

.wowplatter-track-position {
    font-weight: 700;
    color: #667eea;
    min-width: 40px;
    font-size: 0.9rem;
}

.wowplatter-track-title {
    flex: 1;
    margin-left: 1rem;
    font-weight: 500;
    color: #2d3748;
}

.wowplatter-track-duration {
    color: #667eea;
    font-size: 0.9rem;
    font-weight: 600;
}

.wowplatter-tracklist table th {
    background-color: #f8f9fa;
    border-top: none;
}

/* Credits */
.wowplatter-credits {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.75rem;
}

.wowplatter-credits li {
    padding: 0.75rem;
    background: rgba(102, 126, 234, 0.05);
    border-radius: 8px;
    border-left: 3px solid #667eea;
    transition: all 0.2s ease;
}

.wowplatter-credits li:hover {
    background: rgba(102, 126, 234, 0.1);
    transform: translateX(2px);
}

.wowplatter-credit-role {
    font-weight: 700;
    color: #667eea;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.wowplatter-credit-name {
    margin-left: 0.5rem;
    color: #2d3748;
    font-weight: 500;
}

/* Companies */
.wowplatter-companies {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.75rem;
}

.wowplatter-companies li {
    padding: 0.75rem;
    background: rgba(102, 126, 234, 0.05);
    border-radius: 8px;
    border-left: 3px solid #667eea;
    transition: all 0.2s ease;
}

.wowplatter-companies li:hover {
    background: rgba(102, 126, 234, 0.1);
    transform: translateX(2px);
}

.wowplatter-company-role {
    font-weight: 700;
    color: #667eea;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.wowplatter-company-name {
    margin-left: 0.5rem;
    color: #2d3748;
    font-weight: 500;
}

/* Credits and Companies Headers */
.wowplatter-credits h6,
.wowplatter-companies h6 {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* Reviews */
.wowplatter-reviews {
    margin-top: 1.5rem;
}

.wowplatter-review {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-left: 4px solid #667eea;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.wowplatter-review:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.wowplatter-review-rating {
    color: #ffc107;
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.wowplatter-review-text {
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.6;
    color: #4a5568;
}

.wowplatter-review-author {
    font-weight: 600;
    color: #667eea;
    text-align: right;
    font-size: 0.9rem;
}

.review-item:last-child {
    border-bottom: none !important;
}

.rating {
    font-size: 0.9rem;
}

/* Recommendations */
.wowplatter-recommendations {
    margin-top: 1.5rem;
}

.wowplatter-recommendation {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 1.25rem;
    margin-bottom: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.wowplatter-recommendation:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.wowplatter-recommendation img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 8px;
    margin-right: 1.25rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.wowplatter-recommendation-info {
    flex: 1;
}

.wowplatter-recommendation-title {
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.wowplatter-recommendation-artist {
    color: #667eea;
    font-size: 0.9rem;
    font-weight: 500;
}

.wowplatter-rec-image {
    height: 200px;
    object-fit: cover;
    border-radius: 8px 8px 0 0;
}

.wowplatter-no-rec-image {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa;
    border-radius: 8px 8px 0 0;
}

/* Videos */
.wowplatter-video-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    margin-bottom: 1.5rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.wowplatter-video-container:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.wowplatter-video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 13px;
}

.video-container iframe {
    border-radius: 8px;
}

/* Buttons */
.btn-outline-primary {
    border-color: #667eea;
    color: #667eea;
}

.btn-outline-primary:hover {
    background-color: #667eea;
    border-color: #667eea;
}

.btn-outline-danger {
    border-color: #dc3545;
    color: #dc3545;
}

.btn-outline-danger:hover {
    background-color: #dc3545;
    border-color: #dc3545;
}

.btn-primary {
    background-color: #667eea;
    border-color: #667eea;
}

.btn-primary:hover {
    background-color: #5a6fd8;
    border-color: #5a6fd8;
}

.btn-success {
    background-color: #28a745;
    border-color: #28a745;
}

/* Available Copies Section - Left Column */
.wowplatter-available-copies-section {
    width: 100%;
    margin-top: 1.5rem;
    margin-bottom: 0;
}

.available-copies-header {
    background: #667eea;
    color: white;
    padding: 12px 20px;
    border-radius: 8px 8px 0 0;
    border: 1px solid #ccd0d4;
    border-bottom: none;
}

.available-copies-header h4 {
    margin: 0;
    font-weight: 500;
    font-size: 15px;
}

.available-copies-content {
    background: #fff;
    border: 1px solid #ccd0d4;
    border-top: none;
    border-radius: 0 0 8px 8px;
    padding: 15px;
}

.available-copy-row {
    display: flex;
    align-items: flex-start;
    padding: 12px 0;
    border-bottom: 1px solid #f1f1f1;
    gap: 12px;
    flex-wrap: wrap;
}

.available-copy-row:last-child {
    border-bottom: none;
}

.copy-actions {
    flex: 0 0 auto;
    order: 1;
}

.copy-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
    order: 2;
    min-width: 0;
}

.copy-price {
    flex: 0 0 auto;
    order: 3;
    text-align: right;
}

.condition-badges {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.condition-badge {
    background-color: #e9ecef;
    padding: 3px 6px;
    border-radius: 4px;
    font-size: 0.8rem;
    color: #495057;
    font-weight: 500;
}

.condition-badge.sleeve {
    background-color: #d1ecf1;
    color: #0c5460;
}

.condition-badge.media {
    background-color: #d4edda;
    color: #155724;
}

.copy-notes {
    color: #666;
    font-style: italic;
}

.price-amount {
    font-size: 1.1rem;
    font-weight: 700;
    color: #28a745;
}

.no-copies-available {
    display: flex;
    align-items: center;
    padding: 15px 0;
    gap: 12px;
    flex-wrap: wrap;
}

.no-copies-message {
    flex: 1;
    color: #6c757d;
    font-style: italic;
    font-size: 0.9rem;
}

.add-to-wantlist {
    border-color: #667eea;
    color: #667eea;
    font-weight: 500;
}

.add-to-wantlist:hover {
    background-color: #667eea;
    border-color: #667eea;
    color: white;
}

/* WordPress-style Tab Navigation - Full Width */
.nav-tab-wrapper {
    border-bottom: 1px solid #ccd0d4;
    margin-bottom: 0;
    padding: 0;
    background: #f1f1f1;
    border-radius: 8px 8px 0 0;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.nav-tab {
    background: #f1f1f1;
    border: 1px solid #ccd0d4;
    border-bottom: none;
    color: #555;
    text-decoration: none;
    padding: 15px 25px;
    margin-right: 2px;
    border-radius: 4px 4px 0 0;
    transition: all 0.2s ease;
    display: inline-block;
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
}

.nav-tab:hover {
    background: #e8e8e8;
    color: #333;
    text-decoration: none;
}

.nav-tab-active {
    background: #667eea !important;
    border-bottom: 1px solid #667eea !important;
    color: #fff !important;
    margin-bottom: -1px;
    position: relative;
    z-index: 1;
}

.tab-content-container {
    width: 100%;
    background: #fff;
    border: 1px solid #ccd0d4;
    border-top: none;
    border-radius: 0 0 8px 8px;
}

.tab-content {
    background: #fff;
    padding: 30px;
    width: 100%;
    display: none;
}

.tab-content:first-child {
    display: block;
}

/* Tab Navigation */
.nav-tabs {
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 1.5rem;
}

.nav-tabs .nav-link {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.8);
    border-radius: 10px 10px 0 0;
    margin-right: 0.25rem;
    padding: 0.75rem 1.25rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-tabs .nav-link:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.3);
}

.nav-tabs .nav-link.active {
    background: rgba(255, 255, 255, 0.95);
    color: #667eea;
    border-color: rgba(255, 255, 255, 0.5);
    border-bottom-color: rgba(255, 255, 255, 0.95);
}

.tab-content {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 0 15px 15px 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Mobile Responsive */
@media (max-width: 991.98px) {
    /* Reset sticky positioning on mobile */
    .wowplatter-release-page .wowplatter-release-image-container {
        position: static;
        margin-bottom: 1rem;
    }
    
    /* Stack columns on mobile */
    .wowplatter-release-page .col-lg-8,
    .wowplatter-release-page .col-lg-4 {
        flex: 0 0 100%;
        max-width: 100%;
        order: initial;
    }
    
    /* Image gallery adjustments for mobile */
    .wowplatter-image-gallery .col-auto {
        flex: 0 0 auto;
        width: auto;
        padding: 0.2rem;
    }
    
    .wowplatter-gallery-thumb {
        width: 60px;
        height: 60px;
    }
    
    .available-copy-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .copy-actions {
        flex: none;
        margin-right: 0;
        width: 100%;
    }
    
    .copy-details {
        width: 100%;
    }
    
    .copy-price {
        flex: none;
        text-align: left;
        width: 100%;
    }
    
    .condition-badges {
        flex-direction: column;
        gap: 5px;
    }
    
    .no-copies-available {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .no-copies-message {
        margin-left: 0;
        width: 100%;
    }
    
    .wowplatter-release-title {
        font-size: 2rem;
    }
    
    .wowplatter-release-info {
        margin-top: 1rem;
    }
    
    .d-flex.gap-3 {
        flex-direction: column;
        gap: 1rem !important;
    }
    
    .nav-tab {
        padding: 10px 12px;
        font-size: 0.9rem;
    }
    
    .available-copies-header {
        padding: 12px 15px;
    }
    
    .available-copies-content {
        padding: 15px;
    }
}

/* Streaming Players Styles */
.streaming-players-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.streaming-player {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.streaming-player:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.streaming-player h4 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.streaming-player h4 i {
    font-size: 1.2rem;
}

/* Platform-specific colors */
.spotify-player h4 {
    color: #1DB954;
}

.apple-player h4 {
    color: #FA243C;
}

.tidal-player h4 {
    color: #00FFFF;
}

.deezer-player h4 {
    color: #FF6600;
}

.amazon-player h4 {
    color: #FF9900;
}

/* Streaming embeds and links */
.streaming-embed {
    width: 100%;
    border-radius: 8px;
    border: none;
    background: rgba(0, 0, 0, 0.1);
}

.streaming-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.streaming-link:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

/* Platform-specific link hover colors */
.spotify-player .streaming-link:hover {
    background: rgba(29, 185, 84, 0.2);
    border-color: #1DB954;
}

.apple-player .streaming-link:hover {
    background: rgba(250, 36, 60, 0.2);
    border-color: #FA243C;
}

.tidal-player .streaming-link:hover {
    background: rgba(0, 255, 255, 0.2);
    border-color: #00FFFF;
}

.deezer-player .streaming-link:hover {
    background: rgba(255, 102, 0, 0.2);
    border-color: #FF6600;
}

.amazon-player .streaming-link:hover {
    background: rgba(255, 153, 0, 0.2);
    border-color: #FF9900;
}

@media (max-width: 768px) {
    .wowplatter-release-page {
        padding: 0.5rem 0;
    }
    
    .wowplatter-release-title {
        font-size: 1.8rem;
    }
    
    .wowplatter-artist-title-header {
        padding: 1.5rem;
    }
    
    .wowplatter-release-image-container {
        position: static;
        margin-bottom: 1.5rem;
        padding: 1rem;
    }
    
    .wowplatter-main-image {
        max-width: 200px;
    }
    
    .wowplatter-thumbnail-images {
        justify-content: center;
    }
    
    .wowplatter-release-meta {
        grid-template-columns: 1fr;
    }
    
    .tab-content {
        padding: 1.5rem;
    }
    
    .nav-tabs .nav-link {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    /* Mobile streaming players */
    .streaming-players-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .streaming-player {
        padding: 1rem;
    }
    
    .streaming-player h4 {
        font-size: 1rem;
    }
}