* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent; /* Remove tap highlight on mobile */
}

/* Image Protection */
img {
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
}

:root {
    --bg-dark: #000000;
    --text-primary: #ffffff;
    --text-secondary: #999999;
    --border-color: #333333;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%; /* Prevent text size adjustment on iOS */
}

body {
    font-family: 'Space Grotesk', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-dark);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Loading Screen removed */

/* Concert Modal */
.concert-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.concert-modal.show {
    opacity: 1;
    visibility: visible;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
}

.modal-content {
    position: relative;
    max-width: 700px;
    width: 90%;
    background: #000000;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 0.8rem;
    overflow: hidden;
    transform: scale(0.8);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.9), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.concert-modal.show .modal-content {
    transform: scale(1);
    opacity: 1;
}

.modal-banner {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.banner-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(51, 51, 51, 0.8) 0%, rgba(0, 0, 0, 0.9) 100%);
}

.banner-content {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    z-index: 1;
}

.modal-banner h2 {
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    margin: 0;
    color: #ffffff;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    animation: glowText 2.5s ease-in-out infinite, glitchBanner 1.8s ease-in-out infinite;
    position: relative;
    display: inline-block;
}

.modal-banner h2::before,
.modal-banner h2::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.8;
}

.modal-banner h2::before {
    animation: glitchRedBanner 1.8s ease-in-out infinite;
    color: #ff0080;
    z-index: -1;
}

.modal-banner h2::after {
    animation: glitchCyanBanner 1.8s ease-in-out infinite;
    color: #00ffff;
    z-index: -2;
}

@keyframes glitchRedBanner {
    0%, 100% {
        transform: translate(0, 0);
        opacity: 0;
    }
    20% {
        transform: translate(-3px, -2px);
        opacity: 0.8;
    }
    40% {
        transform: translate(3px, 2px);
        opacity: 0;
    }
    60% {
        transform: translate(-2px, 3px);
        opacity: 0.8;
    }
    80% {
        transform: translate(2px, -3px);
        opacity: 0;
    }
}

@keyframes glitchCyanBanner {
    0%, 100% {
        transform: translate(0, 0);
        opacity: 0;
    }
    20% {
        transform: translate(3px, 2px);
        opacity: 0;
    }
    40% {
        transform: translate(-3px, -2px);
        opacity: 0.8;
    }
    60% {
        transform: translate(2px, -3px);
        opacity: 0;
    }
    80% {
        transform: translate(-2px, 3px);
        opacity: 0.8;
    }
}

@keyframes glitchBanner {
    0%, 100% {
        text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
        transform: translate(0);
    }
    15% {
        text-shadow: 3px 0 0 rgba(255, 0, 150, 0.6),
                     -3px 0 0 rgba(0, 255, 255, 0.6),
                     0 4px 20px rgba(0, 0, 0, 0.5);
        transform: translate(2px, -1px);
    }
    30% {
        text-shadow: -3px 0 0 rgba(255, 0, 150, 0.7),
                     3px 0 0 rgba(0, 255, 255, 0.7),
                     0 4px 20px rgba(0, 0, 0, 0.5);
        transform: translate(-2px, 2px);
    }
    45% {
        text-shadow: 4px 0 0 rgba(255, 0, 150, 0.5),
                     -4px 0 0 rgba(0, 255, 255, 0.5),
                     0 4px 20px rgba(0, 0, 0, 0.5);
        transform: translate(1px, -2px);
    }
    60% {
        text-shadow: -4px 0 0 rgba(255, 0, 150, 0.6),
                     4px 0 0 rgba(0, 255, 255, 0.6),
                     0 4px 20px rgba(0, 0, 0, 0.5);
        transform: translate(-1px, 1px);
    }
    75% {
        text-shadow: 2px 0 0 rgba(255, 0, 150, 0.7),
                     -2px 0 0 rgba(0, 255, 255, 0.7),
                     0 4px 20px rgba(0, 0, 0, 0.5);
        transform: translate(0, -1px);
    }
}

@keyframes glowText {
    0%, 100% {
        color: #ffffff;
        text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5),
                     0 0 10px rgba(255, 255, 255, 0.1);
    }
    50% {
        color: #ffffff;
        text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5),
                     0 0 30px rgba(255, 255, 255, 0.4),
                     0 0 50px rgba(255, 255, 255, 0.2);
    }
}

.modal-banner p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0.5rem 0 0;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.modal-body {
    padding: 2.5rem;
}

.modal-body h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 1.5rem;
    letter-spacing: 0.05em;
}

.concert-list-modal {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.concert-item-modal {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.6rem;
    transition: all 0.3s ease;
}

.concert-item-modal:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateX(5px);
}

.concert-date-modal {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 60px;
    padding: 0.8rem 0;
    border-right: 2px solid rgba(255, 255, 255, 0.1);
}

.concert-date-modal .day {
    font-size: 1.8rem;
    font-weight: 900;
    color: #ffffff;
    line-height: 1;
}

.concert-date-modal .month {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.3rem;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.concert-details-modal {
    flex: 1;
}

.concert-details-modal h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 0.3rem;
}

.concert-details-modal p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.concert-link-modal {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.concert-item-modal:hover .concert-link-modal {
    color: #ffffff;
    transform: translateX(3px);
}

.modal-btn-primary {
    display: block;
    width: 100%;
    padding: 1.2rem;
    background: #ffffff;
    color: #000000;
    border: none;
    border-radius: 0.5rem;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.05em;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 1rem;
}

.modal-btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.modal-info {
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    font-style: italic;
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    font-size: 2rem;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    line-height: 1;
    z-index: 10;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
    transform: rotate(90deg);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.5rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 900;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: 0.05em;
    position: relative;
    animation: glitchEffect 1.2s ease-in-out infinite;
    display: inline-block;
}

.logo::before,
.logo::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.8;
}

.logo::before {
    animation: glitchRed 1.2s ease-in-out infinite;
    color: #ff0080;
    z-index: -1;
}

.logo::after {
    animation: glitchCyan 1.2s ease-in-out infinite;
    color: #00ffff;
    z-index: -2;
}

@keyframes glitchRed {
    0%, 100% {
        transform: translate(0, 0);
        opacity: 0;
    }
    25% {
        transform: translate(-3px, 0);
        opacity: 0.6;
    }
    50% {
        transform: translate(3px, 0);
        opacity: 0;
    }
    75% {
        transform: translate(-2px, 0);
        opacity: 0.5;
    }
}

@keyframes glitchCyan {
    0%, 100% {
        transform: translate(0, 0);
        opacity: 0;
    }
    25% {
        transform: translate(3px, 0);
        opacity: 0.5;
    }
    50% {
        transform: translate(-3px, 0);
        opacity: 0;
    }
    75% {
        transform: translate(2px, 0);
        opacity: 0.6;
    }
}

@keyframes glitchEffect {
    0%, 100% {
        text-shadow: 0 0 0 rgba(255, 255, 255, 0.8);
        transform: translate(0);
    }
    25% {
        text-shadow: 3px 0 0 rgba(255, 0, 150, 0.5),
                     -3px 0 0 rgba(0, 255, 255, 0.5);
        transform: translate(2px, 0);
    }
    50% {
        text-shadow: 0 0 0 rgba(255, 255, 255, 0.8);
        transform: translate(0);
    }
    75% {
        text-shadow: -3px 0 0 rgba(255, 0, 150, 0.5),
                     3px 0 0 rgba(0, 255, 255, 0.5);
        transform: translate(-2px, 0);
    }
}

.nav-links {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
    text-transform: uppercase;
}

.nav-links a:hover {
    color: #ffffff;
}

/* Dropdown Menu */
.nav-dropdown {
    position: relative;
}

.nav-link-main {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.nav-link-main::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid var(--text-secondary);
    transition: all 0.3s ease;
}

.nav-dropdown:hover .nav-link-main {
    color: #ffffff;
}

.nav-dropdown:hover .nav-link-main::after {
    border-top-color: #ffffff;
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.98) 0%, rgba(20, 0, 40, 0.98) 100%);
    border: 2px solid rgba(167, 139, 250, 0.3);
    border-radius: 1rem;
    min-width: 320px;
    margin-top: 0.5rem;
    padding: 1.5rem 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 60px rgba(167, 139, 250, 0.3);
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 1rem 2rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    position: relative;
    margin: 0.3rem 1rem;
    border-radius: 0.5rem;
}

.dropdown-menu a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 0;
    background: linear-gradient(135deg, #a78bfa 0%, #8b5cf6 100%);
    transition: height 0.3s ease;
    border-radius: 2px;
}

.dropdown-menu a:hover {
    color: #ffffff;
    background: linear-gradient(135deg, rgba(167, 139, 250, 0.2) 0%, rgba(139, 92, 246, 0.2) 100%);
    padding-left: 2.5rem;
    transform: translateX(5px);
}

.dropdown-menu a:hover::before {
    height: 100%;
}

.lang-selector {
    position: relative;
    background: linear-gradient(135deg, rgba(167, 139, 250, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    border: 2px solid rgba(167, 139, 250, 0.3);
    color: rgba(255, 255, 255, 0.9);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    cursor: pointer;
    padding: 0.6rem 1.2rem;
    margin-left: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(167, 139, 250, 0.2);
    overflow: hidden;
}

.lang-selector::before {
    content: '🌐';
    margin-right: 0.5rem;
    font-size: 1rem;
}

.lang-selector::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(167, 139, 250, 0.2) 0%, rgba(139, 92, 246, 0.2) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.lang-selector:hover {
    color: #ffffff;
    border-color: #a78bfa;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(167, 139, 250, 0.4);
}

.lang-selector:hover::after {
    opacity: 1;
}

.lang-selector.rotating {
    animation: rotateButton 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes rotateButton {
    0% {
        transform: rotateY(0deg) scale(1);
    }
    50% {
        transform: rotateY(180deg) scale(1.15);
    }
    100% {
        transform: rotateY(360deg) scale(1);
    }
}

.lang-separator {
    color: var(--text-secondary);
    margin: 0 0.2rem;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #ffffff;
    cursor: pointer;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 500;
    box-shadow: 0 8px 32px rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    padding: 0;
    font-size: 1.5rem;
}

.scroll-to-top-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.scroll-circle {
    stroke-dasharray: 175;
    stroke-dashoffset: 175;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.2));
}

.scroll-to-top i {
    position: relative;
    z-index: 1;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    animation: slideInUp 0.3s ease;
}

.scroll-to-top:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 12px 40px rgba(255, 255, 255, 0.1);
}

.scroll-to-top:hover .scroll-circle {
    filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.4));
}

.scroll-to-top:active {
    transform: translateY(-1px);
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 0.4rem;
    z-index: 1001;
}

.hamburger-line {
    width: 25px;
    height: 2.5px;
    background: #ffffff;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    margin-top: 80px;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.5) 100%);
}

/* Sections */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 3rem;
}

section {
    background: #000000;
}

section h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 3rem;
    text-align: center;
    letter-spacing: -0.02em;
}

section p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    text-align: center;
    line-height: 1.8;
}

/* Music Section */
/* Music Tabs - Modern Design */
.music-tabs {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 4rem;
    flex-wrap: wrap;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.music-tab {
    padding: 1rem 2.5rem;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    border-radius: 0.7rem;
    cursor: pointer;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
    text-transform: uppercase;
}

.music-tab::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(167, 139, 250, 0.1) 0%, rgba(139, 92, 246, 0.05) 100%);
    border-radius: 0.7rem;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.music-tab:hover {
    color: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

.music-tab:hover::before {
    opacity: 1;
}

.music-tab.active {
    background: linear-gradient(135deg, #a78bfa 0%, #8b5cf6 100%);
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(167, 139, 250, 0.4),
                0 0 0 1px rgba(167, 139, 250, 0.3);
    transform: translateY(-3px);
}

.music-tab.active::before {
    opacity: 0;
}

.music-category {
    display: none;
    animation: musicFadeIn 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.music-category.active {
    display: block;
}

@keyframes musicFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes musicFadeOut {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(-20px);
    }
}

/* Music Section Title */
.music-category h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    background: linear-gradient(135deg, #ffffff 0%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    letter-spacing: 2px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .music-tabs {
        gap: 0.3rem;
        padding: 0.4rem;
        max-width: 100%;
    }
    
    .music-tab {
        padding: 0.8rem 1.2rem;
        font-size: 0.75rem;
        letter-spacing: 0.5px;
    }
    
    .music-category h2 {
        font-size: 1.8rem;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.music-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.music-card {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.6rem;
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
    text-decoration: none;
    display: block;
}

.music-card:hover {
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.music-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

.music-card h3 {
    font-size: 1rem;
    font-weight: 700;
    padding: 1.2rem 1.2rem;
    color: #ffffff;
    text-align: center;
    background: rgba(0, 0, 0, 0.3);
}

/* Shows Section */
.shows {
    background: #050505;
}

.shows-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.show-item {
    display: flex;
    gap: 2rem;
    padding: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(167, 139, 250, 0.2);
    border-radius: 0.8rem;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.show-item:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    border-color: rgba(167, 139, 250, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(167, 139, 250, 0.15);
}

.concert-image {
    width: 280px;
    height: 280px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 0.8rem 0 0 0.8rem;
}

.concert-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.show-item:hover .concert-image img {
    transform: scale(1.05);
}

.show-content {
    display: flex;
    gap: 2rem;
    padding: 2rem;
    flex: 1;
    align-items: center;
}

.show-date {
    font-weight: 700;
    font-size: 1.1rem;
    color: #ffffff;
    min-width: 80px;
    text-align: center;
    padding: 1rem;
    background: rgba(167, 139, 250, 0.15);
    border-radius: 0.6rem;
    border: 1px solid rgba(167, 139, 250, 0.2);
}

.show-info {
    flex: 1;
}

.show-info h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.8rem;
    letter-spacing: -0.5px;
}

.show-info p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0.4rem 0;
    font-size: 1rem;
    line-height: 1.6;
}

.show-info p strong {
    color: #ffffff;
    font-weight: 600;
}

.show-link {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.3rem;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.show-link:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
}

/* Page Layouts */
.concerts-page,
.biography-page {
    min-height: 100vh;
    padding-top: 120px;
    padding-bottom: 3rem;
}

.page-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 3rem;
    text-align: center;
    letter-spacing: -0.02em;
}

/* Biography Page */
.bio-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    margin-top: 3rem;
    align-items: start;
}

.bio-image {
    position: sticky;
    top: 120px;
}

.bio-image img {
    width: 100%;
    border-radius: 0.8rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.bio-text h2 {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.bio-text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.bio-text p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.bio-text ul {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
}

.bio-text ul li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-secondary);
    font-size: 1.05rem;
}

.bio-text ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #ffffff;
    font-weight: 700;
}

/* About Section */
.about {
    background: #050505;
}

.about p {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Newsletter Section */
.newsletter {
    background: #050505;
}

.newsletter-form {
    max-width: 600px;
    margin: 3rem auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.newsletter-form input {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.4rem;
    color: #ffffff;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.newsletter-form input::placeholder {
    color: var(--text-secondary);
}

.newsletter-form input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
}

.newsletter-status {
    text-align: center;
    min-height: 20px;
    margin-top: 0.5rem;
}

.newsletter-status.success {
    color: #00ff00;
}

.newsletter-status.error {
    color: #ff0000;
}

/* Contact Section */
.contact-form {
    max-width: 600px;
    margin: 3rem auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.4rem;
    color: #ffffff;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--text-secondary);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn {
    padding: 1rem;
    background: #ffffff;
    color: #000000;
    border: none;
    border-radius: 0.4rem;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

.form-status {
    text-align: center;
    min-height: 20px;
}

.form-status.success {
    color: #00ff00;
}

.form-status.error {
    color: #ff0000;
}

/* Footer */
.footer {
    background: #050505;
    padding: 3rem 2rem;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.social-links a {
    color: #ffffff;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.social-links a:hover {
    opacity: 1;
    transform: translateY(-3px);
}

.footer p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
}

/* Responsive */
/* Tablet Breakpoint */
@media (max-width: 1024px) {
    .nav-container {
        padding: 1.5rem 2rem;
    }

    .music-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .container {
        padding: 4rem 2rem;
    }

    .hero h1 {
        font-size: 3.5rem;
    }
}

/* Mobile Breakpoint */
@media (max-width: 768px) {
    body {
        font-size: 16px;
    }

    .nav-container {
        padding: 1rem 1.5rem;
        flex-direction: row;
        justify-content: space-between;
    }

    .hamburger {
        display: flex;
    }

    .logo {
        font-size: 1.1rem;
        margin: 0;
        animation: none;
    }

    .logo::before,
    .logo::after {
        display: none;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        gap: 1rem;
        padding: 2rem 1.5rem;
        max-height: calc(100vh - 80px);
        overflow-y: auto;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 999;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-links {
        flex-direction: column;
        gap: 0;
        width: 100%;
        text-align: center;
    }

    .nav-links a {
        padding: 1rem 0;
        font-size: 0.95rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        display: block;
    }

    .nav-links a:last-child {
        border-bottom: none;
    }

    .nav-dropdown {
        width: 100%;
    }

    .nav-link-main {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 0.5rem;
    }

    .nav-link-main::after {
        transform: rotate(0deg);
    }

    .dropdown-menu {
        position: static;
        opacity: 0;
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        margin-top: 0;
        background: linear-gradient(135deg, rgba(40, 40, 40, 0.9) 0%, rgba(30, 0, 50, 0.9) 100%);
        padding: 0;
        border: none;
        border-top: 2px solid rgba(167, 139, 250, 0.3);
        min-width: unset;
        width: 100%;
        backdrop-filter: blur(10px);
    }

    .nav-dropdown.active .dropdown-menu {
        opacity: 1;
        visibility: visible;
        max-height: 500px;
        padding: 0.8rem 0;
    }

    .nav-dropdown.active .nav-link-main::after {
        transform: rotate(180deg);
    }

    .dropdown-menu a {
        padding: 1rem 1.5rem;
        font-size: 0.85rem;
        white-space: normal;
        word-wrap: break-word;
        display: block;
        text-align: center;
        color: rgba(255, 255, 255, 0.7);
        transition: all 0.3s ease;
        margin: 0.3rem 1rem;
        border-radius: 0.5rem;
        font-weight: 700;
        letter-spacing: 0.05em;
        position: relative;
    }

    .dropdown-menu a::before {
        content: '';
        position: absolute;
        left: 50%;
        bottom: 0;
        transform: translateX(-50%);
        width: 0;
        height: 2px;
        background: linear-gradient(90deg, transparent, #a78bfa, transparent);
        transition: width 0.3s ease;
    }

    .dropdown-menu a:hover {
        color: #ffffff;
        background: linear-gradient(135deg, rgba(167, 139, 250, 0.2) 0%, rgba(139, 92, 246, 0.2) 100%);
    }

    .dropdown-menu a:hover::before {
        width: 80%;
    }

    .lang-selector {
        width: 100%;
        background: linear-gradient(135deg, rgba(167, 139, 250, 0.15) 0%, rgba(139, 92, 246, 0.15) 100%);
        border: 2px solid rgba(167, 139, 250, 0.4);
        color: rgba(255, 255, 255, 0.9);
        font-weight: 700;
        font-size: 0.9rem;
        padding: 1rem;
        margin: 1rem 0 0 0;
        border-radius: 50px;
        backdrop-filter: blur(10px);
        box-shadow: 0 4px 15px rgba(167, 139, 250, 0.2);
    }

    .lang-selector:hover {
        color: #ffffff;
        border-color: #a78bfa;
        box-shadow: 0 6px 20px rgba(167, 139, 250, 0.3);
    }

    .language-toggle {
        width: 100%;
        justify-content: center;
        padding: 0.8rem;
    }

    .container {
        padding: 2rem 1.5rem;
    }

    section {
        padding: 3rem 0;
    }

    section h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .music-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .music-card {
        padding: 1.5rem;
    }

    .hero {
        height: 70vh;
        min-height: 500px;
    }

    .hero h1 {
        font-size: 2.5rem;
        line-height: 1.2;
    }

    .hero p {
        font-size: 1rem;
    }

    .bio-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .bio-image {
        position: relative;
        top: 0;
        height: 300px;
    }

    .bio-text {
        padding: 0;
    }

    .bio-text h2 {
        font-size: 2rem;
    }

    .bio-text p {
        font-size: 1rem;
    }

    .page-title {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }

    /* Newsletter Section Mobile */
    .newsletter-section {
        padding: 3rem 0;
    }

    .newsletter-section h2 {
        font-size: 2rem;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 1rem;
    }

    .newsletter-form input {
        width: 100%;
    }

    .newsletter-form button {
        width: 100%;
        padding: 1rem;
    }

    /* Contact Form Mobile */
    .contact-form input,
    .contact-form textarea {
        font-size: 16px; /* Prevents zoom on iOS */
    }

    /* Concert Cards Mobile */
    .show-item {
        flex-direction: column;
        gap: 0;
        padding: 0;
    }

    .concert-image {
        width: 100%;
        height: 220px;
        border-radius: 0.8rem 0.8rem 0 0;
    }

    .show-content {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
    }

    .show-date {
        width: 100%;
        display: flex;
        justify-content: space-around;
        gap: 1rem;
    }

    .show-info h3 {
        font-size: 1.2rem;
    }

    /* Modal Mobile */
    .modal-content {
        width: 95%;
        max-width: 95%;
        padding: 0;
        margin: 1rem;
    }

    .modal-banner {
        height: 120px;
        padding: 1.5rem;
    }

    .modal-banner h2 {
        font-size: 2rem;
    }

    .modal-banner p {
        font-size: 0.9rem;
    }

    .modal-body {
        padding: 1.5rem;
    }

    .modal-body h3 {
        font-size: 1.3rem;
    }

    .modal-btn-primary {
        padding: 1rem;
        font-size: 0.95rem;
    }

    .concert-item-modal {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .concert-date-modal {
        min-width: 60px;
    }

    .concert-details-modal h4 {
        font-size: 1rem;
    }

    .modal-close {
        width: 40px;
        height: 40px;
        font-size: 2rem;
    }

    /* Footer Mobile */
    footer {
        padding: 2rem 1.5rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}

/* Small Mobile Breakpoint */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .logo {
        font-size: 1.1rem;
    }

    section h2 {
        font-size: 1.8rem;
    }

    .page-title {
        font-size: 2rem;
    }

    .modal-banner h2 {
        font-size: 1.8rem;
    }

    .music-card h3 {
        font-size: 1.3rem;
    }

    .bio-image {
        height: 250px;
    }

    .cookie-banner {
        flex-direction: column;
        padding: 1.5rem;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-icon {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
        gap: 0.8rem;
    }

    .cookie-btn {
        width: 100%;
    }
}

/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.98) 0%, rgba(20, 20, 20, 0.98) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 2rem;
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.5);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.cookie-icon {
    font-size: 3rem;
    animation: cookieBounce 2s ease-in-out infinite;
}

@keyframes cookieBounce {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(10deg); }
}

.cookie-text {
    flex: 1;
}

.cookie-text h3 {
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.cookie-text p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: 900;
    font-size: 0.95rem;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: 0.5px;
}

.cookie-accept {
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
    color: #000000;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.cookie-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 255, 255, 0.3);
}

.cookie-decline {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cookie-decline:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

/* ========================================
   NEW MUSIC PAGE STYLES
   ======================================== */

/* Page Hero Section (Universal for all pages) */
.page-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #000000 0%, #1a0033 50%, #000000 100%);
    position: relative;
    overflow: hidden;
    margin-top: 80px;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(167, 139, 250, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(139, 92, 246, 0.15) 0%, transparent 50%);
    animation: heroGlow 8s ease-in-out infinite alternate;
}

@keyframes heroGlow {
    0% {
        opacity: 0.5;
        transform: scale(1);
    }
    100% {
        opacity: 1;
        transform: scale(1.1);
    }
}

.page-hero-content {
    text-align: center;
    z-index: 1;
    position: relative;
    padding: 2rem;
}

.page-hero-title {
    font-size: 5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #ffffff 0%, #a78bfa 50%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 80px rgba(167, 139, 250, 0.5);
    animation: titleFloat 3s ease-in-out infinite;
}

@keyframes titleFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.page-hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.3rem;
    text-transform: uppercase;
    animation: subtitleFade 2s ease-in-out infinite alternate;
}

@keyframes subtitleFade {
    0% {
        opacity: 0.5;
    }
    100% {
        opacity: 1;
    }
}

/* Home Hero Specific */
.home-hero {
    min-height: 90vh;
}

.home-title {
    font-size: 6.5rem;
}

.hero-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../img/hero.png');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: 0;
}

.hero-cta {
    margin-top: 3rem;
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-btn, .hero-btn-outline {
    padding: 1.2rem 3rem;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.1rem;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
}

.hero-btn {
    background: linear-gradient(135deg, #a78bfa 0%, #8b5cf6 100%);
    color: #ffffff;
    border: 2px solid #a78bfa;
    box-shadow: 0 10px 30px rgba(167, 139, 250, 0.4);
}

.hero-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(167, 139, 250, 0.6);
}

.hero-btn-outline {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(167, 139, 250, 0.5);
}

.hero-btn-outline:hover {
    background: rgba(167, 139, 250, 0.1);
    border-color: #a78bfa;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(167, 139, 250, 0.3);
}

/* Concerts Hero Specific */
.concerts-hero {
    background: linear-gradient(135deg, #000000 0%, #001a33 50%, #000000 100%);
}

.concerts-hero::before {
    background: 
        radial-gradient(circle at 30% 50%, rgba(139, 92, 246, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(59, 130, 246, 0.2) 0%, transparent 50%);
}

/* Biography Hero Specific */
.biography-hero {
    background: linear-gradient(135deg, #000000 0%, #1a1a00 50%, #000000 100%);
}

.biography-hero::before {
    background: 
        radial-gradient(circle at 25% 50%, rgba(234, 179, 8, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 75% 50%, rgba(167, 139, 250, 0.15) 0%, transparent 50%);
}

/* Music Hero Section */
.music-hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #000000 0%, #1a0033 50%, #000000 100%);
    position: relative;
    overflow: hidden;
    margin-top: 80px;
}

.music-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(167, 139, 250, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(139, 92, 246, 0.15) 0%, transparent 50%);
    animation: musicHeroGlow 8s ease-in-out infinite alternate;
}

@keyframes musicHeroGlow {
    0% {
        opacity: 0.5;
        transform: scale(1);
    }
    100% {
        opacity: 1;
        transform: scale(1.1);
    }
}

.music-hero-content {
    text-align: center;
    z-index: 1;
    position: relative;
}

.music-hero-title {
    font-size: 6rem;
    font-weight: 900;
    background: linear-gradient(135deg, #ffffff 0%, #a78bfa 50%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 80px rgba(167, 139, 250, 0.5);
    animation: musicTitleFloat 3s ease-in-out infinite;
}

@keyframes musicTitleFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.music-hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.3rem;
    text-transform: uppercase;
    animation: musicSubtitleFade 2s ease-in-out infinite alternate;
}

@keyframes musicSubtitleFade {
    0% {
        opacity: 0.5;
    }
    100% {
        opacity: 1;
    }
}

/* Music Tabs Section */
.music-tabs-section {
    padding: 3rem 0;
    background: #000000;
    border-bottom: 1px solid rgba(167, 139, 250, 0.2);
}

.music-tabs-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.music-tab-btn {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem 2.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(167, 139, 250, 0.2);
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.1rem;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    font-family: 'Space Grotesk', sans-serif;
}

.music-tab-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(167, 139, 250, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.music-tab-btn:hover {
    border-color: rgba(167, 139, 250, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(167, 139, 250, 0.3);
    color: #ffffff;
}

.music-tab-btn:hover::before {
    opacity: 1;
}

.music-tab-btn.active {
    background: linear-gradient(135deg, #a78bfa 0%, #8b5cf6 100%);
    border-color: #a78bfa;
    color: #ffffff;
    box-shadow: 0 10px 40px rgba(167, 139, 250, 0.5);
    transform: translateY(-3px);
}

.music-tab-btn.active::before {
    opacity: 0;
}

.tab-icon {
    font-size: 1.5rem;
    transition: transform 0.4s ease;
}

.music-tab-btn:hover .tab-icon {
    transform: scale(1.2) rotate(5deg);
}

.music-tab-btn.active .tab-icon {
    animation: tabIconBounce 0.6s ease;
}

@keyframes tabIconBounce {
    0%, 100% {
        transform: scale(1) rotate(0deg);
    }
    50% {
        transform: scale(1.3) rotate(10deg);
    }
}

.tab-indicator {
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #a78bfa, transparent);
    transition: width 0.4s ease;
}

.music-tab-btn.active .tab-indicator {
    width: 80%;
}

/* Music Content Section */
.music-content {
    padding: 4rem 0;
    min-height: 60vh;
}

.category-header {
    margin-bottom: 3rem;
    text-align: center;
}

.category-header h2 {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, #ffffff 0%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.2rem;
    margin-bottom: 1rem;
}

.category-line {
    width: 150px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #a78bfa, transparent);
    margin: 0 auto;
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(167, 139, 250, 0.6);
}

/* Enhanced Music Grid */
.music-content .music-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2.5rem;
}

/* Enhanced Music Card */
.music-content .music-card {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border: 2px solid rgba(167, 139, 250, 0.2);
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.music-content .music-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(167, 139, 250, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

.music-content .music-card:hover {
    border-color: #a78bfa;
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(167, 139, 250, 0.4);
}

.music-content .music-card:hover::before {
    opacity: 1;
}

.music-card-image {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.music-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.music-content .music-card:hover .music-card-image img {
    transform: scale(1.1);
}

.music-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(167, 139, 250, 0.9) 0%, rgba(139, 92, 246, 0.9) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
}

.music-content .music-card:hover .music-card-overlay {
    opacity: 1;
}

.music-card-overlay i {
    font-size: 3rem;
    color: #ffffff;
    animation: spotifyPulse 1.5s ease-in-out infinite;
}

@keyframes spotifyPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.music-card-overlay span {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
}

.music-card-info {
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 2;
}

.music-card-info h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.music-content .music-card:hover .music-card-info h3 {
    background: linear-gradient(135deg, #ffffff 0%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.music-card-info p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.05rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .page-hero {
        min-height: 50vh;
        margin-top: 60px;
    }
    
    .page-hero-title {
        font-size: 2.5rem;
        letter-spacing: 0.2rem;
    }
    
    .home-title {
        font-size: 3rem;
    }
    
    .page-hero-subtitle {
        font-size: 0.9rem;
        letter-spacing: 0.2rem;
    }
    
    .home-hero {
        min-height: 70vh;
    }
    
    .hero-cta {
        margin-top: 2rem;
        gap: 1rem;
    }
    
    .hero-btn, .hero-btn-outline {
        padding: 1rem 2rem;
        font-size: 0.9rem;
    }
    
    .music-hero {
        min-height: 40vh;
        margin-top: 60px;
    }
    
    .music-hero-title {
        font-size: 3rem;
        letter-spacing: 0.2rem;
    }
    
    .music-hero-subtitle {
        font-size: 0.9rem;
        letter-spacing: 0.2rem;
    }
    
    .music-tabs-section {
        top: 60px;
        padding: 1.5rem 0;
    }
    
    .music-tab-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.75rem;
        gap: 0.5rem;
    }
    
    .tab-icon {
        font-size: 1.2rem;
    }
    
    .category-header h2 {
        font-size: 2rem;
    }
    
    .music-content .music-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .music-card-image {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .page-hero-title {
        font-size: 2rem;
    }
    
    .home-title {
        font-size: 2.5rem;
    }
    
    .hero-btn, .hero-btn-outline {
        padding: 0.8rem 1.5rem;
        font-size: 0.8rem;
    }
    
    .music-hero-title {
        font-size: 2rem;
    }
    
    .music-tab-btn {
        padding: 0.6rem 1rem;
        font-size: 0.7rem;
    }
    
    .music-content .music-grid {
        grid-template-columns: 1fr;
    }
}