/* --- GLOBAL RESETS --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

:root {
    --brand-pink: #ff4865;
    --text-dark: #333;
    --text-grey: #888;
    --bg-light: #fdfdfd;
    --sidebar-width: 200px;
    --player-height: 80px;
}

body {
    display: flex;
    height: 100vh;
    overflow: hidden;
    background-color: var(--bg-light);
}

/* --- 1. SIDEBAR --- */
.sidebar {
    width: var(--sidebar-width);
    background-color: #fff;
    border-right: 1px solid #eee;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    z-index: 9;
}

.sidebar-logo {
    width: 100%;
    padding: 20px;
    text-align: center;
}

.sidebar-logo img {
    width: 100px !important;
    height: auto !important;
    display: block;
    margin: 0 auto;
}

.nav-links li {
    cursor: pointer;
    list-style: none;
    margin-bottom: 12px;
}

.nav-links li a {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 25px;
    transition: 0.3s;
    border-left: 3px solid transparent;
}

.nav-links li.active a,
.nav-links li a:hover {
    color: var(--brand-pink);
    background-color: rgba(249, 76, 102, 0.05);
    border-left: 3px solid var(--brand-pink);
}

.nav-links li.active a {
    background-color: var(--brand-pink);
    color: white;
}

/* --- 2. MAIN STAGE --- */
.main-content {
    flex-grow: 1;
    overflow-y: auto;
    padding: 40px;
    background-color: var(--bg-light);
}

.top-bar {
    padding: 20px 40px;
}

.search-container {
    display: flex;
    max-width: 300px;
}

.search-container input {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-right: none;
    border-radius: 4px 0 0 4px;
    outline: none;
}

.search-btn {
    background-color: var(--brand-pink);
    color: white;
    border: none;
    padding: 0 15px;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
}

.content-row {
    padding: 0 40px;
    margin-bottom: 40px;
}

.row-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.row-header h3 {
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    color: #ff4865;
    letter-spacing: 1px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.row-header h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--brand-pink);
}

/* --- 3. BOTTOM PLAYER --- */
.bottom-player {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: var(--player-height);
    background-color: #6c757d;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    color: white;
    z-index: 100;
}

.player-left {
    display: flex;
    align-items: center;
    width: 250px;
}

.player-art {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    border-radius: 6px;
    overflow: hidden;
    background-color: #eee;
}

.player-info {
    background-color: var(--brand-pink);
    padding: 5px 15px;
    border-radius: 4px;
    overflow: hidden;
}

.player-info h4 {
    margin: 0;
    font-size: 0.9rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.player-info p {
    margin: 0;
    font-size: 0.75rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.player-center {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 600px;
}

.controls i {
    font-size: 1.2rem;
    margin: 0 15px;
    cursor: pointer;
}

.controls .play-btn {
    font-size: 2rem;
}

.progress-bar-container {
    display: flex;
    align-items: center;
    width: 100%;
    margin-top: 5px;
    font-size: 0.8rem;
}

.progress-bar {
    flex-grow: 1;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.3);
    margin: 0 10px;
    border-radius: 2px;
    cursor: pointer;
    position: relative;
}

.progress {
    width: 0%;
    height: 100%;
    background-color: var(--brand-pink);
    border-radius: 2px;
    pointer-events: none;
}

.player-right {
    display: flex;
    align-items: center;
    width: 200px;
    justify-content: flex-end;
}

.player-right i {
    cursor: pointer;
    width: 20px;
    text-align: center;
}

.volume-bar {
    width: 80px;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.3);
    margin-left: 10px;
    border-radius: 2px;
    cursor: pointer;
    position: relative;
}

.volume {
    width: 100%;
    height: 100%;
    background-color: var(--brand-pink);
    border-radius: 2px;
    pointer-events: none;
}

/* --- GRIDS & CARDS --- */
.recent-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
    background: transparent;
    border: none;
    height: auto;
}

.horizontal-scroll {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding-bottom: 15px;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.horizontal-scroll::-webkit-scrollbar {
    display: none;
}

.horizontal-scroll .album-card {
    flex: 0 0 180px;
    width: 180px;
    overflow: hidden;
}

.album-card {
    cursor: pointer;
    transition: transform 0.2s;
}

.album-card:hover {
    transform: translateY(-5px);
}

.card-img-container {
    position: relative;
    width: 100%;
    padding-top: 100%;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.card-img-container img,
.card-img-container .play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: 0.3s;
}

.album-card:hover .play-overlay {
    opacity: 1;
}

.play-overlay i {
    color: white;
    font-size: 2rem;
}

.album-card h4 {
    font-size: 14px;
    font-weight: 600;
    color: #111111;
    margin: 12px 0 5px 0;
    line-height: 1.2;
    letter-spacing: 0.3px;
}

.album-card p {
    font-size: 13px;
    font-weight: 400;
    color: var(--text-grey);
    text-transform: capitalize;
}

.carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.scroll-arrow {
    background-color: white;
    color: var(--text-dark);
    border: 1px solid #ddd;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    cursor: pointer;
    position: absolute;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: 0.2s;
    display: flex;
    justify-content: center;
    align-items: center;
}

.scroll-arrow:hover {
    color: var(--brand-pink);
    border-color: var(--brand-pink);
}

.left-arrow {
    left: -20px;
}

.right-arrow {
    right: -20px;
}

/* --- WEEKLY TOP LIST --- */
.top-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 40px;
    row-gap: 10px;
    background: transparent;
    border: none;
    height: auto;
}

@media (max-width: 1200px) {
    .top-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .top-list {
        grid-template-columns: 1fr;
    }
}

.list-row {
    display: flex;
    align-items: center;
    padding: 15px 10px;
    margin-bottom: 8px;
    cursor: pointer;
    border-radius: 8px;
    transition: 0.2s;
    gap: 5px;
    height: auto !important;
    min-height: 50px;
}

.list-row:hover {
    background-color: rgba(0, 0, 0, 0.03);
}

.row-num {
    font-size: 50px;
    font-weight: bold;
    color: #202020;
    width: 50px;
    line-height: 50px;
    transition: all 0.3s ease-in-out;
    font-family: 'Josefin Sans', sans-serif;
}

.list-row:hover .row-num {
    color: #ff4865;
}

.row-thumb {
    width: 60px;
    height: 60px;
    border-radius: 4px;
    object-fit: cover;
    margin-right: 15px;
    margin-left: 10px;
}

.row-info {
    flex-grow: 1;
    padding-left: 20px;
}

.row-info h4 {
    font-size: 15px;
    font-weight: 600;
    color: #111111;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.row-info p {
    font-size: 12px;
    font-weight: 400;
    color: var(--text-grey);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.row-actions i {
    color: var(--brand-pink);
    font-size: 1.2rem;
}

/* --- VIEW SWAPPING --- */
.hidden {
    display: none !important;
}

/* --- ALBUM DETAIL VIEW --- */
.back-btn {
    background: none;
    border: none;
    color: var(--text-grey);
    font-size: 1rem;
    cursor: pointer;
    margin-bottom: 30px;
    transition: 0.2s;
}

.back-btn:hover {
    color: var(--brand-pink);
}

.album-header {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    align-items: flex-end;
}

.album-cover-large {
    width: 250px;
    height: 250px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    object-fit: cover;
}

.album-info-large h1 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.artist-name,
.album-meta {
    color: var(--text-grey);
    margin-bottom: 5px;
}

.album-actions {
    margin-top: 20px;
}

.play-all-btn {
    background-color: var(--brand-pink);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: 0.2s;
}

.play-all-btn:hover {
    transform: scale(1.05);
}

.tracklist-table {
    width: 100%;
    border-collapse: collapse;
}

.tracklist-table th {
    text-align: left;
    color: var(--text-grey);
    font-weight: normal;
    padding-bottom: 15px;
    border-bottom: 2px solid #eee;
}

.tracklist-table td {
    padding: 15px 0;
    border-bottom: 1px solid #f5f5f5;
    color: #202020;
    transition: color 0.3s ease;
}

.track-row {
    cursor: pointer;
    transition: 0.2s;
}

.track-row:hover td {
    background-color: #fafafa;
    color: #ff4865;
}

.track-row:hover td:first-child {
    color: #ff4865;
}

/* --- HERO SECTION (THREE COLUMN) --- */
/* --- HERO SECTION (THREE COLUMN) --- */
.three-column-hero {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    align-items: stretch;
    padding: 40px 0;
}

/* Base styling for all hero columns */
/* --- HERO SECTION (THREE COLUMN) --- */
.three-column-hero {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    align-items: stretch;
    padding: 40px 0;
}

/* Base styling for all hero columns */
.hero-col {
    position: relative;
    background: rgb(0, 0, 0);
    border: 1px solid rgba(255, 72, 101, 0.2);
    border-radius: 0px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;  /* CHANGED: Align content to TOP instead of center */
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    overflow: hidden;
    font-weight: 500 !important;
}

/* Text columns padding */
.hero-text-col {
    padding: 45px;
}

/* CRITICAL: Make sure text sits ABOVE the background image */
.hero-col > * {
    position: relative;
    z-index: 2;
}

/* Shared background image styling */
.hero-col::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.25 ;
    pointer-events: none;
    z-index: 1;
}

/* Column 1 - The Science of Memory */
.col-memory::before {
    background-image: url('https://lumibeatz.com/girlyellow.webp');
}

/* Column 2 - The Lumibeatz Method */
.col-method::before {
    background-image: url('https://lumibeatz.com/boyblue.webp');
}

/* Column 3 - Learning Reimagined */
.col-reimagined::before {
    background-image: url('https://lumibeatz.com/girlpink.webp');
}

/* YELLOW BAND STYLING - Single clean rule */
.hero-col .mission-tag {
    background-color: #fef102 !important;
    color: #000000 !important;
    font-size: 0.85rem !important;
    letter-spacing: 2px;
    font-weight: 800 !important;
    text-transform: uppercase;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: inline-block !important;
    padding: 12px 24px !important;
    margin-bottom: 25px !important;
    border-left: 3px solid rgba(0, 0, 0, 0.2);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* Text styling inside the boxes */
.hero-col p {
    color: #ffffff !important;
    font-size: 1rem !important;
    line-height: 1.6;
}

/* Bold text styling - changed to match your brand */
.hero-col strong {
    color: #fef102 !important;
}

/* Headers styling */
.hero-col h3, 
.hero-col h4 {
    color: #ff4865 !important;
    font-size: 1.5rem !important;
    margin-top: 20px;
    margin-bottom: 5px;
}

/* Horizontal rule */
.hero-col hr {
    margin: 20px 0;
    border-color: rgba(255, 72, 101, 0.3);
}

/* Bullet points */
.mission-bullets {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.mission-bullets li {
    color: #ffffff !important;
    font-size: 0.95rem !important;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Mobile responsiveness */
@media (max-width: 900px) {
    .three-column-hero {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .hero-text-col {
        padding: 30px;
    }
    
    .hero-image-col {
        padding: 0 !important;
        min-height: 300px;
    }
    
    .hero-img {
        object-fit: contain;
    }
}
/* --- STREAMING BANNER --- */
.streaming-banner {
    width: 100%;
    height: 250px;
    border-radius: 16px;
    margin-bottom: 35px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 0 0 20px 0;
    background-image: url('https://pub-f44f031c5fd243e195b7a768eaff8c69.r2.dev/banner.png');
    background-size: cover;
    background-position: center;
    border: 1px solid rgba(255, 72, 101, 0.3);
    box-shadow: 0 0 20px rgba(255, 72, 101, 0.3);
}

.banner-content {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    justify-content: center;
}

.platform-icons {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    padding: 12px 25px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.platform-icons i {
    cursor: pointer;
    transition: all 0.3s ease;
}

.platform-icons i:hover {
    transform: translateY(-3px) scale(1.1);
    filter: brightness(1.2);
}

.platform-icons .fa-spotify {
    color: #1DB954;
    font-size: 24px;
}

.platform-icons .fa-apple {
    color: #ffffff;
    font-size: 24px;
}

.platform-icons .fa-youtube {
    color: #FF0000;
    font-size: 24px;
}

.platform-icons .fa-amazon {
    color: #FF9900;
    font-size: 24px;
}

/* --- LOADER --- */
.ms_loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #14182a;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.ms_loader .wrap {
    display: flex;
    align-items: center;
    justify-content: center;
}

.ms_loader .wrap img {
    width: 120px;
    height: auto;
    display: block;
}

/* --- FOOTER --- */
.main-footer {
    padding: 30px 20px 120px 20px;
    background-color: #0d101f;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-contact {
    margin-bottom: 30px;
}

.footer-contact p {
    display: inline-block;
    margin: 0 20px;
    color: #b3b3b3;
    font-size: 0.95rem;
}

.footer-contact i {
    color: var(--brand-pink);
    margin-right: 8px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 20px;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: #666;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* --- SORT BUTTONS --- */
.sort-controls {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    margin-bottom: 15px;
}

.sort-btn {
    background: transparent;
    border: 1px solid rgba(255, 72, 101, 0.3);
    color: #b3b3b3 !important;
    padding: 8px 20px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.sort-btn:hover {
    background: var(--brand-pink);
    border-color: var(--brand-pink);
    color: white !important;
    transform: translateY(-2px);
}

.sort-btn.active {
    background: var(--brand-pink);
    border-color: var(--brand-pink);
    color: white !important;
}

/* --- NOW PLAYING HIGHLIGHTS --- */
.track-row.now-playing {
    background-color: rgba(249, 76, 102, 0.1);
    position: relative;
}

.track-row.now-playing td:first-child {
    color: var(--brand-pink);
    font-weight: bold;
}

.track-row.now-playing td:first-child::before {
    content: "▶";
    font-size: 10px;
    margin-right: 5px;
    color: var(--brand-pink);
}

.list-row.now-playing {
    background: linear-gradient(90deg, rgba(249, 76, 102, 0.15) 0%, rgba(249, 76, 102, 0.03) 100%);
    border-radius: 8px;
}

.list-row.now-playing .row-info h4,
.list-row.now-playing .row-num {
    color: var(--brand-pink) !important;
    font-weight: bold;
}

.list-row.now-playing .row-actions i {
    color: var(--brand-pink) !important;
    animation: pulsePlay 1s ease-in-out infinite;
}

@keyframes pulsePlay {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.2);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* --- PAGE-SPECIFIC HIDES --- */
#catalog-view .streaming-banner,
#singles-view .streaming-banner,
#album-view .streaming-banner,
#search-view .streaming-banner,
#catalog-view .mission-hero,
#singles-view .mission-hero,
#album-view .mission-hero,
#search-view .mission-hero {
    display: none !important;
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 1024px) {
    .main-content {
        padding: 20px;
    }

    .sidebar {
        width: 70px;
    }

    .sidebar-logo img {
        width: 40px !important;
    }

    .nav-links li a span:not(i) {
        display: none;
    }

    .nav-links li a {
        justify-content: center;
        padding: 12px 0;
    }

    .nav-links li a i {
        font-size: 20px;
        margin: 0;
    }

    .top-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .sidebar {
        position: fixed !important;
        top: 0 !important;
        left: -250px !important;
        width: 250px !important;
        height: 100% !important;
        background: white !important;
        z-index: 99999 !important;
        transition: left 0.3s ease !important;
        overflow-y: auto !important;
        padding-top: 20px !important;
    }

    .sidebar.open {
        left: 0 !important;
        box-shadow: 2px 0 15px rgba(0, 0, 0, 0.2) !important;
    }

    .sidebar .nav-links li a span:not(i) {
        display: inline !important;
    }

    .sidebar .nav-links li a {
        justify-content: flex-start !important;
        padding: 12px 20px !important;
        gap: 15px !important;
    }

    .sidebar-logo img {
        width: 80px !important;
    }

    .menu-toggle {
        display: block !important;
        position: fixed !important;
        top: 15px !important;
        left: 15px !important;
        z-index: 100000 !important;
        background: #ff4865 !important;
        color: white !important;
        border: none !important;
        padding: 12px 14px !important;
        border-radius: 8px !important;
        cursor: pointer !important;
        font-size: 20px !important;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2) !important;
    }

    .main-content {
        padding: 15px !important;
        margin-top: 60px !important;
    }

    .top-bar {
        padding: 10px !important;
    }

    .search-container {
        max-width: 100%;
    }

    .content-row {
        padding: 0 15px;
        margin-bottom: 30px;
    }

    .row-header h3 {
        font-size: 14px;
    }

    .horizontal-scroll .album-card {
        flex: 0 0 140px;
        width: 140px;
    }

    .album-card h4 {
        font-size: 12px;
    }

    .top-list {
        grid-template-columns: 1fr;
    }

    .row-num {
        font-size: 32px;
        width: 45px;
        line-height: 40px;
    }

    .row-thumb {
        width: 45px;
        height: 45px;
    }

    .album-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
    }

    .album-cover-large {
        width: 180px;
        height: 180px;
    }

    .album-info-large h1 {
        font-size: 1.8rem;
    }

    .bottom-player {
        padding: 0 10px;
    }

    .player-left {
        width: 120px;
    }

    .player-art {
        width: 40px;
        height: 40px;
    }

    .player-info p {
        display: none;
    }

    .controls i {
        margin: 0 8px;
        font-size: 14px;
    }

    .controls .play-btn {
        font-size: 28px;
    }

    .player-right {
        width: 100px;
    }

    .volume-bar {
        width: 50px;
    }

    .streaming-banner {
        height: 180px;
    }

    .platform-icons {
        padding: 8px 15px;
        gap: 12px;
    }

    .platform-icons i {
        font-size: 18px;
    }

    .three-column-hero {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .hero-col {
        min-height: auto;
        padding: 30px;
    }

    .hero-image-col {
        padding: 0 !important;
    }

    .sort-controls {
        display: flex !important;
        justify-content: flex-end;
        margin-bottom: 15px;
        margin-top: 10px;
    }

    .sort-btn {
        padding: 6px 14px !important;
        font-size: 11px !important;
    }
}

@media (max-width: 480px) {
    .main-content {
        padding: 10px;
    }

    .row-header h3 {
        font-size: 12px;
    }

    .horizontal-scroll .album-card {
        flex: 0 0 120px;
        width: 120px;
    }

    .row-num {
        font-size: 24px;
        width: 35px;
        line-height: 30px;
    }

    .row-thumb {
        width: 35px;
        height: 35px;
    }

    .player-left {
        width: 100px;
    }

    .player-art {
        width: 35px;
        height: 35px;
    }

    .player-right {
        width: 70px;
    }

    .volume-bar {
        width: 40px;
    }

    .platform-icons {
        padding: 6px 12px;
        gap: 8px;
    }

    .platform-icons i {
        font-size: 14px;
    }
}

/* --- DESKTOP SIDEBAR FIXES --- */
@media (min-width: 769px) {
    .sidebar {
        left: 0 !important;
        position: relative !important;
    }

    .menu-toggle {
        display: none !important;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .sidebar {
        width: var(--sidebar-width) !important;
        position: relative !important;
        left: 0 !important;
    }

    .sidebar .nav-links li a span:not(i) {
        display: inline !important;
    }

    .sidebar .nav-links li a {
        justify-content: flex-start !important;
        padding: 12px 25px !important;
    }

    .sidebar-logo img {
        width: 100px !important;
    }
}

/*for streaming platforms*/

/* Style the streaming platform links */
.platform-icons a {
    display: inline-block;
    text-decoration: none;
    transition: all 0.3s ease;
}

.platform-icons a:hover {
    transform: translateY(-3px) scale(1.1);
}

/* Remove any default link styling */
.platform-icons a:visited,
.platform-icons a:active {
    color: inherit;
}