* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}

/* Modern Scrollbar Styles */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: rgba(113, 106, 92, 0.1);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb {
    background: rgba(113, 106, 92, 0.5);
    border-radius: 5px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: background-color 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(113, 106, 92, 0.8);
}

/* For Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: rgba(113, 106, 92, 0.5) rgba(113, 106, 92, 0.1);
}

body {
    font-family: 'Roboto', sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

header {
    width: 100%;
    padding: 15px 40px;
    background: rgba(113, 106, 92, 0.8);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    display: flex;
    border-radius: 0 0 10px 10px;
    justify-content: space-between;
    align-items: center;
    transition: padding 0.3s ease, background-color 0.3s ease;
}

header.scrolled {
    padding: 10px 40px;
    background: rgba(113, 106, 92, 0.95);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    z-index: 100;
}

.logo-container img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.logo-container h1 {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: 3px;
    color: white;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    position: relative;
    text-transform: uppercase;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 1) 0%,
        rgba(255, 255, 255, 0.8) 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.logo-container h1::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0.8) 0%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.logo-container:hover h1 {
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    transform: translateY(-1px);
}

.logo-container:hover h1::after {
    transform: scaleX(1);
    transform-origin: left;
}

nav {
    display: flex;
    gap: 10px;
    padding: 5px;
    border-radius: 30px;
    z-index: 99;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

nav a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 8px;
}

nav a::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

nav a:hover {
    color: white;
}

nav a:hover::before {
    opacity: 1;
}

nav a.active {
    background: white;
    color: #716a5c;
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

nav a i {
    font-size: 16px;
    opacity: 0.8;
}

@media (max-width: 768px) {
    nav {
        background: transparent;
        backdrop-filter: none;
        border: none;
    }

    nav.active {
        background: rgba(113, 106, 92, 0.98);
        backdrop-filter: blur(10px);
    }

    nav a {
        font-size: 18px;
        padding: 15px 30px;
        width: 90%;
        justify-content: center;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .logo-container h1 {
        font-size: 24px;
        letter-spacing: 2px;
    }
}

.container {
    margin: 80px auto;
    padding: 40px;
    max-width: 2000px;
    text-align: center;
    background: #e0d5c1; /* Match body background */
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden; /* Add this to contain the absolute positioned elements */
}

.container h2 {
    color: #413d36;
    margin-bottom: 30px;
    font-size: 28px;
}

h2 { 
    font-size: 28px;
}

.section-title {
    text-align: center;
    margin-bottom: 15px;
    font-size: 26px;
    color: #716a5c;
    font-weight: 700;
    border-bottom: 2px solid #716a5c;
    padding-bottom: 5px;
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 40px;
    position: relative;
    display: flex;
    align-items: baseline;
    gap: 20px;
    padding-left: 0;
}

.section-title::after {
    content: attr(data-count);
    font-size: 18px;
    color: #716a5c;
    font-weight: 500;
    letter-spacing: 1px;
}

footer {
    background: #716a5c;
    color: black;
    padding: 20px;
    text-align: center;
    margin-top: auto;
}

footer .social-icons {
    margin: 10px 0;
    display: flex;
    gap: 15px;
}

footer .social-icons a {
    color: black;
    font-size: 24px;
    transition: color 0.3s ease;
}

footer .social-icons a:hover {
    color: #f1e9db;
}



/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 80vh;
    background: url('https://via.placeholder.com/1920x1080') no-repeat center center/cover;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}

.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    backdrop-filter: blur(10px);
    background: white;
    padding: 20px;
    border-radius: 10px;
}

.hero-text h1 {
    font-size: 48px;
    margin-bottom: 10px;
    color: black;
}

.hero-text p {
    font-size: 24px;
    color: black;
}

/* Redesigned Sections */
.releases-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.tab-content {
    background: rgba(113, 106, 92, 0.1);
}

.latest-release-bg {
    background: rgba(113, 106, 92, 0.1);
}

.album-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

/* Redesigned Latest Releases Section */

.latest-release-info {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    background: rgba(113, 106, 92, 0.95);
    backdrop-filter: blur(15px);
    transition: background-color 0.3s ease;
}

.latest-release-info h2,
.latest-release-info .info h3,
.latest-release-info .info p,
.latest-release-info .release-meta,
.latest-release-info .release-meta span,
.latest-release-info .release-meta i,
.latest-release-info .listen-button {
    transition: color 0.3s ease, opacity 0.3s ease;
    opacity: 1;
}

/* Hover effects */
.latest-release-content:hover .latest-release-info {
    background: rgba(113, 106, 92, 0.98);
}

.latest-release-content:hover .latest-release-info h2,
.latest-release-content:hover .latest-release-info .info h3,
.latest-release-content:hover .latest-release-info .info p,
.latest-release-content:hover .release-meta,
.latest-release-content:hover .release-meta span,
.latest-release-content:hover .release-meta i,
.latest-release-content:hover .listen-button {
    color: white;
    opacity: 1;
}

/* Redesigned Latest Releases Section */


.latest-release-image {
    flex: 1;
    max-width: 50%;
    min-width: 50%;
    height: 100%;
    display: block;
    margin: 0;
    line-height: 0;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.latest-release-image img,
.latest-release-image video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    margin: 0;
    transition: opacity 0.3s ease;
}

.latest-release-image img {
    opacity: 1;
    z-index: 1;
}

.latest-release-image video {
    opacity: 0;
    z-index: 2;
    transform: scale(1.05);
    will-change: opacity;
}

/* Remove hover styles since they're now handled by JavaScript */
.latest-release-content:hover .latest-release-image video,
.latest-release-content:hover .latest-release-image img {
    opacity: initial;
}

/* Separate styles for latest release video and hover videos */
.latest-release-image video {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    z-index: 1;
    transform: scale(1.05);
    transition: opacity 0.3s ease;
    filter: none; /* Remove blur for hover video */
}

/* Latest release video styles - no blur */
.latest-release-image video {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    z-index: 1;
    transform: scale(1.05);
    transition: opacity 0.5s ease;
    filter: none; /* Remove all filters */
}

/* Keep modal background video blurred */
.modal-background-video {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 1;
    filter: blur(15px) brightness(0.8);
    transform: scale(1.2);
}

.latest-release-info h2,
.latest-release-info .info h3,
.latest-release-info .info p {
    color: #dddddd;
    transition: color 0.3s ease;
}





.latest-release-info .info p {
    margin-bottom: 2px;
}

.latest-release-info .info .listen-button {
    margin-top: 8px;
}

/* Enhanced Listen Button for Latest Release */
.latest-release-info .listen-button {
    position: relative;
    width: auto;
    padding: 15px 40px 15px 30px;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1.5px;
    color: #dddddd;
    background: linear-gradient(
        to right,
        #716a5c 0%,
        #837a6d 100%
    );
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-top: 30px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.latest-release-info .listen-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0.1),
        rgba(255, 255, 255, 0.05)
    );
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.latest-release-info .listen-button::after {
    content: '→';
    position: relative;
    font-size: 20px;
    margin-left: 5px;
    transition: transform 0.3s ease;
    display: inline-block;
    margin-top: -2px;
}

/* ...existing code... */

.listen-button.coming-soon::after {
    content: none;
}

/* ...existing code... */

/* Listen Now Button Styles */
.listen-button {
    position: relative;
    padding: 15px 32px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    color: white;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    backdrop-filter: blur(5px);
}

.listen-button::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, 
        rgba(255, 255, 255, 0.1), 
        rgba(255, 255, 255, 0.05), 
        rgba(255, 255, 255, 0.1)
    );
    border-radius: inherit;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.listen-button i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.listen-button:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.listen-button:hover::before {
    opacity: 1;
}

.listen-button:hover i {
    transform: scale(1.1);
}

.listen-button:active {
    transform: translateY(0);
}

.listen-button.disabled {
    opacity: 0.6;
    cursor: default;
    pointer-events: none;
}

.listen-button.coming-soon {
    background: rgba(113, 106, 92, 0.2);
    color: rgba(255, 255, 255, 0.7);
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .listen-button {
        padding: 14px 28px;
        font-size: 15px;
        width: 100%;
        justify-content: center;
    }
}

/* Modal Styles */
.streaming-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(113, 106, 92, 0.5);
    backdrop-filter: blur(10px);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.streaming-modal.active {
    display: flex;
    opacity: 1;
    visibility: visible;
}



.streaming-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    text-decoration: none;
    padding: 10px;
    border-radius: 12px; /* Make links rounded too for consistency */
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateX(-20px);
}

/* Add animation delay for each link */
.streaming-modal.active .streaming-link:nth-child(1) { animation-delay: 0.1s; }
.streaming-modal.active .streaming-link:nth-child(2) { animation-delay: 0.2s; }
.streaming-modal.active .streaming-link:nth-child(3) { animation-delay: 0.3s; }
.streaming-modal.active .streaming-link:nth-child(4) { animation-delay: 0.4s; }
.streaming-modal.active .streaming-link:nth-child(5) { animation-delay: 0.5s; }

/* Enhanced Latest Releases Section */
.latest-release-content {
    display: flex;
    align-items: stretch;
    gap: 0;
    height: 600px;
    position: relative;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
}

.latest-release-image img,
.latest-release-image video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    transition: transform 0.5s ease;
}

.latest-release-info {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: rgba(113, 106, 92, 0.98);
    position: relative;
    overflow: hidden;
}

.latest-release-image video {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.latest-release-content:hover .latest-release-image video {
    opacity: 1;
}

.latest-release-content:hover .latest-release-image img {
    opacity: 0;
}

.latest-release-info h2 {
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.latest-release-info h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: #f1e9db;
}

.latest-release-info .info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.latest-release-info .info h3 {
    font-size: 42px;
    font-weight: 600;
    color: white;
    line-height: 1.2;
    margin: 0;
}

.latest-release-info .release-meta {
    display: flex;
    gap: 20px;
    margin: 15px 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease; /* Add transition for hover effect */
}

.latest-release-info .release-meta span {
    gap: 50px;
    transition: color 0.3s ease; /* Only keep color transition */
}

.latest-release-info .release-meta i {
    transition: color 0.3s ease;
}

/* Hover effects - color changes only */
.latest-release-content:hover .release-meta {
    color: white;
}

.latest-release-content:hover .release-meta span {
    color: white; /* Only change color */
}

.latest-release-content:hover .release-meta i {
    color: white;
}

.latest-release-info .info p {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    max-width: 500px;
}

.latest-release-info .listen-button {
    margin-top: 30px;
    width: auto;
    padding: 15px 30px;
    font-size: 16px;
    letter-spacing: 1px;
    background: #716a5c;
    color: #dddddd;
    border-radius: 30px;
    transform: translateY(0);
    transition: all 0.3s ease;
    box-shadow: none;
    display: inline-flex;
    width: fit-content;
    align-self: flex-start;  /* Add this to align button to the left */
}

.latest-release-info .listen-button:hover {
    transform: translateY(-2px);
    background: white;
    color: black;
    box-shadow: none;
}

.latest-release-info h2,
.latest-release-info .info h3,
.latest-release-info .info p,
.latest-release-content:hover .release-meta {
    color: #dddddd;
}

.latest-release-content:hover .latest-release-info h2,
.latest-release-content:hover .latest-release-info .info h3,
.latest-release-content:hover .latest-release-info .info p,
.latest-release-content:hover .release-meta {
    color: white;
}

/* Enhanced Streaming Modal */


.streaming-popup {
    background: rgba(113, 106, 92, 0.98);
    padding: 40px;
    border-radius: 24px; /* Add rounded corners */
    min-width: 350px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    backdrop-filter: blur(20px);
}

.streaming-popup h3 {
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #dddddd;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
    text-align: left;
}

.streaming-popup h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: #f1e9db;
}

.streaming-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.streaming-link {
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
}

.streaming-link i {
    font-size: 22px;
    width: auto;
    transition: transform 0.3s ease;
}

.streaming-link:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.2);
}

.streaming-link:hover i {
    transform: scale(1.1);
}

/* ...existing code... */

.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    z-index: 10;
}

.close-modal i {
    color: rgba(255, 255, 255, 0.8);
    font-size: 24px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.close-modal:hover i {
    color: white;
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .close-modal {
        top: 10px;
        right: 10px;
        width: 44px;
        height: 44px;
    }
    
    .close-modal i {
        font-size: 28px;
    }
}

/* ...existing code... */

@media (max-width: 1200px) {
    .close-modal {
        top: 10px;
        right: 10px;
        width: 44px;  /* Increased touch target */
        height: 44px; /* Increased touch target */
    }
    
    .close-modal i {
        font-size: 24px; /* Larger icon on mobile */
    }
}

/* Remove old close button styles */
.close-modal::before,
.close-modal::after {
    display: none;
}

/* ...existing code... */

/* Animation for streaming links */
.streaming-modal.active .streaming-link {
    animation: slideInScale 0.4s ease forwards;
    opacity: 0;
}

@keyframes slideInScale {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Staggered animation delay for links */
.streaming-modal.active .streaming-link:nth-child(1) { animation-delay: 0.1s; }
.streaming-modal.active .streaming-link:nth-child(2) { animation-delay: 0.15s; }
.streaming-modal.active .streaming-link:nth-child(3) { animation-delay: 0.2s; }
.streaming-modal.active .streaming-link:nth-child(4) { animation-delay: 0.25s; }
.streaming-modal.active .streaming-link:nth-child(5) { animation-delay: 0.3s; }


/* Enhanced Discography Layout 2.0 */
.container {
    max-width: 100%;
    padding: 60px 40px;
    background: #e0d5c1;
}



/* Fresh Discography Layout */
.album-list, .single-list, .collection-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 20px;
    max-width: 1400px;
    margin: 0 auto;
}



/* Base Card Styles */
.card-container {
    width: 320px;
    height: 320px;
    position: relative;
    z-index: 1;
}


/* Simplified Card Styles */
.album-list, .single-list, .collection-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    padding: 40px;
}

.card-container {
    aspect-ratio: 1;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.card-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.card-container:hover img {
    transform: scale(1.05);
}

/* Album Modal Styles */
.album-modal {
    position: fixed;
    inset: 0;
    background: rgba(113, 106, 92, 0.5);
    backdrop-filter: blur(10px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

/* Update modal background video styles only */
.modal-background-video {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 1;
    filter: blur(15px) brightness(0.8); /* Keep blur effect for modal background */
    transform: scale(1.2);
}

.modal-background-video {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 1; /* Changed from 0.15 to 1 */
    filter: blur(15px) brightness(0.8); /* Adjusted brightness to maintain readability of content */
    transform: scale(1.2); /* Scale up to prevent blur edges */
}

.album-modal.active {
    opacity: 1;
}

.modal-content {
    width: min(95%, 600px);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    border-radius: 24px;    
    position: relative;
    overflow: hidden;
    transform: translateY(20px) scale(0.95);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.album-modal.active .modal-content {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.modal-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px; /* Reduced from 30px */
    position: relative;
    z-index: 1;
}

.modal-main-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 0; /* Remove bottom margin that was creating extra space */
}

.modal-info-content {
    width: 100%;
    padding: 25px;
    background: rgba(113, 106, 92, 0.4); /* Changed to match website color with transparency */
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.modal-info-content::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.1), transparent 70%);
    pointer-events: none;
    border-radius: inherit;
}

.modal-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
    background: linear-gradient(90deg, #fff, rgba(255, 255, 255, 0.8));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
    margin-top: 0; /* Ensure no extra spacing at top */
    margin-bottom: 10px;
}

.modal-date {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 15px;
    width: fit-content;
}

.modal-date i {
    color: #f1e9db;
}

.modal-platforms {
    border-top: none; /* Remove top border that was creating a line */
    padding-top: 20px; /* Reduced padding */
    margin-top: 0; /* Remove top margin */
    background: rgba(113, 106, 92, 0.4); /* Match the info content background */
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    position: relative;
    overflow: visible; /* Changed from hidden to visible */
}

.modal-platforms::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.1), transparent 70%);
    pointer-events: none;
    border-radius: inherit;
}

.modal-platforms h3 {
    font-size: 20px;
    font-weight: 600;
    color: white;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    letter-spacing: 0.5px;
}

.modal-platforms h3::before {
    content: '♫';
    font-size: 24px;
    opacity: 0.8;
    color: #f1e9db;
}

.platform-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px;
    width: 100%;
    overflow: visible; /* Changed from hidden to visible */
    position: relative;
    z-index: 1;
    padding: 2px; /* Added small padding to prevent shadow clipping */
}

.platform-link {
    background: rgba(255, 255, 255, 0.05);
    padding: 12px 15px;
    border-radius: 8px;
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
    will-change: transform;
}

.platform-link:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.2);
    z-index: 2; /* Ensure hovered link stays on top */
}

.modal-date span {
    font-weight: 500;
    letter-spacing: 0.5px;
}



.streaming-style-header {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    font-weight: 500;
}

.modal-platforms {
    background: rgba(113, 106, 92, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;  /* Match info section's border-radius */
    padding: 25px;        /* Match info section's padding */
    margin-top: 20px;
    overflow: visible; /* Changed from hidden to visible */
    position: relative;
    isolation: isolate;
}

.platform-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px;           /* Slightly reduced gap to match info section */
    width: 100%;
    overflow: visible; /* Changed from hidden to visible */
    position: relative;
    z-index: 1;
    padding: 2px; /* Added small padding to prevent shadow clipping */
}

.platform-link {
    background: rgba(255, 255, 255, 0.05);
    padding: 12px 15px;
    border-radius: 8px;   /* Slightly reduced border-radius to match overall style */
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform-origin: left center;
    position: relative;
    z-index: 1;
    will-change: transform;
}

.platform-link:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.2);
    z-index: 2; /* Ensure hovered link stays on top */
}

/* Update responsive breakpoints */
@media (max-width: 1200px) {
    .platform-links {
        grid-template-columns: 1fr;  /* Single column on smaller screens */
    
    }
}



@media (min-width: 1025px) {
    .platform-links {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));  /* Fluid columns on large screens */
    
    }
}

/* ...existing code... */

.modal-info-content {
    /* ...existing styles... */
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.modal-description {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}


.release-content.reverse {
    text-align: right;
}


.release-content.reverse {
    justify-content: flex-end;
}

.latest-release-content .latest-release-info.align-right h2::after {
    right: 0;
    left: auto;
}




/* Update the listen button to remove arrow for disabled state */
.latest-release-info .listen-button.disabled::after {
    display: none;
}

/* ...existing code... */

.latest-release-info.align-right .info p {
    text-align: right;
    margin-left: auto;
    margin-right: 0;
}

.hero-fullscreen {
    height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
    z-index: -1;
}

.hero-content {
    text-align: center;
    z-index: 2;
}

.hero-content h1 {
    font-size: 6rem;
    margin-bottom: 1rem;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.5s;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.8s;
}

.hero-cta {
    opacity: 0;
    animation: fadeInUp 1s ease forwards 1.1s;
}

.primary-button {
    padding: 1rem 2rem;
    background: white;
    color: black;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: transform 0.3s ease;
    text-decoration: none; /* Add this for anchor tag */
    display: inline-block; /* Add this for anchor tag */
}

.primary-button:hover {
    transform: translateY(-2px);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    opacity: 0;
    animation: fadeIn 1s ease forwards 1.4s;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid white;
    border-radius: 20px;
    position: relative;
}

.mouse::before {
    content: '';
    width: 4px;
    height: 8px;
    background: white;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    animation: scrollMouse 1.5s infinite;
}

.music-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 6rem 4rem;
    background: linear-gradient(180deg, #e0d5c1, #d5c9b3); /* Adjusted gradient */
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem;
}

.showcase-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    aspect-ratio: 1;
}

.showcase-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.showcase-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.showcase-item:hover img {
    transform: scale(1.05);
}

.showcase-item:hover .showcase-overlay {
    opacity: 1;
}



@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes scrollMouse {
    0% { transform: translate(-50%, 0); opacity: 1; }
    100% { transform: translate(-50%, 15px); opacity: 0; }
}

/* ...existing code... */

.countdown-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(113, 106, 92, 0.5);
    backdrop-filter: blur(10px);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.countdown-modal.active {
    display: flex;
    opacity: 1;
    visibility: visible;
}

/* Update countdown popup styles to match streaming popup */
.countdown-popup {
    background: rgba(113, 106, 92, 0.98);
    padding: 40px;
    border-radius: 24px;
    min-width: 400px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    backdrop-filter: blur(20px);
    text-align: left;
}

.countdown-popup h3 {
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #dddddd;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.countdown-popup h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: #f1e9db;
}

.countdown-timer {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 25px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 20px;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 70px;
    padding: 10px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px) scale(0.9);
    animation: slideInScale 0.4s ease forwards;
}

/* Add animation delays for countdown items */
.countdown-modal.active .countdown-item:nth-child(1) { animation-delay: 0.1s; }
.countdown-modal.active .countdown-item:nth-child(2) { animation-delay: 0.15s; }
.countdown-modal.active .countdown-item:nth-child(3) { animation-delay: 0.2s; }
.countdown-modal.active .countdown-item:nth-child(4) { animation-delay: 0.25s; }

.countdown-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.2);
}

.countdown-item span:first-child {
    font-size: 32px;
    font-weight: 700;
    color: white;
}

.countdown-item .label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 5px;
}

.release-date {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.4s ease forwards 0.3s;
}

.release-date::before {
    content: '♫';
    font-size: 18px;
    opacity: 0.8;
    color: #f1e9db;
}

/* ...existing code... */

/* Enhanced Hero Section */
.hero-fullscreen {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-background {
    filter: brightness(0.4) contrast(1.1);
    transform: scale(1.1);
    transition: all 0.8s ease;
}

.hero-fullscreen:hover .hero-background {
    filter: brightness(0.5) contrast(1.2);
    transform: scale(1.15);
}

.hero-content {
    max-width: 1200px;
    padding: 0 40px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 8rem;
    font-weight: 800;
    background: linear-gradient(45deg, #fff, rgba(255, 255, 255, 0.7));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.hero-subtitle {
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 2rem 0 3rem;
    font-weight: 300;
    letter-spacing: 2px;
}

/* Enhanced Music Grid */
.music-grid {
    padding: 6rem 4rem;
    background: linear-gradient(180deg, #e0d5c1, #d5c9b3);
}

.music-section {
    max-width: 1400px;
    margin: 0 auto 80px;
}

.music-section:last-child {
    margin-bottom: 0;
}

/* Remove featured-album related styles */
/* Remove .featured-album styles */

/* Enhanced Buttons */
.primary-button, .listen-button {
    padding: 16px 36px;
    font-size: 17px;
    font-weight: 500;
    letter-spacing: 1px;
    border-radius: 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.primary-button:hover, .listen-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Modern Footer */
.footer-modern {
    background: linear-gradient(135deg, #716a5c, #5d574b);
    color: white;
    padding: 60px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: auto;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.1);
}

.footer-modern::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.1), transparent 70%);
    pointer-events: none;
}

.footer-modern .social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.footer-modern .social-icons a {
    color: rgba(255, 255, 255, 0.9);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    font-size: 20px;
    text-decoration: none; /* Add this line to remove underlines */
}

.footer-modern .social-icons a:hover {
    color: white;
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.footer-modern .copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .footer-modern {
        padding: 40px 20px;
    }

    .footer-modern .social-icons a {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}

/* ...existing code... */

/* ...existing code... */

.hamburger {
    display: none;
    width: 35px;
    height: 35px;
    position: relative;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 15px;
}

.hamburger span {
    display: block;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 2px;
    background-color: white;
    transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    border-radius: 25px; /* Make the bars pill-shaped */
}

.hamburger span:nth-child(1) { top: 8px; }
.hamburger span:nth-child(2) { top: 50%; transform: translate(-50%, -50%); }
.hamburger span:nth-child(3) { bottom: 8px; }

@media (max-width: 768px) {
    .hamburger {
        display: block;
        width: 45px; /* Increase width for better pill shape */
        height: 35px;
        transition: background-color 0.3s ease;
    }

    .hamburger:hover {
        background: rgba(255, 255, 255, 0.2);
    }

    .hamburger span {
        width: 20px; /* Make bars shorter for pill aesthetic */
    }

    .hamburger.active {
        background: rgba(255, 255, 255, 0.2);
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: linear-gradient(
            135deg,
            rgba(113, 106, 92, 0.98) 0%,
            rgba(93, 87, 75, 0.98) 100%
        );
        backdrop-filter: blur(10px);
        z-index: 1000;
        transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 25px;
        opacity: 0;
        visibility: hidden;
        border-radius: 0;  /* Remove border radius from nav container */
    }

    nav::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(
            circle at top right,
            rgba(255, 255, 255, 0.1),
            transparent 70%
        );
        pointer-events: none;
    }

    nav a {
        font-size: 28px;
        font-weight: 500;
        padding: 15px 30px;
        color: white;
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
        position: relative;
        background: none;  /* Remove background */
        border-bottom: 1px solid rgba(255, 255, 255, 0.1); /* Add bottom border instead */
        width: 100%;      /* Make links full width */
        text-align: center;
        border-radius: 0;  /* Remove border radius from nav links */
        border: none;      /* Remove borders */
    }

    nav a:last-child {
        border-bottom: none; /* Remove border from last item */
    }

    nav.active {
        right: 0;
        opacity: 1;
        visibility: visible;
    }

    nav.active a {
        opacity: 1;
        transform: translateY(0);
    }



    nav a:hover {
        background: rgba(255, 255, 255, 0.1); /* Subtle hover effect */
    }

    nav a.active {
        background: white;
        color: #716a5c;
        font-weight: 600;
        border-radius: 0;
        box-shadow: none;
    }

    body.menu-open {
        overflow: hidden;
    }

    nav a {
        /* ...existing styles... */
        border-radius: 50px;  /* Add rounded corners to all nav links */
        margin: 5px 0;
        width: 90%;
        text-align: center;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    nav a.active {
        background: white;
        color: #716a5c;
        font-weight: 600;
        border-radius: 50px;  /* Match border radius with other links */
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    nav a:hover {
        background: rgba(255, 255, 255, 0.1);
        transform: translateY(-2px);
    }

    .music-grid {
        padding: 20px;
    }

    .filter-controls {
        flex-direction: column;
        gap: 15px;
        margin: -10px -10px 20px -10px;
        border-radius: 0 0 15px 15px;
        position: sticky;
        top: 70px;
        z-index: 5;
    }

    .filter-group {
        width: 100%;
        overflow-x: auto;
        padding-bottom: 5px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .filter-group::-webkit-scrollbar {
        display: none;
    }

    .filter-btn {
        white-space: nowrap;
        padding: 8px 16px;
        font-size: 14px;
    }

    .sort-group {
        width: 100%;
    }

    .sort-select {
        width: 100%;
        padding: 12px 20px;
    }

    .masonry-grid {
        columns: 1;
        column-gap: 15px;
    }

    .card-container {
        margin-bottom: 15px;
    }

    .year-timeline {
        margin: 20px 0;
        height: 40px;
    }

    .timeline-marker {
        width: 16px;
        height: 16px;
    }

    .timeline-marker::after {
        font-size: 12px;
        top: 25px;
    }

    /* Modal adjustments */
    .modal-content {
        padding: 20px;
        margin: 10px;
    }

    .modal-header {
        margin-bottom: 15px;
    }

    .modal-title {
        font-size: 24px;
    }

    .modal-body {
        flex-direction: column;
        gap: 20px;
    }

    .modal-visuals {
        max-height: 200px;
    }

    .waveform-preview {
        padding: 15px;
    }

    .preview-controls {
        gap: 10px;
    }

    .platform-links {
        grid-template-columns: 1fr;
    }

    /* Hero section adjustments */
    .hero-content h1 {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 16px;
    }
}

@media (max-width: 1200px) {
    .filter-btn {
        padding: 6px 12px;
        font-size: 13px;
    }

    .card-overlay h3 {
        font-size: 20px;
    }

    .card-overlay p {
        font-size: 12px;
    }

    .release-tag {
        font-size: 11px;
        padding: 3px 6px;
    }

    .modal-content {
        padding: 15px;
    }
}

/* Add touch interaction improvements */
@media (hover: none) {
    .card-container {
        transform: none !important;
    }

    .card-overlay {
        background: linear-gradient(
            to top,
            rgba(113, 106, 92, 0.0) 0%,
            rgba(113, 106, 92, 0.4) 30%,
            transparent 100%
        );
    }

    .filter-btn:active {
        transform: scale(0.95);
    }

    .platform-link:active {
        transform: translateY(-2px);
    }
}

/* Fix iOS 100vh issue */
@supports (-webkit-touch-callout: none) {
    .hero-fullscreen {
        height: -webkit-fill-available;
    }
}

/* Improve tap targets */
.filter-btn,
.sort-select,
.platform-link {
    min-height: 44px;
    min-width: 44px;
}


/* Responsive Design Updates */
@media (max-width: 768px) {
    /* Hero Section */
    .hero-content h1 {
        font-size: 4rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
        margin: 1rem 0 2rem;
    }

    /* Latest Release */
    .latest-release-content {
        flex-direction: column;
        height: auto;
    }

    .latest-release-image {
        max-width: 100%;
        min-width: 100%;
        height: 300px;
    }

    .latest-release-info {
        padding: 40px 20px;
    }

    .latest-release-info .info h3 {
        font-size: 32px;
    }

    .latest-release-info .info p {
        font-size: 16px;
    }


    .streaming-links {
        grid-template-columns: 1fr;
    }

    .countdown-timer {
        gap: 10px;
        padding: 15px;
    }

    .countdown-item {
        min-width: 60px;
        padding: 8px;
    }

    .countdown-item span:first-child {
        font-size: 24px;
    }


    /* Footer */
    .footer-modern {
        padding: 40px 20px;
    }

    /* Reorder coming soon section on mobile */
    .coming-soon-section .latest-release-content {
        flex-direction: column-reverse !important;
    }

    .coming-soon-section .latest-release-image {
        max-width: 100%;
        min-width: 100%;
        height: 300px;
    }

    .hamburger {
        display: flex;
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(113, 106, 92, 0.98);
        backdrop-filter: blur(10px);
        padding: 100px 40px 40px;
        z-index: 1000;
        transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 30px;
        opacity: 0;
    }

    nav.active {
        right: 0;
        opacity: 1;
    }

    nav a {
        font-size: 24px;
        padding: 15px 30px;
        width: auto;
        text-align: center;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.1);
        transform: translateX(50px);
        opacity: 0;
        transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
    }

    nav.active a {
        transform: translateX(0);
        opacity: 1;
    }

    nav.active a:nth-child(1) { transition-delay: 0.1s; }
    nav.active a:nth-child(2) { transition-delay: 0.2s; }
    nav.active a:nth-child(3) { transition-delay: 0.3s; }




    body.menu-open {
        overflow: hidden;
    }

    /* Adjust the mobile menu background overlay */
    nav::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(
            circle at top right,
            rgba(255, 255, 255, 0.1),
            transparent 70%
        );
        pointer-events: none;
    }

    /* Enhanced mobile nav links */
    nav a:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: translateY(-2px);
    }

    nav a.active {
        background: white;
        color: #716a5c;
        font-weight: 600;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }
}

@media (max-width: 1200px) {
    .music-grid {
        padding: 3rem 1rem;
    }


    .release-meta {
        flex-direction: column;
        gap: 10px;
    }

    .primary-button, 
    .listen-button {
        padding: 12px 24px;
        font-size: 15px;
    }

    .countdown-timer {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Add smooth touch interactions */
@media (hover: none) {
    .listen-button:active,
    .primary-button:active {
        transform: scale(0.95);
    }

    .card-container:active img {
        transform: scale(1.02);
    }
}

/* Fix viewport height issues on mobile */
.hero-fullscreen {
    height: 100dvh;
}

/* Improve touch targets */
.social-icons a {
    padding: 10px;
}

.close-modal {
    margin: -5px;
}

/* Enhanced Discography Sections */
.music-grid {
    background: linear-gradient(180deg, #e0d5c1 0%, #d5c9b3 100%);
    padding: 40px;
}

.music-section {
    max-width: 1400px;
    margin: 0 auto 80px;
}

.music-section:last-child {
    margin-bottom: 0;
}

/* Enhanced Section Titles */
.section-title {
    display: flex;
    align-items: baseline;
    margin-bottom: 40px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(113, 106, 92, 0.2);
    color: #716a5c;
}

.section-title::after {
    content: attr(data-count);
    font-size: 18px;
    margin-left: 15px;
    opacity: 0.7;
}

/* Enhanced Card Grid Layout */
.album-list, .single-list, .collection-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.card-container {
    aspect-ratio: 1;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-container:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Add staggered animation for sections */
.music-section:nth-child(2) .album-list { animation-delay: 0.2s; }
.music-section:nth-child(3) .single-list { animation-delay: 0.4s; }
.music-section:nth-child(4) .collection-list { animation-delay: 0.6s; }

@media (max-width: 768px) {
    .music-grid {
        padding: 20px;
    }

    .album-list, .single-list, .collection-list {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }

    .section-title {
        font-size: 24px;
        margin-bottom: 30px;
    }
}

/* Enhanced Modal Styles */
.album-modal {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s cubic-bezier(0.19, 1, 0.22, 1),
                visibility 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.album-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    transform: translateY(30px) scale(0.95);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1),
                opacity 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    max-width: 800px;
    width: 90%;
    margin: 20px;
    overflow: hidden;
    position: relative;
}

.album-modal.active .modal-content {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.modal-background-video {
    transform: scale(1.2);
    transition: transform 8s ease;
}

.album-modal.active .modal-background-video {
    transform: scale(1.1);
}

.modal-info-content, .modal-platforms {
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1),
                opacity 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.album-modal.active .modal-info-content {
    transform: translateY(0);
    opacity: 1;
    transition-delay: 0.2s;
}

.album-modal.active .modal-platforms {
    transform: translateY(0);
    opacity: 1;
    transition-delay: 0.3s;
}

.platform-link {
    transform: translateX(-20px);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1),
                opacity 0.5s cubic-bezier(0.19, 1, 0.22, 1),
                background-color 0.3s ease;
}

.album-modal.active .platform-link {
    transform: translateX(0);
    opacity: 1;
}

.album-modal.active .platform-link:nth-child(1) { transition-delay: 0.4s; }
.album-modal.active .platform-link:nth-child(2) { transition-delay: 0.45s; }
.album-modal.active .platform-link:nth-child(3) { transition-delay: 0.5s; }
.album-modal.active .platform-link:nth-child(4) { transition-delay: 0.55s; }
.album-modal.active .platform-link:nth-child(5) { transition-delay: 0.6s; }

/* ...existing code... */

/* ...existing code... */

.filter-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: rgba(113, 106, 92, 0.1);
    border-radius: 15px;
}

.filter-group {
    display: flex;
    gap: 10px;
}

.filter-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 30px;
    background: rgba(113, 106, 92, 0.2);
    color: #716a5c;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn.active {
    background: #716a5c;
    color: white;
}

.sort-select {
    padding: 10px 20px;
    border-radius: 30px;
    border: 1px solid rgba(113, 106, 92, 0.2);
    background: white;
    cursor: pointer;
}

.year-timeline {
    position: relative;
    height: 60px;
    margin: 40px 0;
}

.timeline-track {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: rgba(113, 106, 92, 0.2);
}

.timeline-marker {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #716a5c;
    cursor: pointer;
    transition: all 0.3s ease;
}

.timeline-marker::after {
    content: attr(data-year);
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 14px;
}

.masonry-grid {
    columns: 3 300px;
    column-gap: 20px;
    transition: opacity 0.3s ease;
    margin: 0 auto; /* Center the grid container */
    max-width: 1400px; /* Maximum width for larger screens */
}

.card-container {
    break-inside: avoid;
    margin-bottom: 20px;
    opacity: 0;
    margin-left: auto; /* Center individual cards */
    margin-right: auto;
}

@media (max-width: 768px) {
    .masonry-grid {
        columns: 1;
        column-gap: 15px;
        padding: 0 20px; /* Add padding on mobile */
        max-width: 500px; /* Limit width on mobile for better centering */
    }

    .card-container {
        width: 100%; /* Make cards full width of their container */
        margin-bottom: 20px;
    }
}

@keyframes cardAppear {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.filter-controls {
    position: sticky;
    top: 80px;
    z-index: 5;
    background: rgba(224, 213, 193, 0.9);
    backdrop-filter: blur(10px);
    margin: -20px -20px -20px -20px;
    padding: 20px;
    border-radius: 0 0 15px 15px;
}

.filter-btn {
    position: relative;
    overflow: hidden;
}

.filter-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.filter-btn:hover::before {
    transform: translateX(0);
}

/* ...rest of existing code... */

/* Enhanced Modal Styles */
.modal-header {
    position: relative;
    z-index: 2;
}

.release-type {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
    font-size: 14px;
    margin-bottom: 10px;
}

.waveform-preview {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 20px;
    margin-top: 20px;
}

.preview-controls {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 10px;
}

.preview-play {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: white;
    color: #716a5c;
    cursor: pointer;
    transition: all 0.3s ease;
}

.preview-progress {
    flex: 1;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    position: relative;
}

/* ...rest of existing styles... */

/* ...existing code... */

/* ...existing code... */

.card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(113, 106, 92, 0.8) 0%,
        rgba(113, 106, 92, 0.4) 50%,
        rgba(113, 106, 92, 0) 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.card-container:hover .card-overlay {
    opacity: 1;
}

.release-tag {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 8px;
    border-radius: 4px;
    color: white;
    width: fit-content;
    margin-bottom: 8px;
}

.card-overlay h3 {
    color: white;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 4px;
}

.card-overlay p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

/* ...rest of existing code... */

/* ...existing code... */

.filter-divider {
    height: 2px;
    background: rgba(113, 106, 92, 0.2);
    margin-top: 20px;
    width: 100%;
}

/* Remove these timeline-related styles */
.year-timeline,
.timeline-track,
.timeline-marker {
    display: none;
}

/* ...rest of existing code... */

/* Modern Modal Styles */
.album-modal {
    position: fixed;
    inset: 0;
    backdrop-filter: blur(10px);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.modal-content {
    position: relative;
    width: 90%;
    max-width: 1200px;
    margin: 40px auto;    
    border-radius: 20px;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.modal-background {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #716a5c, #413d36);
    opacity: 0.95;
}

.modal-layout {
    position: relative;
    display: grid;
    grid-template-columns: minmax(300px, 2fr) 3fr;
    gap: 40px;
    height: 100%;
    padding: 40px;
}

.modal-artwork {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    width: 100%;
    max-width: 400px;
    height: fit-content;
    align-self: center;
}

.modal-artwork img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.artwork-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0,0,0,0.2) 0%, transparent 100%);
}

.modal-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
    color: white;
    overflow-y: auto;
    padding-right: 10px;
}

.modal-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 20px;
}

.release-type {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    font-size: 14px;
    margin-bottom: 15px;
}

.modal-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.2;
}

.preview-section,
.streaming-section {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 25px;
    margin-top: 20px;
}

.preview-section h3,
.streaming-section h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.8);
}

.preview-controls {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 15px;
}

.preview-timeline {
    flex: 1;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.preview-progress {
    height: 100%;
    background: white;
    width: 0;
    transition: width 0.1s linear;
}

.platform-links {
    display: grid;
    gap: 15px;
}

/* Active States */
.album-modal.active {
    opacity: 1;
    visibility: visible;
}

.album-modal.active .modal-content {
    opacity: 1;
    transform: translateY(0);
}



@media (max-width: 1200px) {
    .modal-content {
        width: 100%;
        height: 100vh;
        max-height: none;
        border-radius: 0;
    }
    .modal-layout {
        padding: 20px;
        gap: 15px;
    }
    .platform-links {
        grid-template-columns: 1fr;}
    }
    .modal-background {
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(113, 106, 92, 0.95), rgba(65, 61, 54, 0.95));
        overflow: hidden;
    }
    .modal-background-video {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: -1;
        opacity: 0.3;
        transform: scale(1.2);
        filter: blur(10px);
        transition: transform 8s ease;
    }
    .album-modal.active .modal-background-video {
        transform: scale(1.1);
    }    
    .modal-layout {
        position: relative;
        display: flex;
        gap: 40px;
        height: 100%;
        padding: 40px;
    }
    .modal-artwork {
        flex: 0 0 400px;
        height: fit-content;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    }
    .modal-details {
        flex: 1;
        display: flex;    
        flex-direction: column;    
        gap: 30px;    
        overflow-y: auto;    
        padding-right: 10px;
    }
    .modal-body {
        display: flex;    
        flex-direction: column;    
        gap: 30px;
    }
    .modal-description {
        font-size: 16px;
        line-height: 1.6;
        color: rgba(255, 255, 255, 0.9);
    }        
.album-modal {
    padding: 40px;
}

.modal-content {
    width: min(95%, 1200px);
    max-height: 90vh;
    margin: auto;
    background: rgba(17, 17, 17, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(20px);
    overflow: hidden;
    
}

.modal-layout {
    display: flex;   
    max-height: calc(90vh - 80px);
    overflow: hidden;
}

.modal-artwork {
    flex: 0 0 400px;
    margin: 40px;
}

.modal-details {
    flex: 1;
    margin: 40px 40px 40px 40px;
    overflow-y: auto;
}

.modal-body {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.streaming-section {
    margin-top: auto;
    padding-top: 30px;
}


@media (max-width: 1200px) {
    .album-modal {
        padding: 0;
    }

    .modal-content {
        width: 100%;
        height: 100%;
        border-radius: 0;
        margin: 0;
        padding: 0;
        padding-top: 50px;
        overflow-y: auto;
    }

    .modal-artwork {
        margin: 20px auto;
    }

    .modal-details {
        margin: 0 20px 20px;
    }
}

/* ...rest of existing code... */

/* ...existing code... */

/* Remove preview-related styles */
.preview-section,
.preview-controls,
.preview-timeline,
.preview-progress,
.preview-play,
.waveform-preview,
.waveform-container {
    display: none;
}

/* ...rest of existing code... */

/* ...existing code... */

/* Modal Layout Styles */
.modal-layout {
    position: relative;
    display: grid;
    grid-template-columns: minmax(300px, 2fr) 3fr;
    gap: 40px;
    height: 100%;
    padding: 40px;
}

.modal-artwork {
    position: relative;
    height: fit-content;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    width: 100%;
    max-width: 400px;
    height: fit-content;
    align-self: center;
}

.modal-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
    color: white;
    overflow-y: auto;
    padding-right: 10px;
}

/* Mobile Responsive */


/* ...rest of existing code... */

/* ...existing code... */

/* Enhanced Modal Responsive Styles */
@media (max-width: 768px) {
    .modal-content {
        width: 100%;
        height: 100%;
        border-radius: 0;
        margin: 0;
        padding: 0;
        padding-top: 50px;
        overflow-y: auto;
    }

    .modal-layout {
        grid-template-columns: 1fr;
        padding: 20px;
        gap: 20px;
        height: auto;
        min-height: 100%;
    }

    .modal-artwork {
        max-width: 280px;
        margin: 20px auto;
    }

    .modal-details {
        padding-right: 0;
    }

    .modal-title {
        font-size: 28px;
        line-height: 1.3;
    }

    .platform-links {
        grid-template-columns: 1fr;
    }

    .streaming-section {
        padding: 20px;
    }

    .streaming-section h3 {
        font-size: 16px;
    }

    .platform-link {
        padding: 12px;
        font-size: 14px;
    }

    .close-modal {
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 1200px) {
    .modal-layout {
        padding: 15px;
    }

    .modal-artwork {
        max-width: 240px;
    }

    .modal-title {
        font-size: 24px;
    }

    .modal-description {
        font-size: 14px;
    }

    .modal-date {
        font-size: 13px;
    }

    .release-type {
        font-size: 12px;
        padding: 4px 10px;
    }
}

/* ...existing code... */

@media (max-width: 1200px) {
    .album-modal {
        padding: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow-y: auto;
    }

    .modal-content {
        width: 100%;
        max-width: 500px;
        height: auto;
        max-height: 90vh;
        margin: auto;
        border-radius: 20px;
        display: flex;
        flex-direction: column;
    }

    .modal-layout {
        grid-template-columns: 1fr;
        padding: 30px;
        gap: 25px;
        height: auto;
        overflow-y: auto;
    }

    .modal-artwork {
        max-width: 280px;
        margin: 0 auto;
    }

    .modal-details {
        margin: 0;
        padding: 0;
    }

    .streaming-section {
        margin-top: 20px;
    }
}

/* ...existing code... */

/* ...existing code... */

.sort-group {
    position: relative;
}

.sort-select {
    appearance: none;
    -webkit-appearance: none;
    padding: 10px 40px 10px 20px;
    border-radius: 30px;
    border: 1px solid rgba(113, 106, 92, 0.2);
    background: rgba(113, 106, 92, 0.1);
    color: #716a5c;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Roboto', sans-serif;
    min-width: 160px;
}

.sort-group::after {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #716a5c;
    pointer-events: none;
    transition: transform 0.3s ease;
}

.sort-group:hover::after {
    transform: translateY(-50%) rotate(180deg);
}

.sort-select:hover {
    background: rgba(113, 106, 92, 0.2);
    border-color: rgba(113, 106, 92, 0.3);
}

.sort-select:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(113, 106, 92, 0.3);
    background: rgba(113, 106, 92, 0.15);
}

/* Update filter controls layout */
.filter-controls {
    gap: 20px;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .sort-select {
        width: 100%;
        min-width: unset;
    }

    .sort-group {
        width: 100%;
    }
}

/* ...existing code... */

/* ...existing code... */

.released-message {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    animation: fadeInScale 0.5s ease forwards;
    animation-iteration-count: 1;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    position: relative;
    overflow: hidden;
}

.released-message::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.1), transparent 70%);
    pointer-events: none;
}

.released-message i {
    font-size: 48px;
    color: #f1e9db;
    margin-bottom: 5px;
    animation: pulseGlow 2s ease-in-out infinite;
}

.released-message span {
    font-size: 32px;
    font-weight: 700;
    color: white;
    letter-spacing: 3px;
    text-transform: uppercase;
    background: linear-gradient(45deg, #fff 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.released-message p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 5px;
    font-weight: 300;
    letter-spacing: 1px;
}

@keyframes pulseGlow {
    0%, 100% { 
        transform: scale(1);
        filter: brightness(1);
    }
    50% { 
        transform: scale(1.05);
        filter: brightness(1.2);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ...existing code... */

/* ...existing code... */

.released-message {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 20px;
    animation: fadeInScale 0.5s ease forwards;
    animation-iteration-count: 1; /* Ensure animation only plays once */
}

/* Add animation-fill-mode to maintain final state */
@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
        animation-fill-mode: forwards;
    }
}

/* ...existing code... */

/* ...existing code... */

.spotlight-release {
    display: flex;
    min-height: 600px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 24px;
    overflow: hidden;
    position: relative;
}

.spotlight-release.inverted {
    flex-direction: row-reverse;
}

.release-visual {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.release-visual img,
.release-visual video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    transition: transform 0.7s ease, opacity 0.7s ease;
}

.release-visual video {
    opacity: 0;
}

.visual-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        transparent 0%,
        rgba(113, 106, 92, 0.3) 100%
    );
}

.visual-overlay.gradient {
    background: linear-gradient(
        to left,
        transparent 0%,
        rgba(113, 106, 92, 0.3) 100%
    );
}

.release-content {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, rgba(113, 106, 92, 0.95), rgba(93, 87, 75, 0.95));
    position: relative;
    z-index: 1;
}

.release-tag {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    color: white;
    margin-bottom: 24px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.release-content h2 {
    font-size: 48px;
    color: white;
    margin-bottom: 16px;
    font-weight: 700;
    line-height: 1.2;
}

.release-metadata {
    display: flex;
    gap: 24px;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.8);
}

.release-metadata span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.release-content p {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
    max-width: 500px;
}

.action-buttons {
    display: flex;
    gap: 16px;
}

.stream-button, .notify-button {
    padding: 16px 32px;
    border-radius: 30px;
    border: none;
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.stream-button {
    background: white;
    color: #716a5c;
}

.notify-button {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stream-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.notify-button:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.spotlight-release:hover .release-visual video {
    opacity: 1;
}

.spotlight-release:hover .release-visual img {
    opacity: 0;
}

@media (max-width: 768px) {
    .spotlight-release {
        flex-direction: column;
        min-height: auto;
    }

    .spotlight-release.inverted {
        flex-direction: column;
    }

    .release-visual {
        height: 300px;
    }

    .release-content {
        padding: 40px;
    }

    .release-content h2 {
        font-size: 32px;
    }

    .release-metadata {
        flex-direction: column;
        gap: 12px;
    }

    .action-buttons {
        flex-direction: column;
        gap: 12px;
    }
}

/* ...existing code... */

/* ...existing code... */

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(0, 0, 0, 0.6) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    text-align: center;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

.primary-button,
.secondary-button {
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.primary-button {
    background: white;
    color: #716a5c;
}

.secondary-button {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.releases-section {
    padding: 100px 40px;
    background: linear-gradient(180deg, #e0d5c1 0%, #d5c9b3 100%);
}

.release-card {
    display: flex;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 60px;
}

.release-card.inverted {
    flex-direction: row-reverse;
}

.release-visual {
    flex: 1;
    position: relative;
    min-height: 500px;
    overflow: hidden;
}

.release-visual img,
.release-visual video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.5s ease;
}

.release-visual video {
    opacity: 0;
    transform: scale(1.05);
}

.release-card:hover .release-visual video {
    opacity: 1;
    transform: scale(1);
}

.release-card:hover .release-visual img {
    opacity: 0;
    transform: scale(1.1);
}

.release-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    font-size: 13px;
    font-weight: 500;
    color: white;
    margin-bottom: 24px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin-right: auto;
}

.release-badge::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        45deg,
        rgba(255, 255, 255, 0.1),
        rgba(255, 255, 255, 0.05)
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.release-badge.upcoming {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.25);
    color: rgba(255, 255, 255, 0.9);
}

.release-card:hover .release-badge::before {
    opacity: 1;
}

.release-badge::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        circle at top right,
        rgba(255, 255, 255, 0.1),
        transparent 70%
    );
    pointer-events: none;
}

@media (max-width: 768px) {
    .release-badge {
        padding: 6px 12px;
        font-size: 12px;
        margin-bottom: 16px;
    }
}

.release-badge.upcoming {
    background: rgba(113, 106, 92, 0.2);
    color: #716a5c;
}

.release-content {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: rgba(113, 106, 92, 0.95);
}

.release-info {
    display: flex;
    gap: 20px;
    margin: 20px 0;
    color: rgba(255, 255, 255, 0.8);
}

.quick-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.quick-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 40px 30px;
    background: rgba(113, 106, 92, 0.08);
    border: 1px solid rgba(113, 106, 92, 0.1);
    border-radius: 20px;
    text-decoration: none;
    color: #716a5c;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.quick-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.1), transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.quick-link:hover {
    background: rgba(113, 106, 92, 0.12);
    transform: translateY(-5px);
    border-color: rgba(113, 106, 92, 0.2);
}

.quick-link:hover::before {
    opacity: 1;
}

.quick-link i {
    font-size: 32px;
    color: #716a5c;
    transition: transform 0.3s ease;
}

.quick-link:hover i {
    transform: scale(1.1);
}

.quick-link h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 0;
    color: #413d36;
}

.quick-link p {
    font-size: 14px;
    color: rgba(113, 106, 92, 0.8);
    margin: 0;
    text-align: center;
}

.platform-icons, .socials-preview {
    display: flex;
    gap: 20px;
    margin-top: 10px;
}

.platform-icons i, .social-stat i {
    font-size: 24px;
    color: #716a5c;
    transition: all 0.3s ease;
}

.counter {
    font-size: 15px;
    font-weight: 500;
    padding: 8px 16px;
    background: rgba(113, 106, 92, 0.1);
    border-radius: 20px;
    color: #716a5c;
    transition: all 0.3s ease;
    margin-top: 15px;
}

.quick-link:hover .counter {
    background: rgba(113, 106, 92, 0.2);
    transform: scale(1.05);
}

.quick-link i {
    font-size: 24px;
}

.quick-link:hover {
    background: rgba(113, 106, 92, 0.2);
    transform: translateY(-5px);
}

@media (max-width: 768px) {
    .hero-cta {
        flex-direction: column;
        padding: 0 20px;
    }

    .release-card {
        flex-direction: column;
    }

    .release-card.inverted {
        flex-direction: column;
    }

    .release-visual {
        min-height: 300px;
    }

    .release-content {
        padding: 40px;
    }

    .quick-links {
        grid-template-columns: 1fr;
        padding: 20px;
    }
}

/* ...rest of existing code... */

/* ...existing code... */

.quick-access {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1400px;
    margin: 60px auto 0;
    padding: 0 20px;
}

@media (max-width: 768px) {
    .quick-access {
        grid-template-columns: 1fr;
        gap: 15px;
        margin: 40px auto 0;
    }

    .quick-link {
        padding: 30px 20px;
    }

    .quick-link i {
        font-size: 28px;
    }

    .quick-link h3 {
        font-size: 20px;
        margin-bottom: 8px;
    }

    .quick-link p {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .platform-icons {
        gap: 20px;
    }

    .platform-icons i {
        font-size: 22px;
    }

    .socials-preview {
        gap: 20px;
    }

    .social-stat {
        width: 45px;
        height: 45px;
    }

    .social-stat i {
        font-size: 18px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .quick-access {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* ...existing code... */

.quick-link.newsletter .newsletter-form {
    display: flex;
    gap: 10px;
    width: 100%;
    margin-top: 10px;
}

.newsletter-form input[type="email"] {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid rgba(113, 106, 92, 0.2);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
    color: #716a5c;
    font-size: 14px;
    transition: all 0.3s ease;
}

.newsletter-form input[type="email"]:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(113, 106, 92, 0.3);
}

.newsletter-form input[type="email"]::placeholder {
    color: rgba(113, 106, 92, 0.6);
}

.newsletter-form .subscribe-btn {
    padding: 10px 20px;
    min-width: 80px;
}

@media (max-width: 768px) {
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form .subscribe-btn {
        width: 100%;
    }
}

/* ...rest of existing code... */

/* ...existing code... */

.socials-preview {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

.social-stat {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(113, 106, 92, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    position: relative;
    overflow: hidden;
}

.social-stat::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-stat:hover {
    background: rgba(113, 106, 92, 0.2);
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
}

.social-stat:hover::before {
    opacity: 1;
}

.social-stat i {
    font-size: 20px;
    color: #716a5c;
    transition: transform 0.3s ease;
    z-index: 1;
}

.social-stat:hover i {
    transform: scale(1.1);
    color: #413d36;
}

@media (max-width: 768px) {
    .social-stat {
        width: 54px;
        height: 54px;
        border-radius: 16px;
    }

    .social-stat i {
        font-size: 22px;
    }
}

/* ...existing code... */

/* ...existing code... */

.platform-icons {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.platform-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(113, 106, 92, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    position: relative;
    overflow: hidden;
}

.platform-icons a::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.platform-icons a:hover {
    background: rgba(113, 106, 92, 0.2);
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
}

.platform-icons a:hover::before {
    opacity: 1;
}

.platform-icons i {
    font-size: 20px;
    color: #716a5c;
    transition: transform 0.3s ease;
    z-index: 1;
}

.platform-icons a:hover i {
    transform: scale(1.1);
    color: #413d36;
}

@media (max-width: 768px) {
    .platform-icons a {
        width: 54px;
        height: 54px;
        border-radius: 16px;
    }

    .platform-icons i {
        font-size: 22px;
    }
}

/* ...existing code... */

/* ...existing code... */

.footer-modern {
    background: linear-gradient(135deg, #716a5c, #5d574b);
    color: white;
    padding: 40px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: auto;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.1);
}

.footer-modern::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.1), transparent 70%);
    pointer-events: none;
}

.footer-modern .social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.footer-modern .social-icons a {
    color: rgba(255, 255, 255, 0.9);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    font-size: 20px;
    text-decoration: none; /* Add this line to remove underlines */
}

.footer-modern .social-icons a:hover {
    color: white;
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.footer-modern .copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {


    .footer-modern .social-icons a {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}

/* ...existing code... */

/* ...existing code... */

.listen-button.disabled {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    cursor: pointer;
    pointer-events: auto;
    border: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 1;
}

.listen-button.disabled:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.3);
}

.listen-button.disabled i {
    font-size: 16px;
    margin-right: 8px;
    transition: transform 0.3s ease;
}

.listen-button.disabled:hover i {
    transform: scale(1.1);
}

/* ...existing code... */

/* ...existing code... */

.upcoming-release .release-content {
    text-align: right;
}

.upcoming-release .release-info {
    justify-content: flex-end;
}

.upcoming-release .release-badge {
    margin-left: auto;
    margin-right: 0px;
}

.upcoming-release .release-actions {
    justify-content: flex-end;
}

.upcoming-release .listen-button {
    margin-left: auto;
}

.upcoming-release p {
    margin-left: auto;
}

/* ...existing code... */

/* ...existing code... */

.filter-controls {
    background: rgba(113, 106, 92, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(113, 106, 92, 0.1);
    border-radius: 20px;
    padding: 20px;    
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    position: sticky;
    top: 100px;
    z-index: 5;
    transition: all 0.3s ease;
}

.filter-group {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 30px;
    background: rgba(113, 106, 92, 0.1);
    color: #716a5c;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.filter-btn:hover {
    background: rgba(113, 106, 92, 0.15);
    transform: translateY(-2px);
}

.filter-btn.active {
    background: #716a5c;
    color: white;
    box-shadow: 0 4px 15px rgba(113, 106, 92, 0.2);
}

.masonry-grid {
    columns: 3 300px;
    column-gap: 30px;
    padding: 0 20px;
    transition: opacity 0.3s ease;
}

.card-container {
    break-inside: avoid;
    margin-bottom: 30px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transform: translateY(0);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.card-container img {
    width: 100%;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-container:hover {
    transform: translateY(-10px);
}

.card-container:hover img {
    transform: scale(1.05);
}

.card-overlay {
    position: absolute;
    inset: 0;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.card-container:hover .card-overlay {
    opacity: 1;
}

.release-tag {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
    color: white;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-overlay h3 {
    color: white;
    font-size: 24px;
    margin-bottom: 5px;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease 0.1s;
}

.card-overlay p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease 0.2s;
}

.card-container:hover .card-overlay h3,
.card-container:hover .card-overlay p {
    transform: translateY(0);
    opacity: 1;
}

@keyframes cardAppear {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Enhanced Modal Styles */
.album-modal .modal-content {
    background: rgba(33, 33, 33, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.modal-artwork {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}


/* ...rest of existing code... */

/* ...existing code... */

.card-container {
    break-inside: avoid;
    margin-bottom: 30px;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    transform: translateY(0);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    background: #1a1a1a;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    will-change: transform;
}

.card-container img {
    width: 100%;
    display: block;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
    will-change: transform;
}

.card-container:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.15);
}

.card-container:hover img {
    transform: scale(1.05);
}

.card-overlay {
    position: absolute;
    inset: 0;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    opacity: 0;
    transition: opacity 0.4s ease;
    backdrop-filter: blur(0);
}

.card-container:hover .card-overlay {
    opacity: 1;
    backdrop-filter: blur(2px);
}

.release-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    color: white;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.release-tag i {
    font-size: 12px;
    opacity: 0.8;
}

.card-overlay h3 {
    color: white;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 8px;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
}

.card-overlay p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
}

.card-container:hover .card-overlay .release-tag,
.card-container:hover .card-overlay h3,
.card-container:hover .card-overlay p {
    transform: translateY(0);
    opacity: 1;
}


/* ...existing code... */

/* ...existing code... */

/* Mobile Discography Enhancements */
@media (max-width: 768px) {
    .music-grid {
        padding: 20px 10px;
    }

    .filter-divider {
       margin-top: 0;
    }

    .filter-controls {
        flex-direction: column;
        gap: 15px;
        position: sticky;
        top: 80px;
        z-index: 5;
        margin: 0 0 0 0;
        padding: 15px;
        border-radius: 15px;
    }

    .filter-group {
        width: 100%;
        overflow-x: auto;
        padding: 5px;
        -webkit-overflow-scrolling: touch;
        display: flex;
        gap: 8px;
    }

    .filter-group::-webkit-scrollbar {
        display: none;
    }

    .filter-btn {
        font-size: 13px;
        padding: 10px 16px;
        white-space: nowrap;
        flex-shrink: 0;
    }

    .sort-group {
        width: 100%;
    }

    .sort-select {
        width: 100%;
        padding: 12px 15px;
        font-size: 14px;
    }

    .masonry-grid {
        columns: 1;
        column-gap: 15px;
        padding: 0 10px;
    }

    .card-container {
        margin-bottom: 15px;
    }

    .modal-layout {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px;
        height: 100%;
        overflow-y: auto;
    }

    .modal-artwork {
        max-width: 280px;
        margin: 0 auto;
    }

    .modal-title {
        font-size: 24px;
    }

    .modal-description {
        font-size: 14px;
    }

    .platform-links {
        grid-template-columns: 1fr;
        gap: 10px;
    }


}

