/* 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;
}


/* 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.5);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 10000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(17, 17, 17, 0.5);
    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.5);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

body.light-theme .navbar.scrolled {
    background: rgba(255, 255, 255, 0.5);
    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;
    align-items: center;
}

.nav-item {
    display: flex;
    align-items: center;
}

.nav-divider {
    padding: 0;
}

.nav-separator {
    color: rgba(255, 255, 255, 0.3);
    font-size: 1.2rem;
    font-weight: 300;
    user-select: none;
}

body.light-theme .nav-separator {
    color: rgba(0, 0, 0, 0.2);
}

.nav-item-search {
    display: flex;
    align-items: center;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
}

.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;
}

.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.6);
    border: 1px solid rgba(0, 102, 102, 0.7);
}

body.light-theme .theme-toggle:hover {
    background: rgba(0, 102, 102, 0.75);
    border-color: #006666;
}

.theme-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
    color: #00e5e5;
    opacity: 0.95;
}

body.light-theme .theme-icon {
    color: #004d4d;
    opacity: 0.9;
}

.theme-toggle:active .theme-icon {
    transform: rotate(180deg);
}

/* Hide mobile theme toggle on desktop */
.theme-toggle-mobile {
    display: none;
}

.nav-item-theme {
    display: none;
}

/* Desktop only elements */
.desktop-only {
    display: flex;
}

/* Nav Search Container */
.nav-search-container {
    display: flex;
    align-items: center;
    position: relative;
}

.nav-search-desktop {
    margin-left: 0;
}

.nav-search-mobile {
    display: none;
    margin-left: auto;
    margin-right: 1rem;
}

/* Inline Search Input */
.nav-search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    width: 40px;
    height: 40px;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-x: hidden;
    overflow-y: visible;
}

.nav-search-container.active .nav-search-input-wrapper {
    width: 220px;
}

.nav-search-toggle {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    color: var(--text-primary);
    opacity: 0.7;
    z-index: 2;
}

.nav-search-toggle:hover {
    opacity: 1;
}

.nav-search-container.active .nav-search-toggle {
    opacity: 0.7;
    cursor: default;
    pointer-events: none;
}

.nav-search-input {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 40px;
    background: transparent;
    border: 1px solid transparent;
    border-radius: 20px;
    padding: 0 40px 0 40px;
    font-size: 0.9rem;
    color: var(--text-primary);
    outline: none;
    font-family: 'Urbanist', sans-serif;
    opacity: 0;
    pointer-events: none;
    transition: all 0.2s ease;
}

.nav-search-container.active .nav-search-input {
    background: rgba(0, 0, 0, 0.3);
    border-color: rgba(0, 204, 204, 0.3);
    opacity: 1;
    pointer-events: all;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.nav-search-input::placeholder {
    color: var(--text-primary);
    opacity: 0.5;
}

.nav-search-input:focus {
    border-color: rgba(0, 204, 204, 0.6);
    background: rgba(0, 0, 0, 0.4);
}

body.light-theme .nav-search-container.active .nav-search-input {
    background: rgba(255, 255, 255, 0.5);
    border-color: rgba(0, 102, 102, 0.3);
}

body.light-theme .nav-search-input:focus {
    border-color: rgba(0, 102, 102, 0.6);
    background: rgba(255, 255, 255, 0.7);
}

.nav-search-close {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    transition: all 0.2s ease;
    width: 28px;
    height: 28px;
    display: none;
    align-items: center;
    justify-content: center;
    line-height: 1;
    pointer-events: none;
    z-index: 3;
}

.nav-search-container.active .nav-search-close {
    display: flex;
    opacity: 0.5;
    pointer-events: all;
}

.nav-search-close:hover {
    opacity: 1;
}

/* Nav Search Autocomplete */
.nav-search-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    width: 220px;
    margin-top: 4px;
    background: rgba(17, 17, 17, 0.98);
    border: 1px solid rgba(0, 204, 204, 0.3);
    border-radius: 12px;
    max-height: 300px;
    overflow-y: auto;
    z-index: 10001;
    display: none;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.nav-search-container:not(.active) .nav-search-suggestions {
    width: 0;
    opacity: 0;
}

.nav-search-suggestions.active {
    display: block;
}

.nav-search-suggestion {
    padding: 0.75rem 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-search-suggestion:last-child {
    border-bottom: none;
}

.nav-search-suggestion:hover,
.nav-search-suggestion.active {
    background: rgba(0, 204, 204, 0.1);
    color: #00CCCC;
}

.nav-search-suggestion-icon {
    font-size: 0.8rem;
    opacity: 0.5;
}

.nav-search-suggestion-text {
    flex: 1;
    font-size: 0.9rem;
}

.nav-search-suggestion-type {
    font-size: 0.75rem;
    opacity: 0.5;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

body.light-theme .nav-search-suggestions {
    background: rgba(255, 255, 255, 0.98);
    border-color: rgba(0, 102, 102, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

body.light-theme .nav-search-suggestion {
    border-bottom-color: rgba(0, 0, 0, 0.05);
}

body.light-theme .nav-search-suggestion:hover,
body.light-theme .nav-search-suggestion.active {
    background: rgba(0, 102, 102, 0.1);
    color: #006666;
}

/* 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: start;
    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-quote {
    border-left: 3px solid var(--accent-color);
    padding: 0.2rem 0.6rem;
    border-radius: 10px;
    margin: 0.4rem auto;
    width: 80%;
    position: relative;
    overflow: visible;
}

.hero-quote::before {
    content: '\201C';
    position: absolute;
    font-size: 10rem;
    line-height: 1;
    color: var(--accent-color);
    opacity: 0.15;
    font-family: 'Georgia', 'Times New Roman', serif;
    font-weight: bold;
    font-style: italic;
    top: -2rem;
    left: -3rem;
    z-index: 0;
    pointer-events: none;
}

body.light-theme .hero-quote::before {
    opacity: 0.2;
}

.hero-quote-text {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #d4d4d4;
    margin: 0;
    font-weight: 500;
    position: relative;
    z-index: 10;
}

body.light-theme .hero-quote-text {
    color: #2a2a2a;
}

.hero-quote-attribution {
    text-align: right;
    margin-top: 0.4rem;
    margin-right: 100px;
    font-size: 0.9rem;
    color: var(--accent-color);
    font-weight: 500;
    position: relative;
    z-index: 10;
}

.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;
    overflow: hidden;
    border-radius: 15px;
}

.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);
    opacity: 1;
    transition: opacity 0.5s ease;
}

.hero-image img.slide-out {
    opacity: 0;
}

.hero-image img.slide-in {
    opacity: 0;
}

/* Horizontal blinds transition container */
.hero-image .blinds-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
    border-radius: 15px;
    overflow: hidden;
}

/* Individual blind strip - starts full height, collapses to reveal content */
.hero-image .blind {
    position: absolute;
    left: 0;
    width: 100%;
    background-color: #0a0a0a;
    overflow: hidden;
    clip-path: inset(0 0 0 0);
    z-index: 100;
}

/* Animate blinds collapsing from bottom (revealing content progressively) */
.hero-image.transitioning .blind {
    animation: blindReveal 0.7s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}

@keyframes blindReveal {
    from {
        clip-path: inset(0 0 0 0);
    }
    to {
        clip-path: inset(0 0 100% 0);
    }
}

.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.95) 0%, rgba(0, 0, 0, 0.75) 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;
    z-index: 3;
}

.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.95);
    border: none;
    width: auto;
    height: auto;
    font-size: 3rem;
    line-height: 1;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 100;
    padding: 10px;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
}

.hero-nav-arrow:hover {
    color: #00E5E5;
    transform: translateY(-50%) scale(1.2);
    text-shadow: 0 0 15px rgba(0, 229, 229, 0.6);
}

.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-quote {
    border-left: 3px solid var(--accent-color);
    padding: 0.2rem 0.6rem;
    border-radius: 10px;
    margin: 0.4rem auto;
    position: relative;
    max-width: 85%;
    overflow: visible;
}

.about-quote::before {
    content: '\201C';
    position: absolute;
    font-size: 10rem;
    line-height: 1;
    color: var(--accent-color);
    opacity: 0.15;
    font-family: 'Georgia', 'Times New Roman', serif;
    font-weight: bold;
    font-style: italic;
    top: -2rem;
    left: -3rem;
    z-index: 0;
    pointer-events: none;
}

body.light-theme .about-quote::before {
    opacity: 0.2;
}

.quote-mark {
    display: none;
}

.quote-text {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.4;
    color: #d4d4d4;
    margin: 0;
    font-weight: 500;
    position: relative;
    z-index: 10;
}

body.light-theme .quote-text {
    color: #2a2a2a;
}

.quote-attribution {
    text-align: right;
    margin-top: -1.85rem;
    margin-right: 100px;
    font-size: 0.9rem;
    color: var(--accent-color);
    font-weight: 500;
    position: relative;
    z-index: 10;
}

.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 {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: center;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.featured-album.slide-out {
    opacity: 0;
}

.featured-album.slide-in {
    opacity: 0;
}

/* Horizontal blinds transition for featured album */
.featured-album .blinds-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
    overflow: hidden;
}

.album-artwork .blind {
    position: absolute;
    left: 0;
    width: 100%;
    background-color: #0a0a0a;
    overflow: hidden;
    clip-path: inset(0 0 0 0);
    z-index: 100;
}

.album-artwork.transitioning .blind {
    animation: blindReveal 0.7s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}

.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 Cover Gradient Overlay for better arrow visibility */
.album-artwork::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    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 15px 15px;
    pointer-events: none;
    z-index: 1;
}

/* Album Cover Overlay Text */
.album-cover-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.75) 40%, transparent 100%);
    pointer-events: none;
    z-index: 3;
    border-radius: 0 0 15px 15px;
}

.album-cover-overlay-text {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    text-align: center;
    padding: 0 1rem;
    line-height: 1.3;
    max-width: 90%;
}

/* 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.95);
    border: none;
    width: auto;
    height: auto;
    font-size: 3rem;
    line-height: 1;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 100;
    padding: 10px;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
}

.album-nav-arrow:hover {
    color: #00E5E5;
    transform: translateY(-50%) scale(1.2);
    text-shadow: 0 0 15px rgba(0, 229, 229, 0.6);
}

.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 {
    display: flex;
    align-items: center;
    gap: 8px;
    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-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.streaming-link:hover {
    background: rgba(0, 204, 204, 0.6);
    color: #ffffff;
    transform: translateY(-2px);
}

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;
    color: #006666;
}

/* 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.hidden {
    display: none !important;
}

.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: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 40%, transparent 100%);
    opacity: 1;
    transition: all 0.3s ease;
    pointer-events: none;
    gap: 0.25rem;
}

.track-cover-container:hover .track-cover-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.6) 40%, transparent 100%);
}

.track-cover-overlay-text {
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    text-align: center;
    padding: 0 0.5rem;
    line-height: 1.2;
    max-width: 90%;
    opacity: 0;
    transition: opacity 0.3s ease;
    display: none; /* Hide text overlay on track thumbnails */
}

.track-cover-container:hover .track-cover-overlay-text {
    opacity: 0; /* Don't show on hover for track thumbnails */
}

.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);
}

/* Track Search & Filter */
.track-filters {
    margin-bottom: 1.5rem;
}

.search-container {
    position: relative;
}

.search-input {
    width: 100%;
    padding: 15px 40px 15px 45px;
    font-size: 1rem;
    border: 1px solid rgba(0, 204, 204, 0.5);
    border-radius: 10px;
    background: rgba(17, 17, 17, 0.4);
    color: #f0f0f0;
    font-family: inherit;
    transition: border-color 0.3s ease, background-color 0.3s ease;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.search-input::placeholder {
    color: #b0b0b0;
    opacity: 1;
}

.search-input:hover {
    border-color: rgba(0, 204, 204, 1);
}

.search-input:focus {
    outline: none;
    border-color: rgba(0, 204, 204, 1);
    background-color: rgba(17, 17, 17, 0.4);
}

.search-input:focus::placeholder {
    opacity: 0.4;
}

.search-icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    opacity: 0.9;
    color: #d0d0d0;
}

.search-icon-left {
    left: 15px;
    pointer-events: none;
    width: 18px;
    height: 18px;
}

.search-icon-clear {
    right: 12px;
    cursor: pointer;
    pointer-events: auto;
    transition: opacity 0.2s ease;
}

.search-icon-clear:hover {
    opacity: 1;
    color: #00CCCC;
}

/* Autocomplete suggestions */
.autocomplete-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(17, 17, 17, 0.95);
    border: 1px solid var(--border-light);
    border-top: none;
    border-radius: 0 0 10px 10px;
    max-height: 250px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.autocomplete-suggestions.show {
    display: block;
}

.autocomplete-item {
    padding: 12px 20px;
    cursor: pointer;
    color: #f0f0f0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.2s ease;
}

.autocomplete-item:last-child {
    border-bottom: none;
    border-radius: 0 0 10px 10px;
}

.autocomplete-item:hover,
.autocomplete-item.active {
    background: rgba(0, 204, 204, 0.2);
    border-color: #00CCCC;
}

.autocomplete-item-type {
    font-size: 0.7rem;
    color: #00CCCC;
    font-weight: 600;
    text-transform: uppercase;
    margin-right: 8px;
    opacity: 0.8;
}

.autocomplete-item-text {
    color: #f0f0f0;
}

.autocomplete-item-text mark {
    background: rgba(0, 204, 204, 0.3);
    color: #ffffff;
    padding: 2px 4px;
    border-radius: 3px;
    font-weight: 500;
}

.filter-actions {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 0.5rem;
    padding-left: 3px;
}

.filter-btn {
    padding: 8px 16px;
    background: rgba(0, 204, 204, 0.2);
    border: 2px solid #00cccc;
    border-radius: 6px;
    color: #00cccc;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: inherit;
    font-size: 0.9rem;
}

.filter-btn:hover {
    background: rgba(0, 204, 204, 0.3);
    transform: translateY(-1px);
}

.filter-btn:active {
    transform: translateY(0);
}

.results-count {
    color: var(--text-primary);
    font-size: 0.9rem;
}

.results-count strong {
    color: #00cccc;
    font-weight: 700;
}

/* No results message */
.no-results {
    text-align: center;
    padding: 3rem 2rem;
    color: var(--text-primary);
}

.no-results p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.no-results button {
    color: #00cccc;
    text-decoration: underline;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-family: inherit;
}

.no-results button:hover {
    color: #00E5E5;
}

/* Light theme */

body.light-theme .search-input {
    background: rgba(245, 245, 245, 0.4);
    border-color: #008B8B;
    color: #1a1a1a;
}

body.light-theme .search-input::placeholder {
    color: #666666;
}

body.light-theme .search-input:hover {
    border-color: #006666;
}

body.light-theme .search-input:focus {
    border-color: #006666;
    background: rgba(245, 245, 245, 0.4);
}

body.light-theme .search-input:focus::placeholder {
    opacity: 0.4;
}

body.light-theme .search-icon {
    color: #333333;
    opacity: 0.9;
}

body.light-theme .search-icon-clear:hover {
    color: #009999;
}

body.light-theme .autocomplete-suggestions {
    background: #ffffff;
    border-color: rgba(0, 153, 153, 0.2);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

body.light-theme .autocomplete-item {
    color: #1a1a1a;
    border-bottom-color: rgba(0, 0, 0, 0.08);
}

body.light-theme .autocomplete-item:hover,
body.light-theme .autocomplete-item.active {
    background: rgba(0, 153, 153, 0.1);
}

body.light-theme .autocomplete-item-type {
    color: #006666;
}

body.light-theme .autocomplete-item-text {
    color: #1a1a1a;
}

body.light-theme .autocomplete-item-text mark {
    background: rgba(0, 153, 153, 0.25);
    color: #1a1a1a;
}

body.light-theme .filter-btn {
    background: rgba(0, 153, 153, 0.15);
    border-color: #009999;
    color: #006666;
}

body.light-theme .filter-btn:hover {
    background: rgba(0, 153, 153, 0.25);
}

body.light-theme .results-count strong {
    color: #006666;
}

/* 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: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    color: #00CCCC;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.social-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    transition: color 0.3s ease;
    color: #00CCCC;
}

.social-link:hover {
    color: #00E5E5;
}

.social-link:hover .social-icon {
    color: #00E5E5;
}

body.light-theme .social-link {
    color: #008B8B;
}

body.light-theme .social-icon {
    color: #008B8B;
}

body.light-theme .social-link:hover {
    color: #006666;
}

body.light-theme .social-link:hover .social-icon {
    color: #006666;
}

.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 textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid rgba(0, 204, 204, 0.5);
    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 {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid rgba(0, 204, 204, 0.5);
    border-radius: 10px;
    background-color: rgba(17, 17, 17, 0.4);
    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;
    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;
    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: rgba(0, 204, 204, 1);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group input:not(:placeholder-shown),
.form-group textarea:not(:placeholder-shown) {
    background-color: rgba(17, 17, 17, 0.4);
}

.form-group select:focus,
.form-group select:not([value=""]) {
    background-color: rgba(17, 17, 17, 0.4);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(0, 204, 204, 1);
}

.form-group input:focus::placeholder,
.form-group textarea:focus::placeholder {
    opacity: 0.4;
}

body.light-theme .form-group input,
body.light-theme .form-group select,
body.light-theme .form-group textarea {
    border-color: rgba(0, 139, 139, 0.5);
    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: rgba(0, 102, 102, 1);
}

body.light-theme .form-group input:focus,
body.light-theme .form-group textarea:focus,
body.light-theme .form-group input:not(:placeholder-shown),
body.light-theme .form-group textarea:not(:placeholder-shown) {
    border-color: rgba(0, 102, 102, 1);
    background-color: rgba(245, 245, 245, 0.4) !important;
}

body.light-theme .form-group input:focus::placeholder,
body.light-theme .form-group textarea:focus::placeholder {
    opacity: 0.4;
}

body.light-theme .form-group select:focus,
body.light-theme .form-group select:not([value=""]) {
    border-color: rgba(0, 102, 102, 1);
    background-color: rgba(245, 245, 245, 0.4) !important;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

body.light-theme .form-group select {
    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='%231a1a1a' d='M6 8L0 0h12z'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 15px center !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: #00e5e5;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #00ffff;
    transform: translateY(-2px);
}

body.light-theme .footer-links a {
    color: #008B8B;
}

body.light-theme .footer-links a:hover {
    color: #006666;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

/* Footer social icon buttons - circular style with gradient backgrounds */
.footer-social .social-icon {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #009999 0%, #00cccc 100%);
    color: white !important;
    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);
}

.footer-social .social-icon:hover {
    background: linear-gradient(135deg, #00cccc 0%, #00e5e5 100%);
    color: white !important;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 204, 204, 0.6);
}

body.light-theme .footer-social .social-icon {
    background: linear-gradient(135deg, #006666 0%, #009999 100%);
    color: white !important;
    box-shadow: 0 4px 15px rgba(0, 153, 153, 0.4);
}

body.light-theme .footer-social .social-icon:hover {
    background: linear-gradient(135deg, #009999 0%, #00cccc 100%);
    color: white !important;
    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;
        margin-left: 1rem;
    }

    .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;
        margin-left: 0;
        margin-right: 1rem;
    }

    /* Hide mobile menu theme toggle item */
    .nav-item-theme {
        display: none;
    }

    .theme-toggle-mobile {
        display: none;
    }

    /* Hide desktop-only elements on mobile */
    .desktop-only {
        display: none !important;
    }

    /* Show mobile search, hide desktop search */
    .nav-search-mobile {
        display: flex;
    }

    /* Nav search on mobile */
    .nav-search-mobile.active .nav-search-input-wrapper {
        width: 180px;
    }

    .nav-search-input {
        font-size: 0.85rem;
        padding: 0 35px 0 38px;
    }

    .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 album navigation arrows - always visible (matching hero arrows) */
    .album-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;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        z-index: 150 !important;
        position: absolute !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
    }

    .album-nav-prev {
        left: 10px !important;
    }

    .album-nav-next {
        right: 10px !important;
    }

    /* Mobile play overlay - always visible */
    .hero-play-overlay,
    .album-play-overlay {
        opacity: 1 !important;
        background: rgba(0, 0, 0, 0.3) !important;
    }

    .hero-play-overlay::after,
    .album-play-overlay::after {
        opacity: 0.9 !important;
        font-size: 0.85rem !important;
    }

    .hero-play-icon,
    .album-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);
    }

    .hero-quote {
        padding: 0.5rem 1rem;
        margin: 0.75rem auto;
        width: 90%;
    }

    .hero-quote-text {
        font-size: 1rem;
        line-height: 1.6;
    }

    .hero-quote-attribution {
        margin-top: 0.5rem;
        font-size: 0.85rem;
    }

    .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 search/filter */
    .track-filters {
        padding: 1rem;
    }

    .filter-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    /* Reduce tracks container padding on mobile */
    .tracks {
        padding: 1rem;
    }

    /* 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 */
    .track-item > .youtube-link {
        margin: 0 1.25rem 1.25rem 1.25rem !important;
        padding: 14px 20px !important;
        font-size: 1rem;
        font-weight: 600;
        text-align: center;
        width: calc(100% - 2.5rem) !important;
        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;
    }

    .track-item > .youtube-link {
        margin: 0 0.875rem 0.875rem 0.875rem !important;
        padding: 8px 16px !important;
        font-size: 0.85rem;
        text-align: center;
        width: calc(100% - 1.75rem) !important;
        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(0, 139, 139, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.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;
}

body.light-theme .music-player .control-btn {
    color: #ffffff;
}

body.light-theme .music-player .control-btn:hover {
    color: #00FFFF;
}

.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;
}

body.light-theme .music-player .current-track {
    color: #ffffff;
}

.progress-bar {
    width: 100%;
    height: 4px;
    background: #333;
    border-radius: 2px;
    margin-top: 5px;
    overflow: hidden;
}

body.light-theme .music-player .progress-bar {
    background: rgba(255, 255, 255, 0.2);
}

.progress {
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
    width: 0%;
    transition: width 0.1s ease;
}

body.light-theme .music-player .progress {
    background: linear-gradient(135deg, #00FFFF 0%, #00E5E5 100%);
}

/* Featured Audio Player (under cover art) */
.featured-audio-player {
    display: none;
    background: rgba(17, 17, 17, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 20px;
    border-radius: 12px;
    border: 2px solid #00E5E5;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 420px;
    max-width: 90vw;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 10000;
    cursor: move;
    user-select: none;
}

.featured-audio-player.active {
    display: flex;
    align-items: center;
    gap: 15px;
    opacity: 1;
}

.featured-audio-player.dragging {
    transition: none;
    cursor: grabbing;
}

body.light-theme .featured-audio-player {
    background: rgba(0, 102, 102, 0.95);
    border: 2px solid #00E5E5;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.featured-audio-player .player-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.featured-audio-player .control-btn {
    background: none;
    border: none;
    color: #00E5E5;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 5px;
    line-height: 1;
}

.featured-audio-player .control-btn:hover {
    color: #00FFFF;
    transform: scale(1.1);
}

body.light-theme .featured-audio-player .control-btn {
    color: #ffffff;
}

body.light-theme .featured-audio-player .control-btn:hover {
    color: #00FFFF;
}

.featured-audio-player .track-info {
    flex: 1;
    min-width: 0;
}

.featured-audio-player .current-track {
    color: var(--text-tertiary);
    font-size: 0.9rem;
    font-weight: 500;
    margin: 0 0 5px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

body.light-theme .featured-audio-player .current-track {
    color: #ffffff;
}

.featured-audio-player .progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    margin-bottom: 5px;
    overflow: hidden;
    cursor: pointer;
}

body.light-theme .featured-audio-player .progress-bar {
    background: rgba(255, 255, 255, 0.2);
}

.featured-audio-player .progress {
    height: 100%;
    background: linear-gradient(135deg, #00E5E5 0%, #00FFFF 100%);
    border-radius: 2px;
    width: 0%;
    transition: width 0.1s ease;
}

body.light-theme .featured-audio-player .progress {
    background: linear-gradient(135deg, #00FFFF 0%, #00E5E5 100%);
}

.featured-audio-player .track-time {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.75rem;
    margin: 0;
    text-align: right;
}

body.light-theme .featured-audio-player .track-time {
    color: rgba(255, 255, 255, 0.85);
}

.featured-audio-player .player-close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    transition: color 0.3s ease;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.featured-audio-player .player-close-btn:hover {
    color: #ffffff;
}

body.light-theme .featured-audio-player .player-close-btn {
    color: rgba(255, 255, 255, 0.85);
}

body.light-theme .featured-audio-player .player-close-btn:hover {
    color: #ffffff;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .featured-audio-player {
        padding: 12px 15px;
        margin-top: 15px;
        margin-bottom: 15px;
        max-width: 100%;
    }

    .featured-audio-player .control-btn {
        font-size: 1.3rem;
    }

    .featured-audio-player .current-track {
        font-size: 0.85rem;
    }

    .featured-audio-player .track-time {
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .featured-audio-player {
        padding: 10px 12px;
        gap: 10px;
    }

    .featured-audio-player .control-btn {
        font-size: 1.2rem;
    }

    .featured-audio-player .player-close-btn {
        font-size: 1.3rem;
        width: 20px;
        height: 20px;
        top: 8px;
        right: 8px;
    }
}

/* Share Button */
.share-btn {
    background: transparent;
    border: 2px solid #00E5E5;
    color: #00E5E5;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.share-btn:hover {
    background: #00E5E5;
    color: #0a0a0a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 229, 229, 0.3);
}

/* Share Modal */
.share-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 10001;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.share-modal.active {
    display: flex;
    opacity: 1;
}

.share-modal-content {
    background: rgba(17, 17, 17, 0.95);
    backdrop-filter: blur(10px);
    border: 2px solid #00E5E5;
    border-radius: 12px;
    padding: 2rem;
    max-width: 500px;
    width: 90%;
    position: relative;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    animation: slideUp 0.3s ease;
}

body.light-theme .share-modal-content {
    background: rgba(0, 102, 102, 0.95);
    border: 2px solid #00E5E5;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.share-modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.share-modal-close:hover {
    color: #ffffff;
    transform: scale(1.1);
}

body.light-theme .share-modal-close {
    color: rgba(255, 255, 255, 0.85);
}

body.light-theme .share-modal-close:hover {
    color: #ffffff;
    transform: scale(1.1);
}

.share-modal-title {
    color: var(--text-tertiary);
    font-size: 1.5rem;
    margin: 0 0 1.5rem 0;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

body.light-theme .share-modal-title {
    color: #ffffff;
}

.share-modal-favicon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.share-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.share-option {
    background: rgba(0, 229, 229, 0.1);
    border: 1px solid rgba(0, 229, 229, 0.4);
    color: var(--text-tertiary);
    padding: 1rem;
    border-radius: 8px;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Inter', sans-serif;
}

body.light-theme .share-option {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
}

.share-option svg {
    flex-shrink: 0;
    opacity: 0.9;
}

.share-option:hover {
    background: rgba(0, 229, 229, 0.25);
    border-color: #00E5E5;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 229, 229, 0.2);
}

body.light-theme .share-option:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.15);
}

/* Light Theme Share Styles */
body.light-theme .share-btn {
    border-color: #008B8B;
    color: #008B8B;
}

body.light-theme .share-btn:hover {
    background: #008B8B;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 139, 139, 0.3);
}

/* Smooth scrolling enhancements */
section {
    scroll-margin-top: 80px;
}

/* ===============================================
   SUBSCRIPTION FORM STYLES
   =============================================== */

.subscribe-section {
    margin: 60px 0;
    padding: 48px 0;
}

.subscribe-container {
    max-width: 680px;
    margin: 0 auto;
    background: rgba(10, 10, 10, 0.5);
    border: 1px solid rgba(0, 204, 204, 0.3);
    border-radius: 20px;
    padding: 48px;
    text-align: center;
}

.subscribe-title {
    color: #00ffff;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.subscribe-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 32px;
}

.subscribe-form {
    max-width: 100%;
}

.form-row {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.subscribe-input {
    flex: 1;
    padding: 14px 20px;
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(0, 204, 204, 0.3);
    border-radius: 10px;
    color: #ffffff;
    font-size: 15px;
    font-family: 'Urbanist', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: all 0.3s ease;
}

.subscribe-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.subscribe-input:focus {
    outline: none;
    border-color: #00cccc;
    background: rgba(0, 0, 0, 0.4);
    box-shadow: 0 0 0 3px rgba(0, 204, 204, 0.1);
}

.notification-options {
    display: flex;
    gap: 24px;
    justify-content: center;
    margin-bottom: 28px;
}

.notification-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
}

.notification-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #00cccc;
}

.checkbox-label {
    user-select: none;
}

.subscribe-button {
    width: 100%;
    padding: 14px 32px;
    background: rgba(0, 204, 204, 0.18);
    color: #ffffff;
    border: 2px solid #00cccc;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    font-family: 'Urbanist', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.subscribe-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 204, 204, 0.3);
    background: rgba(0, 204, 204, 0.3);
}

.subscribe-button:active {
    transform: translateY(0);
}

.subscribe-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.subscribe-message {
    margin-top: 16px;
    padding: 12px;
    border-radius: 8px;
    font-size: 14px;
    display: none;
}

.subscribe-message.success {
    background: rgba(0, 255, 0, 0.1);
    border: 1px solid rgba(0, 255, 0, 0.3);
    color: #00ff00;
    display: block;
}

.subscribe-message.error {
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid rgba(255, 0, 0, 0.3);
    color: #ff6666;
    display: block;
}

/* Light Theme Styles */
body.light-theme .subscribe-container {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(0, 139, 139, 0.3);
}

body.light-theme .subscribe-title {
    color: #008B8B;
}

body.light-theme .subscribe-description {
    color: rgba(0, 0, 0, 0.8);
}

body.light-theme .subscribe-input {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 139, 139, 0.3);
    color: #000000;
}

body.light-theme .subscribe-input::placeholder {
    color: rgba(0, 0, 0, 0.4);
}

body.light-theme .subscribe-input:focus {
    border-color: #008B8B;
    background: rgba(0, 0, 0, 0.08);
    box-shadow: 0 0 0 3px rgba(0, 139, 139, 0.1);
}

body.light-theme .notification-checkbox {
    color: rgba(0, 0, 0, 0.8);
}

body.light-theme .subscribe-button {
    border-color: #008B8B;
    color: #008B8B;
    background: rgba(0, 139, 139, 0.08);
}

body.light-theme .subscribe-button:hover {
    background: #008B8B;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 139, 139, 0.3);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .subscribe-container {
        padding: 32px 24px;
    }

    .subscribe-title {
        font-size: 24px;
    }

    .form-row {
        flex-direction: column;
        gap: 12px;
    }

    .notification-options {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .subscribe-section {
        margin: 40px 0;
        padding: 32px 0;
    }

    .subscribe-container {
        padding: 24px 20px;
    }

    .subscribe-title {
        font-size: 22px;
    }

    .subscribe-description {
        font-size: 14px;
    }
}

/* ============================================
   VOTING CAMPAIGN BANNER
   ============================================ */

.voting-campaign-banner {
    background: linear-gradient(135deg, #00cccc 0%, #006666 100%);
    padding: 60px 20px;
    text-align: center;
    border-top: 3px solid #00ffff;
    border-bottom: 3px solid #00ffff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 204, 204, 0.3);
}

.voting-campaign-banner::before {
    content: '🗳️';
    position: absolute;
    font-size: 300px;
    opacity: 0.08;
    left: -80px;
    top: -120px;
    transform: rotate(-15deg);
    pointer-events: none;
}

.voting-campaign-banner::after {
    content: '🗳️';
    position: absolute;
    font-size: 250px;
    opacity: 0.06;
    right: -60px;
    bottom: -100px;
    transform: rotate(25deg);
    pointer-events: none;
}

.voting-banner-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.voting-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 16px;
    animation: voting-pulse 2s infinite;
    box-shadow: 0 4px 15px rgba(0, 204, 204, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

@keyframes voting-pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(0, 204, 204, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(0, 255, 255, 0.6);
    }
}

.voting-title {
    font-size: 2.5rem;
    margin: 0 0 16px 0;
    color: #ffffff;
    font-weight: 800;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.voting-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 24px;
    line-height: 1.5;
}

.btn-voting {
    display: inline-block;
    padding: 18px 48px;
    background: #ffffff;
    color: #006666;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 10px 0;
}

.btn-voting:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 35px rgba(0, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.95);
    color: #006666;
}

.btn-voting:active {
    transform: translateY(-1px) scale(1.02);
}

.voting-countdown {
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    font-weight: 600;
}

.voting-countdown span {
    color: #ffffff;
    font-weight: 700;
}

/* Light theme adjustments */
body.light-theme .voting-campaign-banner {
    background: linear-gradient(135deg, #00e6e6 0%, #00b3b3 100%);
    box-shadow: 0 10px 40px rgba(0, 180, 180, 0.3);
}

body.light-theme .voting-title {
    color: #003333;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.5);
}

body.light-theme .voting-description {
    color: #004444;
}

body.light-theme .btn-voting {
    background: #003333;
    color: #ffffff;
}

body.light-theme .btn-voting:hover {
    background: #ffffff;
    color: #006666;
}

body.light-theme .voting-countdown {
    color: #004444;
}

body.light-theme .voting-countdown span {
    color: #003333;
}

/* Responsive Design */
@media (max-width: 768px) {
    .voting-campaign-banner {
        padding: 40px 20px;
    }

    .voting-campaign-banner::before {
        font-size: 200px;
        left: -50px;
        top: -80px;
    }

    .voting-campaign-banner::after {
        font-size: 180px;
        right: -40px;
        bottom: -70px;
    }

    .voting-title {
        font-size: 1.8rem;
    }

    .voting-description {
        font-size: 1rem;
    }

    .btn-voting {
        padding: 16px 40px;
        font-size: 1.1rem;
        width: 100%;
        max-width: 300px;
    }

    .voting-countdown {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .voting-title {
        font-size: 1.5rem;
    }

    .voting-description {
        font-size: 0.95rem;
    }
}


/* ============================================
   ALBUM FEATURES: Most Played & Collapsible Sections
   ============================================ */

/* Most Played Widget */
.most-played-widget {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(247, 147, 30, 0.05));
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 16px;
    padding: 1.5rem;
    margin: 0 0 2rem 0;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.15);
}

.most-played-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.fire-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 8px rgba(255, 107, 53, 0.4));
}

.most-played-header h5 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.most-played-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.most-played-cover-container {
    position: relative;
    width: 120px;
    height: 120px;
    flex-shrink: 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.most-played-cover-container:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 24px rgba(255, 107, 53, 0.4);
}

.most-played-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.most-played-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.most-played-cover-container:hover .most-played-play-overlay {
    opacity: 1;
}

.most-played-play-icon {
    color: white;
    font-size: 2.5rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.most-played-info {
    flex: 1;
}

.most-played-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
}

.most-played-stats {
    font-size: 1rem;
    color: var(--text-secondary);
    margin: 0.25rem 0;
    font-weight: 500;
}

.most-played-location {
    font-size: 0.9rem;
    color: var(--text-tertiary);
    margin: 0.25rem 0 0 0;
    font-style: italic;
}

/* Album Section Styles */
.album-section {
    margin: 1.5rem 0;
}

.album-section-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.15), rgba(118, 75, 162, 0.1));
    border: 1px solid var(--border-color);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
}

.album-section-header:hover {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.25), rgba(118, 75, 162, 0.15));
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.2);
}

.album-toggle-icon {
    font-size: 1.25rem;
    color: var(--accent-primary);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    width: 24px;
    text-align: center;
}

.album-section-header:not(.collapsed) .album-toggle-icon {
    transform: rotate(0deg);
}

.album-section-header.collapsed .album-toggle-icon {
    transform: rotate(0deg);
}

.album-section-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    flex: 1;
    letter-spacing: 0.5px;
}

.album-section-meta {
    font-size: 0.95rem;
    color: var(--text-tertiary);
    font-weight: 500;
    white-space: nowrap;
}

.album-section-tracks {
    transition: max-height 0.3s ease, opacity 0.3s ease;
}

.album-section-tracks .track-item {
    border-left: 3px solid rgba(102, 126, 234, 0.3);
    margin-left: 1rem;
}

.album-section-tracks .track-item:first-child {
    margin-top: 1rem;
}

/* Responsive styles for album features */
@media (max-width: 768px) {
    .most-played-content {
        flex-direction: column;
        text-align: center;
    }

    .most-played-cover-container {
        width: 150px;
        height: 150px;
    }

    .album-section-header {
        padding: 0.75rem 1rem;
    }

    .album-section-title {
        font-size: 1.1rem;
    }

    .album-section-meta {
        font-size: 0.85rem;
    }

    .album-toggle-icon {
        font-size: 1rem;
        width: 20px;
    }
}

@media (max-width: 480px) {
    .most-played-widget {
        padding: 1rem;
    }

    .most-played-header h5 {
        font-size: 1.1rem;
    }

    .most-played-title {
        font-size: 1.25rem;
    }

    .most-played-stats {
        font-size: 0.9rem;
    }

    .album-section-header {
        gap: 0.75rem;
    }
}