/* Large breakpoint styles (<1200px) */
@media (max-width: 1200px) {
    /* AdminSongManagement container */
    #grid-container {
        width: 100%;
        height: calc(100vh - 9rem);
    }

    /* SongPlayer - Container adjustments for large screens */
    .song-player-container {
        grid-template-rows: 1fr 88px;
    }

    .song-player-container .song-header {
        padding: 24px;
    }

    .song-player-container .player-bar {
        padding: 14px 24px;
        gap: 8px;
    }

    /* AlbumPlayer - Container adjustments for large screens */
    .album-player-spotify-container {
        grid-template-rows: auto auto auto 1fr 88px;
    }

    .album-player-spotify-container .album-image-title-row {
        padding: 0px 24px;
    }

    .album-player-spotify-container .action-buttons-row {
        padding: 8px 24px;
    }

    .album-player-spotify-container .status-info-row {
        padding: 8px 24px;
    }

    .album-player-spotify-container .player-bar {
        padding: 14px 24px;
        gap: 8px;
    }

    /* AlbumPlayer - Player controls layout for large screens */
    .album-player-spotify-container .controls-wrapper {
        gap: 8px;
        margin-bottom: 8px;
        max-width: 600px;
    }

    .album-player-spotify-container .time-spacer {
        min-width: 40px;
    }

    .album-player-spotify-container .player-controls-row {
        gap: 16px;
    }

    .album-player-spotify-container .player-controls {
        gap: 16px;
    }

    .album-player-spotify-container .volume-controls {
        gap: 8px;
    }

    .album-player-spotify-container .control-button {
        width: 32px;
        height: 32px;
    }

    .album-player-spotify-container .control-icon {
        width: 16px;
        height: 16px;
    }

    .album-player-spotify-container .play-button-small {
        width: 32px;
        height: 32px;
    }

    .album-player-spotify-container .play-icon-small {
        width: 16px;
        height: 16px;
    }

    .album-player-spotify-container .progress-container {
        gap: 8px;
        max-width: 600px;
    }

    .album-player-spotify-container .time-display {
        min-width: 40px;
        font-size: 11px;
    }

    .album-player-spotify-container .volume-bar-container {
        width: 100px;
    }

    .album-art {
        width: 130px;
        object-fit: cover;
        border-radius: 4px;
    }

    .title-container {
        display: flex;
        flex-direction: row;
        align-items: center;
    }

    .song-title {
        font-size: 70px;
        font-weight: 800;
        line-height: 1;
        margin: 0 15px 0 15px;
        padding: 0;
    }

    .track-list thead {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .track-list th {
        font-size: 12px;
        font-weight: 400;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        padding: 8px 16px;
        text-align: left;
    }

        .track-list th.track-number {
            width: 50px;
            text-align: center;
        }

        .track-list th.track-image {
            width: 60px;
            padding-left: 0;
            padding-right: 0;
        }

        .track-list th.track-duration {
            width: 80px;
            text-align: right;
        }

        .track-list th.track-actions {
            width: 50px;
        }

    .track-row {
        border-radius: 4px;
        cursor: pointer;
        transition: background-color 0.2s ease;
    }

        .track-row:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }

        .track-row.current-track {
            background-color: rgba(29, 185, 84, 0.2);
        }

        .track-row td {
            padding: 12px 16px;
        }

            .track-row td.track-number {
                text-align: center;
                position: relative;
            }

    .track-index {
        display: inline;
    }

    .track-play-btn {
        display: none;
        background: none;
        border: none;
        color: #fff;
        cursor: pointer;
        padding: 0;
        width: 16px;
        height: 16px;
    }

        .track-play-btn svg {
            width: 16px;
            height: 16px;
        }

    .track-row:hover .track-index {
        display: none;
    }

    .track-row:hover .track-play-btn {
        display: inline;
    }

    .track-row.current-track .track-index {
        display: none;
    }

    /* Playing Indicator */
    .playing-indicator {
        display: flex;
        align-items: flex-end;
        justify-content: center;
        gap: 2px;
        height: 16px;
    }

        .playing-indicator span {
            width: 3px;
            background-color: #1db954;
            border-radius: 1px;
            animation: soundBars 0.5s ease infinite alternate;
        }

            .playing-indicator span:nth-child(1) {
                height: 60%;
                animation-delay: 0s;
            }

            .playing-indicator span:nth-child(2) {
                height: 100%;
                animation-delay: 0.1s;
            }

            .playing-indicator span:nth-child(3) {
                height: 40%;
                animation-delay: 0.2s;
            }

    @keyframes soundBars {
        0% {
            height: 20%;
        }

        100% {
            height: 100%;
        }
    }

    .track-image {
        padding: 8px !important;
    }

    .track-thumbnail {
        width: 40px;
        height: 40px;
        object-fit: cover;
        border-radius: 2px;
    }

    .track-thumbnail-placeholder {
        width: 40px;
        height: 40px;
        background: #282828;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 2px;
    }

        .track-thumbnail-placeholder svg {
            width: 24px;
            height: 24px;
            fill: #b3b3b3;
        }

    /* Stream Count on Card */
    .card-stream-count {
        display: flex;
        align-items: center;
        gap: 4px;
        color: #b3b3b3;
        font-size: 12px;
        margin-bottom: 8px;
    }

    .stream-icon {
        width: 12px;
        height: 12px;
        fill: currentColor;
    }

    /* Featured Music Carousel - LG breakpoint: show ~4.2 cards */
    .featured-music-carousel {
        gap: 20px;
        padding-right: 20px;
    }

    .featured-music-carousel .music-card {
        /* 4.2 cards visible: 100vw / 4.2 ≈ 23.8vw per card */
        width: calc(100vw / 4.2 - 24px);
        min-width: 200px;
    }

    .home-container {
        padding: 2rem;
        max-width: 1200px;
        margin: 0 auto;
    }

    /* Hero Section - LG Breakpoint */
    .hero-section {
        gap: 2rem;
        padding: 2rem 0;
    }

    .hero-title {
        font-size: 3.5rem;
        margin-bottom: 1.25rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
        max-width: 450px;
        margin-bottom: 1.75rem;
    }

    .hero-cta {
        gap: 1rem;
    }

    .cta-primary,
    .cta-secondary {
        padding: 12px 28px;
        font-size: 1rem;
    }

    .cta-large {
        padding: 14px 40px;
        font-size: 1rem;
    }

    .hero-animation {
        width: 260px;
        height: 260px;
    }

    /* Features Section - LG Breakpoint */
    .features-section {
        padding: 3rem 0;
    }

    .features-section .section-title {
        font-size: 2.25rem;
        margin-bottom: 2.5rem;
    }

    .features-grid {
        gap: 1.5rem;
    }

    .feature-card {
        padding: 1.75rem;
    }

    .feature-icon {
        width: 72px;
        height: 72px;
        margin-bottom: 1.25rem;
    }

    .feature-card h3 {
        font-size: 1.375rem;
        margin-bottom: 0.875rem;
    }

    .feature-card p {
        font-size: 0.95rem;
        margin: 0;
    }

    /* User Playlists Section - LG Breakpoint */
    .user-playlists-section {
        gap: 1.25rem;
        padding: 1.75rem 0;
    }

    .user-playlists-section .section-title {
        font-size: 1.875rem;
    }

    /* Featured Music Section - LG Breakpoint */
    .featured-music-section {
        padding: 1.75rem 0;
    }

    .featured-music-section .section-title {
        font-size: 1.875rem;
    }

    .featured-music-section .section-subtitle {
        font-size: 1rem;
        margin-bottom: 1.25rem;
    }

    /* Subscription CTA Section - LG Breakpoint */
    .subscription-cta-section {
        padding: 3.5rem;
        margin: 2.5rem 0;
    }

    .subscription-cta-content h2 {
        font-size: 2.25rem;
        margin-bottom: 0.875rem;
    }

    .subscription-price-highlight {
        font-size: 1.375rem;
        margin-bottom: 1.75rem;
    }

    .subscription-price-highlight .price {
        font-size: 2.75rem;
    }

    .subscription-benefits {
        margin-bottom: 1.75rem;
    }

    .subscription-benefits li {
        font-size: 1.0625rem;
        gap: 12px;
        margin-bottom: 0.875rem;
    }
}
