/* Font Faces */
@font-face {
    font-family: 'eFour Digital Pro';
    src: url('../fonts/efour_digital_pro_font.ttf') format('truetype');
}

@font-face {
    font-family: 'Lexend';
    src: url('../fonts/lexend_font.ttf') format('truetype');
}

/* General Styles */
html {
    background: linear-gradient(135deg, #4F1C6F 0%, #4F1C6F 70%, #00DEF6 100%);
    min-height: 100%;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    overflow-x: clip;
    overscroll-behavior-x: none;
}

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

body {
    font-family: 'Lexend', sans-serif;
    line-height: 1.6;
    color: white;
    background: transparent;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    overflow-x: clip;
    overscroll-behavior-x: none;
    position: relative;
    touch-action: pan-y;
}

body.release-detail-page {
    min-height: 100vh;
    width: 100%;
    overflow-x: hidden;
    background: var(--release-page-background, linear-gradient(135deg, #4F1C6F 0%, #4F1C6F 70%, #00DEF6 100%));
    background-attachment: fixed;
}

body.release-detail-page.is-loading > :not(.release-loading-overlay) {
    opacity: 0;
    pointer-events: none;
    user-select: none;
}

.release-loading-overlay {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background: rgba(15, 10, 28, 0.78);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.release-loading-overlay.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.release-loading-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    max-width: 320px;
    width: 100%;
    padding: 2rem 2.25rem;
    border-radius: 24px;
    text-align: center;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
    color: white;
}

.release-loading-card p {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.release-loading-overlay .loading-spinner {
    width: 64px;
    height: 64px;
    border-width: 5px;
}

body.release-detail-page .container {
    width: 100%;
    max-width: none;
    padding-left: clamp(16px, 4vw, 48px);
    padding-right: clamp(16px, 4vw, 48px);
}

body.release-detail-page .nav-container,
body.release-detail-page .footer .container {
    width: 100%;
    max-width: none;
    padding-left: clamp(16px, 4vw, 48px);
    padding-right: clamp(16px, 4vw, 48px);
}

body.release-detail-page .navbar,
body.release-detail-page .footer,
body.release-detail-page .release-hero,
body.release-detail-page .release-platforms-section {
    background: transparent;
}

h1, h2, h3 {
    color: #00DEF6;
    font-family: 'eFour Digital Pro', 'Lexend', sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: transparent;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 100;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-family: 'eFour Digital Pro', 'Lexend', sans-serif;
    font-size: 1.8rem;
    font-weight: bold;
    color: #00DEF6;
    cursor: default;
    user-select: none;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    opacity: 0.8;
}

/* Hero Section */
.hero {
    background: transparent;
    color: white;
    padding: 100px 20px;
    text-align: center;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    animation: slideDown 0.8s ease-out;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    animation: slideUp 0.8s ease-out 0.2s backwards;
}

.cta-button {
    display: inline-block;
    background: white;
    color: #667eea;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: slideUp 0.8s ease-out 0.4s backwards;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

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

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

/* About Section */
.about {
    background: transparent;
    padding: 60px 20px;
    text-align: center;
}

.about h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.about p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    color: #fff;
    line-height: 1.8;
}

/* Featured Section */
.featured {
    padding: 60px 20px;
    background: transparent;
}

.featured h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

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

.featured-card {
    background: #5265BB;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: inherit;
}

.featured-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: white;
    transform: scale(2);
}

.featured-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.featured-card p {
    color: white;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: transparent;
    color: white;
    text-align: center;
    padding: 2rem;
    margin-top: 2rem;
    overflow-x: clip;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 1.125rem;
    overflow-x: clip;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
}

.social-link:hover {
    background: #00DEF6;
    color: #4F1C6F;
    transform: scale(1.1);
    border-color: #00DEF6;
}

.social-link .popup {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #281E38;
    color: white;
    padding: 0.5rem 0.75rem;
    border-radius: 4px;
    font-size: 0.9rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    pointer-events: none;
    margin-bottom: 0.5rem;
    max-width: min(280px, calc(100vw - 2rem));
}

.social-link:hover .popup {
    opacity: 1;
    visibility: visible;
}

.social-link i {
    font-size: 1.5rem;
}

/* Music Page Styles */

/* Music Intro Section */
.music-intro {
    background: transparent;
    padding: 60px 20px;
    text-align: center;
}

.music-intro h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #00DEF6;
}

.intro-text {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 3rem;
    color: #fff;
    line-height: 1.8;
}

/* Slideshow Container */
.slideshow-container {
    position: relative;
    max-width: 600px;
    margin: 2rem auto;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    overflow: hidden;
}

.slides {
    position: relative;
    padding-bottom: 100%;
}

.slides img {
    display: none;
    width: 100%;
    height: auto;
    object-fit: cover;
    animation: fadeIn 0.5s ease-in-out;
}

.slides img.active {
    display: block;
}

.slides img:first-child {
    display: block;
}

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

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

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

.slide-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.3);
    color: white;
    border: none;
    font-size: 2rem;
    padding: 10px 15px;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s ease;
}

.slide-nav:hover {
    background: rgba(255, 255, 255, 0.5);
}

.slide-nav.prev {
    left: 10px;
}

.slide-nav.next {
    right: 10px;
}

.slide-dots {
    text-align: center;
    padding: 15px;
    background: rgba(0, 0, 0, 0.3);
}

.dot {
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: #00DEF6;
}

/* Releases Section */
.releases-section {
    background: transparent;
    padding: 60px 20px;
}

.releases-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

.releases-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.releases-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    min-height: 180px;
    margin: 0 auto 2rem;
    padding: 2rem;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(0, 222, 246, 0.25);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
    color: white;
    text-align: center;
}

.releases-loading.hidden {
    display: none;
}

.loading-spinner {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 4px solid rgba(255, 255, 255, 0.18);
    border-top-color: #00DEF6;
    border-right-color: #5265BB;
    animation: spin 0.9s linear infinite;
}

.releases-loading p {
    font-size: 1rem;
    color: white;
    letter-spacing: 0.02em;
}

.release-block {
    display: grid;
    grid-template-columns: minmax(180px, 20vw) minmax(0, 1fr);
    align-items: stretch;
    width: 100%;
    max-width: 100%;
    container-type: inline-size;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 250px;
    animation: releaseReveal 0.55s ease both;
    animation-delay: var(--reveal-delay, 0ms);
}

.release-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.release-cover {
    width: 100%;
    min-width: 0;
    align-self: stretch;
    overflow: hidden;
    display: flex;
    align-items: stretch;
    justify-content: stretch;
    background: linear-gradient(135deg, var(--placeholder-primary, #4F1C6F), var(--placeholder-secondary, #00DEF6));
}

.release-cover.is-placeholder {
    background: linear-gradient(135deg, var(--placeholder-primary, #4F1C6F), var(--placeholder-secondary, #00DEF6));
}

.release-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.release-cover.is-placeholder img {
    object-fit: contain;
    padding: 12px;
}

@container (max-width: 840px) {
    .release-cover img {
        object-fit: cover;
    }

    .release-cover.is-placeholder img {
        object-fit: contain;
    }
}

.release-info {
    flex: 1 1 0;
    min-width: 0;
    max-width: 100%;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: white;
}

.release-info h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: #00DEF6;
}

.release-artist {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
}

.release-date {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1.5rem;
}

.release-description {
    flex-grow: 1;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.release-description p,
.intro-text p {
    margin-bottom: 1rem;
}

.release-description p:last-child,
.intro-text p:last-child {
    margin-bottom: 0;
}

.release-description ul,
.release-description ol,
.intro-text ul,
.intro-text ol {
    margin: 0.75rem 0 1rem 1.35rem;
    padding-left: 1rem;
}

.release-description li,
.intro-text li {
    margin-bottom: 0.35rem;
}

.release-description a,
.intro-text a,
.admin-list-copy a {
    color: #00DEF6;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 0.16em;
    word-break: break-word;
    overflow-wrap: anywhere;
}

.release-description a:hover,
.intro-text a:hover,
.admin-list-copy a:hover {
    color: #7bf3ff;
}

.release-description code,
.intro-text code {
    padding: 0.1rem 0.35rem;
    border-radius: 6px;
    background: rgba(0, 0, 0, 0.18);
    font-family: monospace;
}

.release-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.release-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.release-link:hover {
    background: #00DEF6;
    color: #4F1C6F;
    transform: scale(1.1);
}

.release-link.spotify:hover {
    background: #1DB954;
}

.release-link.apple-music:hover {
    background: #FA243C;
}

.release-link.amazon-music:hover {
    background: #FF9900;
    color: #232F3E;
}

.release-link.tidal:hover {
    background: #000000;
    border-color: #00FFD0;
}

.release-link.youtube-music:hover {
    background: #FF0033;
    border-color: #FFFFFF;
}

.release-link.deezer:hover {
    background: #A237FF;
    border-color: #FFED00;
}

.release-page-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    max-width: 100%;
    margin-top: 1.25rem;
    padding: 0.9rem 1.25rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    text-decoration: none;
    font-weight: 700;
    text-align: center;
    transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.release-page-button:hover {
    background: #00DEF6;
    color: #4F1C6F;
    transform: translateY(-2px);
}

@media (max-width: 960px) {
    .release-block {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .release-cover {
        width: 100%;
        height: 200px;
    }
}

.release-detail-page {
    min-height: 100vh;
}

.release-page {
    width: 100%;
    padding-bottom: 2rem;
}

.release-hero {
    padding: 3rem 0 4rem;
    background: transparent;
}

.release-back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
    color: white;
    text-decoration: none;
    font-weight: 600;
    opacity: 0.9;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.release-back-link:hover {
    opacity: 1;
    transform: translateX(-2px);
}

.release-hero-grid {
    display: grid;
    grid-template-columns: minmax(280px, 420px) minmax(0, 1fr);
    gap: 2rem;
    align-items: center;
}

.release-artwork-panel {
    min-width: 0;
}

.release-artwork {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.release-artwork img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.release-overview {
    min-width: 0;
    padding: 0.5rem 0;
    display: flex;
    flex-direction: column;
}

.release-kicker {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.8rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    color: white;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    margin-bottom: 1rem;
    order: 1;
}

.release-overview h1 {
    font-size: clamp(2.25rem, 4vw, 4rem);
    line-height: 1.05;
    color: #00DEF6;
    margin-bottom: 1rem;
    word-break: break-word;
    order: 2;
}

.release-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1rem;
    margin-bottom: 1.25rem;
    order: 3;
}

.release-meta-separator {
    opacity: 0.7;
}

.release-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.92);
    max-width: 68ch;
    order: 4;
}

.release-facts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
    margin-top: 1.5rem;
}

.release-fact {
    border-radius: 18px;
    padding: 1rem 1.1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.12);
    min-width: 0;
}

.release-fact-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.84rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.3rem;
}

.release-fact-value {
    font-weight: 700;
    color: white;
    word-break: break-word;
}

.release-page-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 1.6rem;
    order: 5;
}

.release-page-link {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.95rem 1.2rem;
    border-radius: 999px;
    background: #00DEF6;
    color: #4F1C6F;
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
}

.release-page-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

.release-page-link-secondary {
    background: rgba(255, 255, 255, 0.14);
    color: white;
}

.release-page-link-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

.release-platforms-section {
    padding: 0 20px 60px;
}

.section-heading {
    text-align: center;
    margin-bottom: 2rem;
}

.section-heading h2 {
    font-size: clamp(1.8rem, 3vw, 2.7rem);
    margin-bottom: 0.5rem;
}

.section-heading p {
    color: rgba(255, 255, 255, 0.8);
}

.release-platform-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

.release-platform-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    min-height: 92px;
    padding: 1rem 1.1rem;
    border-radius: 20px;
    text-decoration: none;
    color: white;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.16);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    appearance: none;
    -webkit-appearance: none;
    font: inherit;
    text-align: left;
}

.release-platform-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
}

.release-platform-card:disabled,
.release-platform-card.is-unavailable {
    opacity: 0.55;
    background: rgba(255, 255, 255, 0.08);
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

.release-platform-card:disabled:hover {
    transform: none;
    box-shadow: none;
}

.release-platform-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.16);
    font-size: 1.35rem;
    flex-shrink: 0;
}

.release-platform-content {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.release-platform-name {
    font-size: 1.02rem;
    font-weight: 800;
    line-height: 1.2;
}

.release-platform-status {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.release-empty-state {
    grid-column: 1 / -1;
    padding: 1.5rem;
    border-radius: 18px;
    text-align: center;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

/* Projects Section */
.projects-section {
    background: transparent;
    padding: 60px 20px;
}

.projects-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

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

.project-block {
    border-radius: 15px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.project-block:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.project-header {
    flex-shrink: 0;
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: linear-gradient(135deg, #4F1C6F 0%, #00DEF6 100%);
}

.project-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-content {
    flex-grow: 1;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: rgba(0, 0, 0, 0.3);
}

.project-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #00DEF6;
}

.project-content p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.project-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.project-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    text-decoration: none;
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.project-link:hover {
    background: #00DEF6;
    color: #4F1C6F;
    transform: scale(1.1);
}

.project-link.spotify:hover {
    background: #1DB954;
}

.project-link.apple-music:hover {
    background: #FA243C;
}

.project-link.tidal:hover {
    background: #000000;
    color: #00FFD0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        flex-wrap: wrap;
        gap: 0.75rem;
    }

    .nav-logo {
        width: 100%;
        text-align: center;
    }

    .nav-menu {
        width: 100%;
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero {
        padding: 36px 16px;
        min-height: 280px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .about,
    .featured,
    .music-intro,
    .releases-section,
    .projects-section {
        padding-left: 16px;
        padding-right: 16px;
    }

    .music-intro {
        padding-top: 16px;
        padding-bottom: 12px;
    }

    .releases-section {
        padding-top: 12px;
        padding-bottom: 20px;
    }

    .music-intro h1,
    .about h2,
    .featured h2,
    .releases-section h2,
    .projects-section h2 {
        font-size: 2rem;
    }

    .intro-text {
        margin-bottom: 0.7rem;
        font-size: 1rem;
    }

    .featured-grid {
        grid-template-columns: 1fr;
    }

    .releases-list {
        gap: 0.6rem;
    }

    .release-block {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .release-cover {
        width: 100%;
        height: 132px;
    }

    .release-cover img {
        object-fit: cover;
    }

    .release-info {
        padding: 0.85rem 0.85rem 0.95rem;
    }

    .release-info h3 {
        font-size: 1.3rem;
    }

    .release-date {
        margin-bottom: 0.75rem;
    }

    .release-links {
        gap: 0.35rem;
    }

    .release-link {
        width: 38px;
        height: 38px;
        font-size: 1.2rem;
    }

    .release-page-button {
        margin-top: 0.75rem;
        padding: 0.7rem 0.9rem;
    }

    .release-page {
        padding-bottom: 1rem;
    }

    .release-hero {
        padding: 1.5rem 0 2rem;
    }

    .release-hero-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .release-artwork {
        max-width: 420px;
        margin: 0 auto;
    }

    .release-facts {
        grid-template-columns: 1fr;
    }

    .release-page-actions {
        flex-direction: column;
        align-items: stretch;
        order: 4;
    }

    .release-description {
        order: 5;
    }

    .release-page-link,
    .release-page-button {
        width: 100%;
    }

    body.release-detail-page {
        background-attachment: scroll;
    }

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

    .release-platform-card {
        min-height: 84px;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .project-header {
        height: 200px;
    }

    .slideshow-container {
        max-width: 100%;
    }

    .footer {
        overflow-x: clip;
    }

    .social-links {
        gap: 1rem;
    }

    .social-link .popup {
        white-space: normal;
        text-align: center;
        word-break: break-word;
        overflow-wrap: anywhere;
        max-width: min(220px, calc(100vw - 2rem));
    }
}
