/* CSS Variables for Theme */
:root {
    --bg-primary: rgba(10, 10, 10, 0);
    --bg-secondary: rgba(17, 17, 17, 0);
    --bg-navbar: rgba(10, 10, 10, 0);
    --bg-navbar-scrolled: rgba(10, 10, 10, 0);
    --text-primary: #ffffff;
    --text-secondary: #ffffff;
    --text-tertiary: #e0e0e0;
    --text-heading: #ffffff;
    --border-color: #222;
    --border-light: #333;
    --accent-primary: #667eea;
    --accent-secondary: #764ba2;
    --hero-gradient-start: rgba(100, 200, 220, 0.5);
    --hero-gradient-end: rgba(80, 180, 200, 0.4);
    --form-bg: #111;
    --social-icon-bg: #222;
}

/* Light Theme */
body.light-theme {
    --bg-primary: rgba(255, 255, 255, 0.95);
    --bg-secondary: rgba(250, 250, 250, 0.95);
    --bg-navbar: rgba(255, 255, 255, 0.95);
    --bg-navbar-scrolled: rgba(255, 255, 255, 0.98);
    --text-primary: #000000;
    --text-secondary: #0a0a0a;
    --text-tertiary: #1a1a1a;
    --text-heading: #000000;
    --border-color: #e0e0e0;
    --border-light: #d0d0d0;
    --accent-primary: #667eea;
    --accent-secondary: #764ba2;
    --hero-gradient-start: rgba(120, 220, 240, 0.6);
    --hero-gradient-end: rgba(100, 200, 220, 0.5);
    --form-bg: #fafafa;
    --social-icon-bg: #e8e8e8;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Urbanist', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/hao-fullhair-cover.svg');
    background-size: 100% auto;
    background-position: center top 100px;
    background-repeat: no-repeat;
    opacity: 0.9;
    z-index: -1;
    pointer-events: none;
    filter: brightness(0);
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #006666;
    z-index: -2;
    pointer-events: none;
    transition: background 0.3s ease;
}

body.light-theme::after {
    background: #ccffff !important;
}

body.light-theme::before {
    opacity: 0.55 !important;
    filter: invert(32%) sepia(97%) saturate(531%) hue-rotate(127deg) brightness(93%) contrast(101%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Urbanist', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
}
h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: #00ffff;
}
h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: #00ffff;
}
h4 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }

/* Light theme heading colors */
body.light-theme h2 {
    color: #004444;
}
body.light-theme h3 {
    color: #003d3d;
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #ffffff;
}

body.light-theme p {
    color: #2c3e50;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 32px;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: rgba(0, 204, 204, 0.18);
    color: #ffffff;
    border: 2px solid #00cccc;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 204, 204, 0.3);
    background: rgba(0, 204, 204, 0.3);
}

.btn-secondary {
    background: rgba(0, 153, 153, 0.4);
    color: #ffffff;
    border: 2px solid #009999;
}

.btn-secondary:hover {
    background: rgba(0, 153, 153, 0.6);
    color: #ffffff;
    transform: translateY(-2px);
}

/* Light Theme Button Overrides */
body.light-theme .btn-primary {
    background: rgba(0, 153, 153, 0.15);
    border: 2px solid #009999;
    color: #006666;
}

body.light-theme .btn-primary:hover {
    background: rgba(0, 153, 153, 0.25);
    border: 2px solid #006666;
    box-shadow: 0 4px 12px rgba(0, 153, 153, 0.3);
    color: #006666;
    transform: translateY(-2px);
}

body.light-theme .btn-secondary {
    background: rgba(0, 139, 139, 0.2);
    border: 2px solid #008B8B;
    color: #000000;
}

body.light-theme .btn-secondary:hover {
    background: rgba(0, 102, 102, 0.35);
    border: 2px solid #006666;
    color: #000000;
}

body.light-theme .streaming-link {
    background: rgba(0, 153, 153, 0.15);
    border: 2px solid #009999;
    color: #006666;
}

body.light-theme .streaming-link:hover {
    background: rgba(0, 153, 153, 0.25);
    border: 2px solid #006666;
    box-shadow: 0 4px 12px rgba(0, 153, 153, 0.3);
    color: #006666;
    transform: translateY(-2px);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.section-title {
    color: var(--text-heading);
    margin-bottom: 1rem;
}

.section-divider {
    width: 80px;
    height: 3px;
    background: #00E5E5;
    margin: 0 auto;
    border-radius: 2px;
}

body.light-theme .section-divider {
    background: #006666;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(17, 17, 17, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(17, 17, 17, 0.2);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

body.light-theme .navbar {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

body.light-theme .navbar.scrolled {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo h2 {
    color: #00cccc;
    font-size: 1.5rem;
    margin: 0;
}

body.light-theme .nav-logo h2 {
    color: #006666;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #00ffff;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #00ffff;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Light theme navigation */
body.light-theme .nav-link {
    color: #000000;
}

body.light-theme .nav-link:hover,
body.light-theme .nav-link.active {
    color: #006666;
}

body.light-theme .nav-link::after {
    background: #006666;
}

/* Theme Toggle */
.theme-toggle {
    background: rgba(0, 204, 204, 0.1);
    border: 1px solid rgba(0, 204, 204, 0.3);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-left: 1rem;
}

.theme-toggle:hover {
    background: rgba(0, 204, 204, 0.2);
    border-color: #00CCCC;
    transform: scale(1.1);
}

body.light-theme .theme-toggle {
    background: rgba(0, 102, 102, 0.1);
    border: 1px solid rgba(0, 102, 102, 0.3);
}

body.light-theme .theme-toggle:hover {
    background: rgba(0, 102, 102, 0.2);
    border-color: #006666;
}

.theme-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.theme-toggle:active .theme-icon {
    transform: rotate(180deg);
}

/* Hide mobile theme toggle on desktop */
.theme-toggle-mobile {
    display: none;
}

.nav-item-theme {
    display: none;
}

/* Mobile Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    padding: 120px 0 25px;
    position: relative;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 1.5rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Hero text styles */
.hero-title {
    color: #ffffff;
    margin-bottom: 0.3rem;
    display: inline-block;
    font-family: 'Urbanist', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
}

body.light-theme .hero-title {
    color: #2c3e50;
}

.hero-subtitle {
    color: #00ffff;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: capitalize;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
    text-align: center;
    width: var(--title-width, 600px);
    max-width: 100%;
}

.hero-subtitle::before,
.hero-subtitle::after {
    content: '';
    position: absolute;
    top: 50%;
    height: 1px;
    background: rgba(0, 255, 255, 0.5);
    width: calc((100% - var(--subtitle-text-width, 280px)) / 2 - 15px);
}

.hero-subtitle::before {
    left: 0;
}

.hero-subtitle::after {
    right: 0;
}

body.light-theme .hero-subtitle {
    color: #003d3d;
}

body.light-theme .hero-subtitle::before,
body.light-theme .hero-subtitle::after {
    background: rgba(0, 61, 61, 0.5);
}

.hero-description {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 1.25rem;
    line-height: 1.7;
}

body.light-theme .hero-description {
    color: #2c3e50;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
    display: inline-block;
    max-width: 280px;
    cursor: pointer;
    margin: 0 auto;
}

.hero-image img {
    width: 100%;
    display: block;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    filter: brightness(0.9) contrast(1.1);
    transition: all 0.3s ease;
}

.hero-image:hover img {
    transform: scale(1.02);
    filter: brightness(0.7) contrast(1.1);
}

.hero-cover-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    max-width: 400px;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.6) 40%, transparent 100%);
    border-radius: 0 0 10px 10px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.hero-cover-overlay.active {
    opacity: 1;
}

.hero-cover-overlay-text {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
    line-height: 1.4;
    max-width: 90%;
}

/* Hero Play Button Overlay */
.hero-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
    gap: 0.5rem;
    z-index: 5;
}

.hero-image:hover .hero-play-overlay {
    opacity: 1;
    background: rgba(0, 0, 0, 0.5);
}

.hero-play-icon {
    color: #ffffff;
    font-size: 4rem;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.7);
    transition: all 0.3s ease;
}

.hero-image:hover .hero-play-icon {
    transform: scale(1.1);
    color: #00E5E5;
}

.hero-play-overlay::after {
    content: '(30 sec preview)';
    color: #ffffff;
    font-size: 1rem;
    font-weight: 500;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hero-image:hover .hero-play-overlay::after {
    opacity: 0.9;
}

/* Hero Navigation Arrows */
.hero-nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    border: none;
    width: auto;
    height: auto;
    font-size: 3rem;
    line-height: 1;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    padding: 10px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-nav-arrow:hover {
    color: #00E5E5;
    transform: translateY(-50%) scale(1.2);
    text-shadow: 0 0 20px rgba(0, 229, 229, 0.8);
}

.hero-nav-arrow:active {
    transform: translateY(-50%) scale(1);
}

.hero-nav-prev {
    left: 5px;
}

.hero-nav-next {
    right: 5px;
}

body.light-theme .hero-nav-arrow {
    color: rgba(255, 255, 255, 0.7) !important;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5) !important;
}

body.light-theme .hero-nav-arrow:hover {
    color: #00E5E5 !important;
    text-shadow: 0 0 20px rgba(0, 229, 229, 0.8) !important;
}

/* Responsive adjustments for arrows and overlay on mobile */
@media (max-width: 768px) {
    .hero-nav-arrow {
        font-size: 2.5rem;
        padding: 5px;
        color: rgba(255, 255, 255, 0.9);
        background: rgba(0, 0, 0, 0.4);
        border-radius: 50%;
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        backdrop-filter: blur(4px);
    }

    .hero-nav-prev {
        left: 10px;
    }

    .hero-nav-next {
        right: 10px;
    }

    /* Show play overlay on mobile */
    .hero-play-overlay {
        opacity: 1;
        background: rgba(0, 0, 0, 0.3);
    }

    .hero-play-overlay::after {
        opacity: 0.9;
        font-size: 0.85rem;
    }

    .hero-play-icon {
        font-size: 3.5rem;
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    z-index: 2;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border: 2px solid #00E5E5;
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
}

body.light-theme .scroll-arrow {
    border-color: #006666;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* About Section */
.about {
    padding: 50px 0;
    background: rgba(0, 102, 102, 0.1);
}

body.light-theme .about {
    background: rgba(245, 245, 245, 0.3);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 1.5rem;
    align-items: start;
}

.about-text {
    grid-column: 2;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.about-text h3 {
    color: var(--text-heading);
    margin-bottom: 1rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.stats {
    display: flex;
    gap: 1rem;
    margin-top: 1.25rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-primary);
    font-family: 'Inter', sans-serif;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Music Section */
.music {
    padding: 50px 0;
    background: var(--bg-primary);
}

body.light-theme .music {
    background: rgba(245, 245, 245, 0.3);
}

.featured-album {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: center;
}

.album-artwork {
    position: relative;
    display: inline-block;
    max-width: 280px;
    cursor: pointer;
    margin: 0 auto;
}

.album-artwork img {
    width: 100%;
    display: block;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.album-artwork:hover img {
    transform: scale(1.02);
    filter: brightness(0.7);
}

/* Album Play Button Overlay */
.album-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
    gap: 0.5rem;
    z-index: 5;
    border-radius: 15px;
}

.album-artwork:hover .album-play-overlay {
    opacity: 1;
    background: rgba(0, 0, 0, 0.5);
}

.album-play-icon {
    color: #ffffff;
    font-size: 4rem;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.7);
    transition: all 0.3s ease;
}

.album-artwork:hover .album-play-icon {
    transform: scale(1.1);
    color: #00E5E5;
}

.album-play-overlay::after {
    content: '(30 sec preview)';
    color: #ffffff;
    font-size: 1rem;
    font-weight: 500;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.album-artwork:hover .album-play-overlay::after {
    opacity: 0.9;
}

/* Album Navigation Arrows */
.album-nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    border: none;
    width: auto;
    height: auto;
    font-size: 3rem;
    line-height: 1;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    padding: 10px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.album-nav-arrow:hover {
    color: #00E5E5;
    transform: translateY(-50%) scale(1.2);
    text-shadow: 0 0 20px rgba(0, 229, 229, 0.8);
}

.album-nav-arrow:active {
    transform: translateY(-50%) scale(1);
}

.album-nav-prev {
    left: 5px;
}

.album-nav-next {
    right: 5px;
}

body.light-theme .album-nav-arrow {
    color: rgba(255, 255, 255, 0.7) !important;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5) !important;
}

body.light-theme .album-nav-arrow:hover {
    color: #00E5E5 !important;
    text-shadow: 0 0 20px rgba(0, 229, 229, 0.8) !important;
}

/* Responsive adjustments for album arrows */
@media (max-width: 768px) {
    .album-nav-arrow {
        font-size: 2.5rem;
        padding: 5px;
    }

    /* Touch device support for overlays */
    .hero-image:active .hero-play-overlay,
    .album-artwork:active .album-play-overlay {
        opacity: 1;
        background: rgba(0, 0, 0, 0.5);
    }

    .hero-image:active .hero-play-overlay::after,
    .album-artwork:active .album-play-overlay::after {
        opacity: 0.9;
    }
}

.album-title {
    color: var(--text-heading);
    margin-bottom: 0.5rem;
}

.album-year {
    color: #00ffff;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

body.light-theme .album-year {
    color: #003d3d;
}

.album-description {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

.streaming-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.streaming-link {
    padding: 8px 20px;
    text-decoration: none;
    background: rgba(0, 204, 204, 0.4);
    color: #ffffff;
    border: 2px solid #00cccc;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.streaming-link:hover {
    background: rgba(0, 204, 204, 0.6);
    color: #ffffff;
    transform: translateY(-2px);
}

/* Tracklist */
.tracklist {
    margin-bottom: 2rem;
}

.tracklist h4 {
    color: var(--text-heading);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.tracks {
    background: rgba(0, 0, 0, 0.4);
    border-radius: 15px;
    padding: 1.5rem;
}

body.light-theme .tracks {
    background: rgba(245, 245, 245, 0.4);
}

.track-header {
    display: grid;
    grid-template-columns: 80px 1.2fr 2.5fr 120px 140px 100px;
    gap: 0.75rem;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 2px solid var(--border-color);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #888;
}

.track-header span {
    text-align: left;
    white-space: nowrap;
    padding: 0 0.75rem;
}

.track-header .header-duration,
.track-header .header-sample,
.track-header .header-fulltrack,
.track-header .header-date {
    text-align: center;
}

.track-header .header-genre {
    text-align: center;
}

.track-header .header-summary {
    font-style: italic;
    font-size: 0.85rem;
}

body.light-theme .track-header {
    border-bottom: 2px solid #008B8B;
    color: #666;
}

.track-header .sortable {
    cursor: pointer;
    user-select: none;
    transition: color 0.2s ease;
    position: relative;
    padding-right: 15px;
}

.track-header .sortable:hover {
    color: #00E5E5;
}

body.light-theme .track-header .sortable:hover {
    color: #006666;
}

.track-header .sortable::after {
    content: '⇅';
    position: absolute;
    right: 0;
    opacity: 0.4;
    font-size: 0.8rem;
}

.track-header .sortable.sort-asc::after {
    content: '↑';
    opacity: 1;
}

.track-header .sortable.sort-desc::after {
    content: '↓';
    opacity: 1;
}

.track-item {
    display: grid;
    grid-template-columns: 80px 1.2fr 2.5fr 120px 140px 100px;
    gap: 0.75rem;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

.track-item .track-number {
    display: none;
}

body.light-theme .track-item {
    border-bottom: 1px solid #008B8B;
}

.track-cover-container {
    position: relative;
    width: 80px;
    height: 80px;
    cursor: pointer;
    border-radius: 5px;
    overflow: hidden;
}

.track-cover {
    width: 100%;
    height: 100%;
    border-radius: 5px;
    object-fit: cover;
    display: block;
    transition: all 0.3s ease;
}

.track-cover-container:hover .track-cover {
    transform: scale(1.05);
    filter: brightness(0.7);
}

.track-cover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    opacity: 1;
    transition: all 0.3s ease;
    pointer-events: none;
    gap: 0.25rem;
}

.track-cover-container:hover .track-cover-overlay {
    background: rgba(0, 0, 0, 0.5);
}

.track-cover-play-icon {
    color: #ffffff;
    font-size: 2rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.track-cover-overlay::after {
    content: '(30 sec)';
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 500;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
    margin-top: -0.25rem;
}

.track-cover-container:hover .track-cover-overlay::after {
    opacity: 0.9;
}

body.light-theme .track-cover-play-icon {
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.track-item:last-child {
    border-bottom: none;
}

.track-number {
    color: #ffffff;
    font-weight: 600;
}

body.light-theme .track-number {
    color: #2c3e50;
}

.track-title {
    color: #ffffff;
    font-weight: 500;
}

body.light-theme .track-title {
    color: #2c3e50;
}

.track-date {
    color: #ffffff;
    font-size: 0.9rem;
    text-align: center;
}

body.light-theme .track-date {
    color: #2c3e50;
}

.track-duration {
    color: #ffffff;
    font-size: 0.9rem;
    text-align: center;
}

body.light-theme .track-duration {
    color: #2c3e50;
}

.track-genre {
    color: #ffffff;
    font-size: 0.9rem;
    text-align: center;
}

body.light-theme .track-genre {
    color: #2c3e50;
}

.track-summary {
    color: #e0e0e0;
    font-size: 0.85rem;
    line-height: 1.4;
    font-style: italic;
}

body.light-theme .track-summary {
    color: #5a6c7d;
}

.play-btn {
    background: #00CCCC;
    color: #ffffff;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    justify-self: center;
}

.play-btn:hover {
    background: #00E5E5;
    transform: scale(1.1);
}

body.light-theme .play-btn {
    background: #008B8B;
    color: #ffffff;
}

body.light-theme .play-btn:hover {
    background: #006666;
}

.youtube-link {
    padding: 8px 20px;
    background: rgba(0, 204, 204, 0.4);
    color: #ffffff;
    border: 2px solid #00cccc;
    border-radius: 10px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
    justify-self: center;
    text-align: center;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.youtube-link::before {
    content: '▶';
    font-size: 0.7rem;
}

.youtube-link::after {
    content: '';
}

.youtube-link:hover {
    background: rgba(0, 204, 204, 0.6);
    color: #ffffff;
    transform: translateY(-2px);
}

body.light-theme .youtube-link {
    background: rgba(0, 153, 153, 0.15);
    border: 2px solid #009999;
    color: #006666;
}

body.light-theme .youtube-link:hover {
    background: rgba(0, 153, 153, 0.25);
    border: 2px solid #006666;
    color: #006666;
    box-shadow: 0 4px 12px rgba(0, 153, 153, 0.3);
    transform: translateY(-2px);
}

/* Discography */
.discography h4 {
    color: var(--text-heading);
    margin-bottom: 2rem;
    font-size: 1.3rem;
}

.albums-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.album-card {
    text-align: center;
    transition: transform 0.3s ease;
}

.album-card:hover {
    transform: translateY(-5px);
}

.album-card img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.album-card h5 {
    color: var(--text-heading);
    margin-bottom: 0.5rem;
}

.album-card p {
    color: #888;
    margin: 0;
    font-size: 0.9rem;
}

/* Tour Section */
.tour {
    padding: 50px 0;
    background: #111111;
}

.tour-dates {
    margin-bottom: 2rem;
}

.tour-item {
    display: grid;
    grid-template-columns: 120px 1fr auto;
    gap: 1rem;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #222;
    transition: all 0.3s ease;
}

.tour-item:hover {
    background: rgba(102, 126, 234, 0.05);
    padding-left: 1rem;
    padding-right: 1rem;
    border-radius: 10px;
}

.tour-item:last-child {
    border-bottom: none;
}

.date-info {
    text-align: center;
}

.date {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #667eea;
}

.year {
    font-size: 0.9rem;
    color: #888;
}

.venue-name {
    color: var(--text-heading);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.city {
    color: #ffffff;
    margin: 0;
    font-size: 1rem;
}

.ticket-info {
    text-align: right;
}

.status {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.status.available { color: #4CAF50; }
.status.few-left { color: #FF9800; }
.status.sold-out { color: #F44336; }

.ticket-btn {
    display: inline-block;
    padding: 8px 20px;
    background: #667eea;
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.ticket-btn:hover {
    background: #764ba2;
    transform: translateY(-2px);
}

.ticket-btn.disabled {
    background: #444;
    color: #888;
    cursor: not-allowed;
}

.ticket-btn.disabled:hover {
    background: #444;
    transform: none;
}

/* Tour Newsletter */
.tour-newsletter {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(102, 126, 234, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(102, 126, 234, 0.2);
}

.tour-newsletter h4 {
    color: var(--text-heading);
    margin-bottom: 1.5rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
    justify-content: center;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 20px;
    border: 1px solid #333;
    border-radius: 10px;
    background: #222;
    color: #e5e5e5;
    font-size: 1rem;
}

.newsletter-form input:focus {
    outline: none;
    border-color: #667eea;
}

.newsletter-form button {
    padding: 12px 24px;
    background: #667eea;
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: #764ba2;
}

/* Contact Section */
.contact {
    padding: 50px 0;
    background: var(--bg-primary);
}

body.light-theme .contact {
    background: rgba(245, 245, 245, 0.3);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    align-items: start;
}

.contact-info,
.contact-form {
    align-self: start;
}

.contact-info h4,
.contact-form h4 {
    color: var(--text-heading);
    margin-top: 0 !important;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.social-link {
    display: inline-block;
    padding: 12px 20px;
    color: #ffffff;
    text-decoration: none;
    background: rgba(0, 204, 204, 0.4);
    border: 2px solid #00cccc;
    border-radius: 10px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.social-link:hover {
    background: rgba(0, 204, 204, 0.6);
    color: #ffffff;
    border-color: #00cccc;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 204, 204, 0.3);
}

body.light-theme .social-link {
    background: rgba(0, 153, 153, 0.15);
    border: 2px solid #009999;
    color: #006666;
}

body.light-theme .social-link:hover {
    background: rgba(0, 153, 153, 0.25);
    border: 2px solid #006666;
    box-shadow: 0 4px 12px rgba(0, 153, 153, 0.3);
    color: #006666;
    transform: translateY(-2px);
}

.business-contact h5 {
    color: #ffffff;
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

body.light-theme .business-contact h5 {
    color: #2c3e50;
}

.business-contact p {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    font-family: 'Inter', monospace;
}

.business-contact p a {
    color: #00CCCC;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.business-contact p a:hover {
    color: #00E5E5;
    text-decoration: underline;
}

body.light-theme .business-contact p a {
    color: #008B8B;
}

body.light-theme .business-contact p a:hover {
    color: #006666;
}

/* Contact Form */
.contact-form form {
    position: relative;
}

.contact-form button[type="submit"] {
    display: block;
    margin-left: auto;
    margin-right: 0;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-primary);
}

body.light-theme .form-group label {
    color: #1a1a1a;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid var(--border-light);
    border-radius: 10px;
    background: rgba(17, 17, 17, 0.4);
    color: #f0f0f0;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease, background-color 0.3s ease;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.form-group select {
    background-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="8" viewBox="0 0 12 8"><path fill="%23f0f0f0" d="M6 8L0 0h12z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 45px;
}

.form-group input::placeholder,
.form-group select::placeholder,
.form-group textarea::placeholder {
    color: #b0b0b0;
    opacity: 1;
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: #00CCCC;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus,
.form-group input:not(:placeholder-shown),
.form-group select:not([value=""]),
.form-group textarea:not(:placeholder-shown) {
    background: rgba(17, 17, 17, 1);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgb(100, 200, 220);
}

body.light-theme .form-group input,
body.light-theme .form-group select,
body.light-theme .form-group textarea {
    border-color: #008B8B;
    background: rgba(245, 245, 245, 0.4) !important;
    background-color: rgba(245, 245, 245, 0.4) !important;
    color: #1a1a1a;
}

body.light-theme .form-group input::placeholder,
body.light-theme .form-group select::placeholder,
body.light-theme .form-group textarea::placeholder {
    color: #666666;
    opacity: 1;
}

body.light-theme .form-group select {
    background-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="8" viewBox="0 0 12 8"><path fill="%231a1a1a" d="M6 8L0 0h12z"/></svg>');
}

body.light-theme .form-group select option {
    color: #1a1a1a;
    background: #ffffff;
}

body.light-theme .form-group input:hover,
body.light-theme .form-group select:hover,
body.light-theme .form-group textarea:hover {
    border-color: #006666;
}

body.light-theme .form-group input:focus,
body.light-theme .form-group select:focus,
body.light-theme .form-group textarea:focus,
body.light-theme .form-group input:not(:placeholder-shown),
body.light-theme .form-group select:not([value=""]),
body.light-theme .form-group textarea:not(:placeholder-shown) {
    border-color: #006666;
    background: rgba(245, 245, 245, 1) !important;
    background-color: rgba(245, 245, 245, 1) !important;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group select {
    background: rgba(17, 17, 17, 0.4);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23f0f0f0' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 12px 8px;
    padding-right: 40px;
}

body.light-theme .form-group select {
    background: rgba(245, 245, 245, 0.4) !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23666' d='M6 8L0 0h12z'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 15px center !important;
    background-color: rgba(245, 245, 245, 0.4) !important;
}

body.light-theme .form-group select:focus,
body.light-theme .form-group select:valid {
    background: rgba(245, 245, 245, 1) !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23666' d='M6 8L0 0h12z'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 15px center !important;
    background-color: rgba(245, 245, 245, 1) !important;
}

.form-group select option[value=""] {
    color: #888;
}

body.light-theme .form-group select option[value=""] {
    color: #999;
}

/* Footer */
.footer {
    background: var(--bg-secondary);
    padding: 3rem 0 2rem;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-logo h3 {
    color: #00cccc;
    margin: 0;
}

body.light-theme .footer-logo h3 {
    color: #006666;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: #00cccc;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #00e5e5;
    transform: translateY(-2px);
}

body.light-theme .footer-links a {
    color: #009999;
}

body.light-theme .footer-links a:hover {
    color: #00cccc;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-icon {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #009999 0%, #00cccc 100%);
    color: white;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 204, 204, 0.4);
}

.social-icon:hover {
    background: linear-gradient(135deg, #00cccc 0%, #00e5e5 100%);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 204, 204, 0.6);
}

body.light-theme .social-icon {
    background: linear-gradient(135deg, #006666 0%, #009999 100%);
    box-shadow: 0 4px 15px rgba(0, 153, 153, 0.4);
}

body.light-theme .social-icon:hover {
    background: linear-gradient(135deg, #009999 0%, #00cccc 100%);
    box-shadow: 0 6px 20px rgba(0, 204, 204, 0.6);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.footer-bottom p {
    color: var(--text-tertiary);
    margin: 0.5rem 0;
    font-size: 0.9rem;
}

body.light-theme .footer {
    background: transparent;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(40px) saturate(180%);
        -webkit-backdrop-filter: blur(40px) saturate(180%);
        width: 100%;
        height: calc(100vh - 80px);
        text-align: left;
        transition: left 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
        padding: 2rem 0;
        overflow-y: auto;
        overflow-x: hidden;
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 0.4rem 0;
        opacity: 0;
        transform: translateX(-30px) scale(0.95);
        animation: slideInMenu 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    }

    .nav-menu.active li:nth-child(1) { animation-delay: 0.05s; }
    .nav-menu.active li:nth-child(2) { animation-delay: 0.1s; }
    .nav-menu.active li:nth-child(3) { animation-delay: 0.15s; }
    .nav-menu.active li:nth-child(4) { animation-delay: 0.2s; }
    .nav-menu.active li:nth-child(5) { animation-delay: 0.25s; }

    @keyframes slideInMenu {
        0% {
            opacity: 0;
            transform: translateX(-30px) scale(0.95);
        }
        100% {
            opacity: 1;
            transform: translateX(0) scale(1);
        }
    }

    .nav-menu .nav-link {
        display: flex;
        align-items: center;
        padding: 1.1rem 1.5rem 1.1rem 2rem;
        font-size: 1.3rem;
        font-weight: 600;
        letter-spacing: 0.3px;
        color: #ffffff;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
        margin: 0.4rem 1.2rem;
        border-radius: 16px;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border: 1.5px solid rgba(255, 255, 255, 0.1);
        position: relative;
        overflow: hidden;
        min-height: 60px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    .nav-menu .nav-link::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 5px;
        background: linear-gradient(180deg, #00E5E5 0%, #00CCCC 100%);
        border-radius: 16px 0 0 16px;
        opacity: 0;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .nav-menu .nav-link::after {
        content: '→';
        position: absolute;
        right: 1.5rem;
        font-size: 1.4rem;
        opacity: 0;
        transform: translateX(-10px);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        color: #00E5E5;
    }

    .nav-menu .nav-link:hover {
        background: linear-gradient(135deg, rgba(0, 229, 229, 0.15) 0%, rgba(0, 204, 204, 0.1) 100%);
        border-color: rgba(0, 229, 229, 0.4);
        transform: translateX(8px) scale(1.02);
        box-shadow: 0 8px 25px rgba(0, 229, 229, 0.25),
                    inset 0 1px 0 rgba(255, 255, 255, 0.1);
        padding-left: 2.2rem;
    }

    .nav-menu .nav-link:hover::before {
        opacity: 1;
        width: 5px;
    }

    .nav-menu .nav-link:hover::after {
        opacity: 1;
        transform: translateX(0);
    }

    .nav-menu .nav-link.active {
        background: linear-gradient(135deg, rgba(0, 229, 229, 0.2) 0%, rgba(0, 204, 204, 0.15) 100%);
        border-color: rgba(0, 229, 229, 0.5);
        color: #00E5E5;
        box-shadow: 0 8px 20px rgba(0, 229, 229, 0.3),
                    inset 0 1px 0 rgba(255, 255, 255, 0.15);
    }

    .nav-menu .nav-link.active::before {
        opacity: 1;
        width: 5px;
    }

    .nav-menu .nav-link.active::after {
        opacity: 0.6;
    }

    /* Light theme mobile menu */
    body.light-theme .nav-menu {
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(40px) saturate(180%);
        -webkit-backdrop-filter: blur(40px) saturate(180%);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    }

    body.light-theme .nav-menu .nav-link {
        color: #1a1a1a;
        background: linear-gradient(135deg, rgba(0, 102, 102, 0.06) 0%, rgba(0, 102, 102, 0.03) 100%);
        border-color: rgba(0, 102, 102, 0.15);
    }

    body.light-theme .nav-menu .nav-link::before {
        background: linear-gradient(180deg, #006666 0%, #009999 100%);
    }

    body.light-theme .nav-menu .nav-link::after {
        color: #006666;
    }

    body.light-theme .nav-menu .nav-link:hover {
        background: linear-gradient(135deg, rgba(0, 102, 102, 0.12) 0%, rgba(0, 102, 102, 0.08) 100%);
        border-color: rgba(0, 102, 102, 0.3);
        color: #006666;
        box-shadow: 0 8px 25px rgba(0, 102, 102, 0.2),
                    inset 0 1px 0 rgba(255, 255, 255, 0.5);
    }

    body.light-theme .nav-menu .nav-link.active {
        background: linear-gradient(135deg, rgba(0, 102, 102, 0.18) 0%, rgba(0, 102, 102, 0.12) 100%);
        border-color: rgba(0, 102, 102, 0.4);
        color: #006666;
        box-shadow: 0 8px 20px rgba(0, 102, 102, 0.25),
                    inset 0 1px 0 rgba(255, 255, 255, 0.6);
    }

    /* Keep theme toggle visible in main nav bar on mobile */
    .theme-toggle-desktop {
        display: flex;
    }

    /* Hide mobile menu theme toggle item */
    .nav-item-theme {
        display: none;
    }

    .theme-toggle-mobile {
        display: none;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-image {
        order: -1;
        max-width: 100%;
        width: 100%;
        margin: 0 auto;
        display: block;
    }

    .hero-image img {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    /* Mobile hero navigation arrows - always visible */
    .hero-nav-arrow {
        font-size: 2rem !important;
        color: rgba(255, 255, 255, 0.95) !important;
        background: rgba(0, 0, 0, 0.5) !important;
        border-radius: 50% !important;
        width: 45px !important;
        height: 45px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        backdrop-filter: blur(4px) !important;
        padding: 0 !important;
    }

    .hero-nav-prev {
        left: 10px !important;
    }

    .hero-nav-next {
        right: 10px !important;
    }

    /* Mobile play overlay - always visible */
    .hero-play-overlay {
        opacity: 1 !important;
        background: rgba(0, 0, 0, 0.3) !important;
    }

    .hero-play-overlay::after {
        opacity: 0.9 !important;
        font-size: 0.85rem !important;
    }

    .hero-play-icon {
        font-size: 3rem !important;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        letter-spacing: 1.5px;
    }

    .hero-subtitle::before,
    .hero-subtitle::after {
        width: calc((100% - var(--subtitle-text-width, 280px)) / 2 - 10px);
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .about-text {
        text-align: left;
    }

    .featured-album {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .album-artwork {
        max-width: 100%;
        width: 100%;
        margin: 0 auto;
        display: block;
    }

    .album-artwork img {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

    .stats {
        justify-content: center;
        flex-wrap: wrap;
    }

    .tour-item {
        grid-template-columns: 1fr;
        gap: 1rem;
        text-align: center;
        padding: 1.5rem;
    }

    .ticket-info {
        text-align: center;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }

    .newsletter-form {
        flex-direction: column;
        align-items: center;
    }

    .newsletter-form input {
        width: 100%;
        max-width: 300px;
    }

    .track-header {
        display: none;
    }

    /* Mobile Card Layout */
    .track-item {
        display: flex;
        flex-direction: column;
        gap: 0;
        padding: 0;
        border: none;
        background: rgba(255, 255, 255, 0.8);
        border-radius: 12px;
        overflow: hidden;
        margin-bottom: 1.5rem;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        transition: transform 0.2s ease, box-shadow 0.2s ease;
        position: relative;
    }

    .track-item:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    }

    body.light-theme .track-item {
        background: rgba(255, 255, 255, 0.8);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    }

    body.light-theme .track-item:hover {
        box-shadow: 0 8px 20px rgba(0, 139, 139, 0.25);
    }

    /* Large Album Cover at Top */
    .track-cover-container {
        width: 100%;
        height: 200px;
        border-radius: 12px 12px 0 0;
        position: relative;
        cursor: pointer;
    }

    .track-cover {
        border-radius: 12px 12px 0 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* Centered Play Button */
    .track-cover-play-icon {
        font-size: 4rem;
        color: rgba(255, 255, 255, 0.9);
    }

    .track-cover-overlay {
        background: rgba(0, 0, 0, 0) !important;
    }

    .track-cover-container:hover .track-cover-overlay {
        background: rgba(0, 0, 0, 0.2) !important;
    }

    .track-cover-overlay::after {
        content: '';
        opacity: 0;
    }

    /* Hide track number on mobile */
    .track-number {
        display: none;
    }

    /* Card Content Area */
    .track-item > span,
    .track-item > a {
        padding: 0 1.25rem;
    }

    /* Title - Centered */
    .track-item > .track-title {
        font-size: 1.15rem;
        font-weight: 700;
        padding: 1.25rem 1.25rem 0 1.25rem !important;
        text-align: center !important;
        display: block;
        color: #1a1a1a;
        line-height: 1.3;
        margin-bottom: 0.75rem;
    }

    body.light-theme .track-item > .track-title {
        color: #1a1a1a;
    }

    /* Hide date on mobile - will be shown in description */
    .track-date {
        display: none;
    }

    /* Description */
    .track-item > .track-summary {
        display: block;
        font-size: 0.95rem;
        line-height: 1.6;
        padding: 0 1.25rem 0.75rem 1.25rem !important;
        margin-top: 0;
        color: #1a1a1a;
        text-align: left !important;
        font-style: normal;
    }

    body.light-theme .track-summary {
        color: #1a1a1a;
    }

    /* Genre Label */
    .track-item > .track-genre {
        font-size: 0.9rem !important;
        padding: 0 1.25rem 1rem 1.25rem !important;
        background: transparent !important;
        border-radius: 0 !important;
        color: #1a1a1a !important;
        margin: 0 !important;
        width: auto !important;
        font-weight: 400 !important;
        text-align: left !important;
        display: block;
    }

    .track-item > .track-genre::before {
        content: 'Genre: ';
        font-weight: 400;
    }

    body.light-theme .track-item > .track-genre {
        background: transparent !important;
        color: #1a1a1a !important;
    }

    /* Full-width YouTube Button */
    .youtube-link {
        margin: 0 1.25rem 1.25rem 1.25rem;
        padding: 14px 20px;
        font-size: 1rem;
        font-weight: 600;
        text-align: center;
        width: calc(100% - 2.5rem);
        box-sizing: border-box;
        background: rgba(0, 204, 204, 0.15);
        color: #006666;
        border: 2px solid #00cccc;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        transition: all 0.3s ease;
    }

    .youtube-link:hover {
        background: rgba(0, 204, 204, 0.25);
        border-color: #00E5E5;
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(0, 204, 204, 0.3);
    }

    .youtube-link::before {
        content: '▶';
        font-size: 0.85rem;
    }

    .youtube-link::after {
        content: ' (Full Track)';
    }

    body.light-theme .youtube-link {
        background: rgba(0, 153, 153, 0.12);
        color: #006666;
        border: 2px solid #009999;
    }

    body.light-theme .youtube-link:hover {
        background: rgba(0, 153, 153, 0.22);
        border-color: #006666;
        box-shadow: 0 4px 12px rgba(0, 153, 153, 0.3);
    }

    /* Dark theme card styling */
    body:not(.light-theme) .track-item {
        background: rgba(255, 255, 255, 0.8);
    }

    body:not(.light-theme) .track-item:hover {
        background: rgba(255, 255, 255, 0.9);
    }

    body:not(.light-theme) .track-item > .track-title,
    body:not(.light-theme) .track-date,
    body:not(.light-theme) .track-summary,
    body:not(.light-theme) .track-item > .track-genre {
        color: #1a1a1a !important;
    }

    body:not(.light-theme) .youtube-link {
        background: rgba(0, 204, 204, 0.15);
        color: #006666;
        border: 2px solid #00cccc;
    }

    body:not(.light-theme) .youtube-link:hover {
        background: rgba(0, 204, 204, 0.25);
        border-color: #00E5E5;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 80px 0 30px;
    }

    .section-header {
        margin-bottom: 2.5rem;
    }

    .about,
    .music,
    .tour,
    .contact {
        padding: 60px 0;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        padding: 10px 24px;
        font-size: 0.9rem;
    }

    .streaming-links {
        justify-content: center;
    }

    .albums-grid {
        grid-template-columns: 1fr;
        max-width: 300px;
        margin: 0 auto;
    }

    .track-header {
        display: none;
    }

    .track-item {
        display: flex;
        flex-direction: column;
        gap: 0;
        padding: 0;
        border: none;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 12px;
        overflow: hidden;
        margin-bottom: 1rem;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .track-item:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 204, 204, 0.15);
    }

    body.light-theme .track-item {
        background: #ffffff;
        border: 1px solid #e0e0e0;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    }

    body.light-theme .track-item:hover {
        box-shadow: 0 4px 16px rgba(0, 139, 139, 0.2);
    }

    .track-cover-container {
        width: 100%;
        height: 180px;
        border-radius: 0;
        position: relative;
    }

    .track-cover {
        border-radius: 0;
    }

    .track-cover-play-icon {
        font-size: 2.5rem;
    }

    .track-number {
        position: absolute;
        top: 10px;
        left: 10px;
        background: rgba(0, 0, 0, 0.7);
        color: #ffffff;
        padding: 3px 8px;
        border-radius: 16px;
        font-size: 0.7rem;
        font-weight: 600;
        z-index: 1;
    }

    body.light-theme .track-number {
        background: rgba(0, 0, 0, 0.6);
        color: #ffffff;
    }

    /* General padding for track items */
    .track-item > span,
    .track-item > a {
        padding: 0 0.875rem;
        text-align: center;
    }

    /* Specific styles for track title - override general rule */
    .track-item > .track-title {
        font-size: 1rem !important;
        font-weight: 600 !important;
        padding: 0.875rem 0.875rem 0 0.875rem !important;
        padding-right: 7rem !important;
        text-align: left !important;
        display: block;
    }

    .track-date {
        position: absolute;
        top: 180px;
        right: 0;
        font-size: 0.85rem;
        padding: 0.875rem 0.875rem 0 0;
        color: #a0a0a0;
        text-align: right;
    }

    body.light-theme .track-date {
        color: #5a6c7d;
    }

    .track-item > .track-summary {
        display: block;
        font-size: 0.8rem;
        line-height: 1.4;
        padding: 0.625rem 0.875rem !important;
        color: #a0a0a0;
        text-align: left !important;
    }

    body.light-theme .track-summary {
        color: #5a6c7d;
    }

    .track-item > .track-genre {
        font-size: 0.75rem !important;
        padding: 0 0.875rem 0.625rem 0.875rem !important;
        background: transparent !important;
        border-radius: 0 !important;
        color: #00CCCC !important;
        margin: 0 !important;
        width: auto !important;
        font-weight: 500 !important;
        text-align: left !important;
        display: block;
    }

    body.light-theme .track-item > .track-genre {
        background: transparent !important;
        color: #008B8B !important;
    }

    .youtube-link {
        margin: 0 0.875rem 0.875rem 0.875rem;
        padding: 8px 16px;
        font-size: 0.85rem;
        text-align: center;
        width: calc(100% - 1.75rem);
        box-sizing: border-box;
    }
}

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

/* Music Player Styles */
.music-player {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: rgba(17, 17, 17, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 20px;
    border-radius: 50px;
    display: none;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 999;
    min-width: 250px;
}

body.light-theme .music-player {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.music-player.active {
    display: flex;
}

.player-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.control-btn {
    background: none;
    border: none;
    color: #e5e5e5;
    font-size: 1.2rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.control-btn:hover {
    color: #667eea;
}

.track-info {
    flex: 1;
    min-width: 0;
}

.current-track {
    color: #e5e5e5;
    font-size: 0.9rem;
    font-weight: 500;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.progress-bar {
    width: 100%;
    height: 4px;
    background: #333;
    border-radius: 2px;
    margin-top: 5px;
    overflow: hidden;
}

.progress {
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
    width: 0%;
    transition: width 0.1s ease;
}

/* Smooth scrolling enhancements */
section {
    scroll-margin-top: 80px;
}