/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Manrope", sans-serif;
    font-optical-sizing: auto;
    font-display: swap;
    line-height: 1.6;
    color: #000000;
    background-color: #d3fc03;
    overflow-x: hidden;
    transition: all 0.3s ease;
}

/* Back Arrow */
.back-arrow {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1001;
    background: rgba(0, 0, 0, 0.7);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.back-arrow:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: scale(1.1);
    border-color: rgba(255, 255, 255, 0.4);
}

.back-arrow a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.back-arrow a:hover {
    color: var(--primary-color);
}

/* Hide back arrow on main page */
body:not([data-current-page]) .back-arrow,
body[data-current-page="home"] .back-arrow {
    display: none;
}

/* Theme Switcher */
.theme-switcher {
    position: fixed;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
    z-index: 1000;
}

.theme-circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
}

.theme-circle:hover {
    transform: scale(1.1);
    border-color: rgba(0, 0, 0, 0.5);
}

.theme-circle.active {
    border-color: #000000;
    border-width: 3px;
}

.theme-1 {
    background: #d3fc03;
}

.theme-2 {
    background: linear-gradient(45deg, #000000, #333333);
}

.theme-3 {
    background: #8b393f;
    background-image: url('images/deathwish-icon.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    border: 2px solid #1b1b1b;
}

.theme-4 {
    background: linear-gradient(45deg, #3b82f6, #06b6d4);
}

/* Theme Variables */
:root {
    --primary-color: #d3fc03;
    --secondary-color: #000000;
    --text-color: #000000;
    --bg-color: #d3fc03;
    --accent-color: #000000;
    --font-family: "Manrope", sans-serif;
    --font-heading: "Manrope", sans-serif;
    --font-body: "Manrope", sans-serif;
}

/* Dark Theme */
[data-theme="dark"] {
    --primary-color: #d8d8d8;
    --secondary-color: #333333;
    --text-color: #ffffff;
    --bg-color: #000000;
    --accent-color: #ffffff;
    --font-family: "Manrope", sans-serif;
    --font-heading: "Manrope", sans-serif;
    --font-body: "Manrope", sans-serif;
}

/* deathwishII Theme */
[data-theme="deathwishII"] {
    --primary-color: #8b393f;
    --secondary-color: #4b1f22;
    --text-color: #1e1c20;
    --bg-color: #8b393f;
    --accent-color: #b1b1b1;
    --font-family: "Manrope", sans-serif;
    --font-heading: "Manrope", sans-serif;
    --font-body: "Manrope", sans-serif;
}

/* Blue Theme */
[data-theme="blue"] {
    --primary-color: #3b82f6;
    --secondary-color: #06b6d4;
    --text-color: #ffffff;
    --bg-color: #3b82f6;
    --accent-color: #ffffff;
    --font-family: "Manrope", sans-serif;
    --font-heading: "Manrope", sans-serif;
    --font-body: "Manrope", sans-serif;
}

/* Apply theme variables */
body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-family);
    padding-bottom: 100px; /* Space for fixed music player */
}

/* Main Content */
.main-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

/* Hero Section */
.hero {
    text-align: center;
    margin-bottom: 4rem;
    padding: 2rem 0;
}

.site-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    font-family: var(--font-heading);
}

/* Logo Image */
.site-logo {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-image {
    max-width: 300px;
    height: auto;
    border-radius: 10px;
    transition: opacity 0.3s ease;
    margin: 0 auto;
}

/* Theme-specific logo visibility */
.logo-default {
    display: block;
}

.logo-dark,
.logo-deathwishII,
.logo-blue {
    display: none;
}

/* Show correct logo based on theme */
[data-theme="dark"] .logo-default,
[data-theme="deathwishII"] .logo-default,
[data-theme="blue"] .logo-default {
    display: none;
}

[data-theme="dark"] .logo-dark {
    display: block;
}

[data-theme="deathwishII"] .logo-deathwishII {
    display: block;
}

[data-theme="blue"] .logo-blue {
    display: block;
}

.site-subtitle {
    font-size: 1.2rem;
    color: var(--text-color);
    opacity: 0.8;
    font-weight: 400;
    font-family: var(--font-body);
}

/* Navigation */
.main-nav {
    margin-bottom: 4rem;
}

.nav-list {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.nav-link {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    font-size: 1.1rem;
    transition: opacity 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.nav-link:hover {
    opacity: 0.7;
}

.nav-link.active {
    opacity: 1;
    font-weight: 600;
}

/* Content Sections */
.content-section {
    margin-bottom: 6rem;
    text-align: center;
}

.section-title {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Music Section */
.music-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: center;
}

/* Albums Grid */
.albums-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    width: 100%;
    max-width: 1000px;
}

.album-card {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.album-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.album-cover {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto 1rem;
    border-radius: 10px;
    overflow: hidden;
}

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

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.album-cover:hover .play-overlay {
    opacity: 1;
}

.play-overlay i {
    font-size: 2rem;
    color: var(--text-color);
}

.album-info {
    text-align: center;
    margin-bottom: 1rem;
}

.album-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.album-year,
.album-type {
    font-size: 0.9rem;
    color: var(--text-color);
    opacity: 0.7;
    margin: 0.2rem 0;
}

.album-tracks {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.track {
    display: flex;
    align-items: center;
    padding: 0.8rem;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    transition: background-color 0.3s ease;
    cursor: pointer;
}

.track:hover {
    background: rgba(0, 0, 0, 0.2);
}

.track-number {
    width: 20px;
    text-align: center;
    color: var(--text-color);
    opacity: 0.7;
    font-size: 0.9rem;
}

.track-title {
    flex: 1;
    color: var(--text-color);
    font-weight: 500;
    margin-left: 1rem;
}

.track-duration {
    color: var(--text-color);
    opacity: 0.7;
    font-size: 0.9rem;
    margin-right: 1rem;
}

.play-btn {
    width: 30px;
    height: 30px;
    background: var(--accent-color);
    color: var(--primary-color);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-btn:hover {
    background: var(--secondary-color);
    transform: scale(1.1);
}

/* Music Player */
.music-player {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1rem 2rem;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    max-width: none;
    margin: 0;
}

.player-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex: 0 0 auto;
    min-width: 0;
}

.player-cover {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
}

.player-details h4 {
    color: #ffffff;
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
}

.player-details p {
    color: #ffffff;
    opacity: 0.9;
    font-size: 0.9rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
}

.player-controls {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 0.5rem;
    flex: 0 0 auto;
    margin-left: 0;
    margin-right: 0.5rem;
}

.control-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.control-btn {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.control-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.play-pause-btn {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
}

/* Volume Control */
.volume-control {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    flex-shrink: 0;
    height: 60px;
    justify-content: center;
}

.volume-icon {
    color: #ffffff;
    font-size: 0.8rem;
    opacity: 0.8;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
    order: 2;
    width: 12px;
    text-align: center;
    display: inline-block;
}

.volume-slider {
    width: 4px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    outline: none;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
    order: 1;
    writing-mode: bt-lr; /* IE */
    -webkit-appearance: slider-vertical; /* WebKit */
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 14px;
    height: 14px;
    background: #ffffff;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    transition: all 0.2s ease;
}

.volume-slider::-webkit-slider-thumb:hover {
    transform: scale(1.1);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.4);
}

.volume-slider::-moz-range-thumb {
    width: 14px;
    height: 14px;
    background: #ffffff;
    border-radius: 50%;
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    transition: all 0.2s ease;
}

.volume-slider::-moz-range-thumb:hover {
    transform: scale(1.1);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.4);
}

.volume-slider::-moz-range-track {
    width: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    border: none;
}

.player-progress {
    flex: 1;
    min-width: 0;
    margin: 0 1rem;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    overflow: visible;
    margin-bottom: 0.5rem;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: #ffffff;
    width: 0%;
    transition: width 0.1s ease;
    position: relative;
}

.progress-fill::after {
    content: '';
    position: absolute;
    right: -12px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background-image: url('images/progress-thumb-default.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* Theme-specific progress bar thumbs */
[data-theme="default"] .progress-fill::after {
    background-image: url('images/progress-thumb-default.png');
    width: 16px;
    height: 16px;
}

[data-theme="dark"] .progress-fill::after {
    background-image: url('images/progress-thumb-dark.png');
    width: 16px;
    height: 16px;
}

[data-theme="deathwishII"] .progress-fill::after {
    background-image: url('images/progress-thumb-deathwish.png');
    width: 30px;
    height: 30px;
    right: -13px;
}

[data-theme="blue"] .progress-fill::after {
    background-image: url('images/progress-thumb-blue.png');
    width: 30px;
    height: 30px;
    right: -15px;
}

.time-display {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: #ffffff;
    opacity: 0.9;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
}

/* Global Music Player */
.global-music-player {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1rem 2rem;
    z-index: 10000;
    transition: transform 0.3s ease;
    display: none; /* Hidden by default */
}



.global-music-player.minimized {
    transform: translateY(calc(100% - 60px));
}

.player-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0;
}

.player-actions {
    display: flex;
    gap: 0.5rem;
    margin-left: 0;
}

.action-btn {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    font-size: 0.8rem;
}

.action-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

/* Dynamic Content */
.dynamic-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
    z-index: 1;
    background-color: var(--bg-color);
    min-height: 100vh;
}

/* Loading state */
.loading {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    font-size: 1.2rem;
    color: var(--text-color);
    opacity: 0.7;
}

.loading::after {
    content: '';
    width: 20px;
    height: 20px;
    border: 2px solid var(--text-color);
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-left: 10px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.dynamic-content .back-link {
    text-align: center;
    margin-top: 3rem;
}

/* Back Link */
.back-link {
    text-align: center;
    margin-top: 3rem;
}

.back-link .external-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1rem;
}

.back-link .external-link i {
    font-size: 0.9rem;
}

/* Art Content */
.art-content {
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.art-header {
    text-align: center;
    margin-bottom: 3rem;
}

.art-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.art-header p {
    font-size: 1.2rem;
    color: var(--text-color);
    opacity: 0.8;
}

/* Art Gallery */
.art-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.art-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    height: 0;
    padding-bottom: 100%; /* This creates a square aspect ratio */
}

.art-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.art-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
    background: #f0f0f0;
}

.art-item:hover .art-image {
    transform: scale(1.05);
}

.art-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.art-item:hover .art-overlay {
    transform: translateY(0);
}

.art-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.art-description {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 0.5rem;
}

.art-year {
    font-size: 0.8rem;
    opacity: 0.7;
}

/* Art Categories */
.art-categories {
    text-align: center;
    margin: 3rem 0;
}

.categories-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.category-tags {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.category-tag {
    padding: 0.8rem 1.5rem;
    background: rgba(0, 0, 0, 0.1);
    color: var(--text-color);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.category-tag:hover,
.category-tag.active {
    background: var(--accent-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* Art Links */
.art-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin: 3rem 0;
}

/* Instagram Viewer */
.instagram-viewer {
    position: relative;
    width: 100%;
    height: 80vh;
    overflow: hidden;
    border-radius: 20px;
    margin: 2rem 0;
}

.instagram-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.instagram-slide.active {
    opacity: 1;
}

.instagram-image {
    width: 100%;
    height: 100%;
    position: relative;
}

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

.instagram-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.instagram-slide:hover .instagram-overlay {
    opacity: 1;
}

.instagram-overlay .instagram-info {
    text-align: center;
    color: white;
    padding: 2rem;
    max-width: 500px;
}

.instagram-overlay h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.instagram-overlay p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.instagram-overlay .instagram-link {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.instagram-overlay .instagram-link:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.5);
}

.instagram-nav {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.instagram-dots {
    display: flex;
    gap: 1rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: white;
    transform: scale(1.2);
}

/* Responsive Instagram Viewer */
@media (max-width: 768px) {
    .instagram-viewer {
        height: 60vh;
        margin: 1rem 0;
    }
    
    .instagram-overlay h3 {
        font-size: 2rem;
    }
    
    .instagram-overlay p {
        font-size: 1rem;
    }
    
    .instagram-overlay .instagram-link {
        padding: 0.8rem 1.5rem;
    }
    
    .instagram-nav {
        bottom: 1rem;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
}

.instagram-info {
    text-align: center;
    margin: 3rem 0;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 15px;
}

.instagram-title {
    font-size: 2rem;
    color: var(--text-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.instagram-description {
    color: var(--text-color);
    opacity: 0.8;
    font-size: 1.1rem;
}

/* Art Modal */
.art-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    animation: fadeIn 0.3s ease;
}

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

.modal-content {
    position: relative;
    margin: 5% auto;
    width: 80%;
    max-width: 700px;
    height: 70vh;
    background: var(--bg-color);
    border-radius: 15px;
    overflow: hidden;
    animation: modalSlideIn 0.3s ease;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    display: flex;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    color: var(--text-color);
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 2001;
    transition: color 0.3s ease;
}

.close-btn:hover {
    color: var(--accent-color);
}

.modal-image-container {
    flex: 0 0 60%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
}

.modal-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.modal-info {
    flex: 0 0 40%;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow-y: auto;
}

.modal-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.modal-description {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-color);
    opacity: 0.9;
}

.modal-year {
    font-size: 1rem;
    color: var(--text-color);
    opacity: 0.6;
}

.modal-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    pointer-events: none;
}

.modal-btn {
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.modal-btn:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: scale(1.1);
}

/* Responsive Design for Art */
@media (max-width: 768px) {
    .art-gallery {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .art-image {
        height: 250px;
    }
    
    .modal-content {
        width: 95%;
        margin: 5% auto;
    }
    
    .modal-image {
        height: 300px;
    }
    
    .modal-title {
        font-size: 1.5rem;
    }
    
    .category-tags {
        gap: 0.5rem;
    }
    
    .category-tag {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
}

.release-item {
    background: rgba(0, 0, 0, 0.1);
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.release-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.release-item p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--text-color);
    opacity: 0.8;
}

.external-link {
    display: inline-block;
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 0.8rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.external-link:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.music-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.platform-link {
    background: rgba(0, 0, 0, 0.1);
    color: var(--text-color);
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.platform-link:hover {
    background: rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

/* Art Section */
.art-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--text-color);
    opacity: 0.8;
}


.art-placeholder {
    background: rgba(0, 0, 0, 0.1);
    padding: 3rem;
    border-radius: 10px;
    color: var(--text-color);
    font-weight: 500;
    text-align: center;
}

/* Art Images */
.art-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
    cursor: pointer;
}

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

/* Links Section */
.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.social-link {
    background: rgba(0, 0, 0, 0.1);
    color: var(--text-color);
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    min-width: 120px;
    text-align: center;
}

.social-link:hover {
    background: rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

/* About Section */
.about-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.about-content p {
    font-size: 1.1rem;
    color: var(--text-color);
    opacity: 0.8;
    text-align: center;
}

.about-image {
    margin: 2rem 0;
}

.image-placeholder {
    width: 200px;
    height: 200px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    font-weight: 500;
    margin: 0 auto;
}

/* Profile Image */
.profile-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.about-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 1rem;
}

.about-link {
    background: rgba(0, 0, 0, 0.1);
    color: var(--text-color);
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.about-link:hover {
    background: rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-content {
        padding: 1rem;
    }
    
    .site-title {
        font-size: 2.5rem;
    }
    
    .site-subtitle {
        font-size: 1rem;
    }
    
    .nav-list {
        gap: 2rem;
        flex-direction: column;
        align-items: center;
    }
    
    .nav-link {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .music-links,
    .social-links,
    .about-links {
        flex-direction: column;
        align-items: center;
    }
    
    .platform-link,
    .social-link,
    .about-link {
        width: 200px;
    }
    
    .art-gallery {
        grid-template-columns: 1fr;
    }
    
    .modal-content {
        flex-direction: column;
        height: 80vh;
        width: 90%;
        max-width: 500px;
    }
    
    .modal-image-container {
        flex: 0 0 50%;
    }
    
    .modal-info {
        flex: 0 0 50%;
        padding: 1rem;
    }
    
    .modal-title {
        font-size: 1.5rem;
    }
    
    .modal-description {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .site-title {
        font-size: 2rem;
    }
    
    .nav-list {
        gap: 1.5rem;
    }
    
    .content-section {
        margin-bottom: 4rem;
    }
    
    .release-item {
        padding: 1.5rem;
    }
    
    .platform-link,
    .social-link,
    .about-link {
        width: 180px;
        padding: 0.8rem 1rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Hover effects */
.nav-link,
.external-link,
.platform-link,
.social-link,
.about-link {
    position: relative;
}

.nav-link::after,
.external-link::after,
.platform-link::after,
.social-link::after,
.about-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background-color: var(--text-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after,
.external-link:hover::after,
.platform-link:hover::after,
.social-link:hover::after,
.about-link:hover::after {
    width: 100%;
}