:root {
    --primary-color: #ec13ec;
    --primary-dim: rgba(236, 19, 236, 0.4);
    --primary-glow: rgba(236, 19, 236, 0.2);
    --bg-dark: #120812;
    --bg-darker: #0a040a;
    --bg-card: #1a121a;
    --bg-card-hover: #201820;
    --text-primary: #ffffff;
    --text-secondary: #e8e8e8;
    --text-muted: #6b6b6b;
    --border-color: rgba(255, 255, 255, 0.07);
    --border-hover: rgba(236, 19, 236, 0.4);
    --gradient-primary: linear-gradient(135deg, #ec13ec 0%, #a009a0 100%);
    --gradient-text: linear-gradient(to right, #ffffff, #9ca3af);
    --shadow-subtle: 0 8px 32px rgba(0, 0, 0, 0.5);
    --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.4);
    --shadow-primary: 0 0 30px rgba(236, 19, 236, 0.4);
    --text-glow: 0 0 20px rgba(236, 19, 236, 0.3);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    antialiased: true;
}

.matrix-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 80% 20%, rgba(236, 19, 236, 0.06) 0%, transparent 60%),
        radial-gradient(circle at 20% 80%, rgba(236, 19, 236, 0.04) 0%, transparent 60%),
        var(--bg-darker);
    z-index: -1;
}

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

/* ===== HEADER / NAV ===== */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(to bottom, rgba(10, 4, 10, 0.95), transparent);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    z-index: 1000;
    pointer-events: none;
}

.navbar {
    padding: 20px 0;
}

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

.nav-right-section {
    display: flex;
    align-items: center;
    gap: 40px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-image {
    width: 44px;
    height: 44px;
    object-fit: contain;
    filter: drop-shadow(0 0 8px var(--primary-dim));
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo h1 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    margin-bottom: 1px;
}

.logo .tagline {
    font-size: 0.6rem;
    color: var(--primary-color);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 700;
}

.nav-menu {
    display: flex;
    gap: 40px;
}

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.625rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    margin: 3px 0;
    transition: 0.3s;
}

.language-selector {
    position: relative;
}

.language-selector select {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-secondary);
    padding: 8px 12px;
    font-size: 0.7rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b6b6b' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 8px center;
    background-repeat: no-repeat;
    background-size: 14px;
    padding-right: 30px;
}

.language-selector select:hover {
    border-color: var(--border-hover);
}

.language-selector select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px var(--primary-glow);
}

/* ===== SECTIONS ===== */
.section {
    padding: 120px 0;
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.title-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.title-underline {
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--primary-color);
    border-radius: 1px;
}

/* ===== HERO ===== */
.hero {
    height: 100vh;
    min-height: 600px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0 48px 96px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    opacity: 0.55;
    filter: grayscale(20%);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            #0a040a 0%,
            rgba(10, 4, 10, 0.55) 40%,
            rgba(10, 4, 10, 0.1) 100%);
}

.hero-bottom {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 48px;
}

.hero-left {}

.hero-genre-label {
    color: var(--primary-color);
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: block;
}

.hero-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(4rem, 10vw, 9rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.03em;
    line-height: 0.85;
    margin-bottom: 36px;
    color: var(--text-primary);
}

.hero-title-gradient {
    background: linear-gradient(to right, #ffffff, #6b7280);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-play-row {
    display: flex;
    align-items: center;
    gap: 24px;
}

.hero-play-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: none;
    background: var(--primary-color);
    color: white;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 3px;
    box-shadow: var(--shadow-primary);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.hero-play-btn:hover {
    background: rgba(236, 19, 236, 0.8);
    transform: scale(1.08);
}

.hero-play-info {
    display: flex;
    flex-direction: column;
}

.hero-play-label {
    font-size: 0.6rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 700;
    margin-bottom: 4px;
}

.hero-play-track {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

.hero-right {
    padding-bottom: 6px;
    flex-shrink: 0;
}

.hero-social {
    display: flex;
    gap: 28px;
}

.hero-social-link {
    color: rgba(255, 255, 255, 0.35);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.hero-social-link svg {
    width: 18px;
    height: 18px;
}

.hero-social-link:hover {
    color: var(--primary-color);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    opacity: 0.35;
    animation: bounceDown 1.5s ease-in-out infinite;
}

.hero-scroll-arrow {
    color: white;
    font-size: 1.6rem;
    display: block;
    line-height: 1;
}

@keyframes bounceDown {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(8px);
    }
}

/* ===== BIO ===== */
.bio-section {
    background: var(--bg-card);
}

.bio-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.bio-text {
    font-size: 1.05rem;
    line-height: 1.8;
}

.bio-text p {
    margin-bottom: 20px;
    color: var(--text-secondary);
}

.bio-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.highlight {
    padding: 20px;
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.highlight:hover {
    border-color: var(--border-hover);
    box-shadow: 0 0 20px var(--primary-glow);
}

.highlight h4 {
    color: var(--primary-color);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.highlight p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0 !important;
}

.bio-image {
    position: relative;
}

.bio-photo-container {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-subtle);
    border: 1px solid var(--border-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.bio-photo-container:hover {
    transform: translateY(-4px);
    border-color: var(--border-hover);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 30px var(--primary-glow);
}

.bio-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.bio-photo-container:hover .bio-photo {
    transform: scale(1.08);
}

.photo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(10, 4, 10, 0.9));
    padding: 40px 24px 24px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.bio-photo-container:hover .photo-overlay {
    transform: translateY(0);
}

.overlay-text {
    color: white;
    font-weight: 800;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-align: center;
    text-transform: uppercase;
}

/* ===== MUSIC / SETS ===== */
.music-section {
    background: var(--bg-darker);
}

.spotify-embed-container {
    margin-bottom: 40px;
    border-radius: 16px;
    overflow: hidden;
}

.soundcloud-embed-container,
.mixcloud-embed-container {
    margin-bottom: 40px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.tracklist h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--primary-color);
    margin-bottom: 24px;
    text-align: center;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.tracks {
    display: grid;
    gap: 12px;
}

.track-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.track-item:hover,
.track-item.active {
    border-color: var(--border-hover);
    background: var(--bg-card-hover);
}

.track-details h5 {
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.track-details p {
    color: var(--text-muted);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.track-waveform {
    width: 80px;
    height: 24px;
}

.mini-wave {
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(90deg,
            var(--primary-color) 0px,
            var(--primary-color) 2px,
            transparent 2px,
            transparent 5px);
    opacity: 0.5;
}

/* ===== RELEASES ===== */
.releases-section {
    background: var(--bg-card);
}

.releases-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
}

.release-item {
    width: 260px;
    flex-shrink: 0;
}

.release-item {
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.release-item:hover {
    transform: translateY(-4px);
    border-color: var(--border-hover);
    box-shadow: var(--shadow-subtle), 0 0 30px var(--primary-glow);
}

.release-item.featured {
    border-color: rgba(236, 19, 236, 0.3);
    box-shadow: 0 0 20px var(--primary-glow);
}

.release-artwork {
    position: relative;
    aspect-ratio: 1;
    background: var(--bg-darker);
    overflow: hidden;
}

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

.release-item:hover .artwork-image {
    transform: scale(1.08);
}

.play-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 4, 10, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.release-item:hover .play-overlay {
    opacity: 1;
    pointer-events: auto;
}

.play-btn-release {
    width: 60px;
    height: 60px;
    border: none;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    font-size: 1.3rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-primary);
    z-index: 10;
    pointer-events: auto;
}

.play-btn-release:hover {
    transform: scale(1.1);
    background: rgba(236, 19, 236, 0.8);
}

.release-info {
    padding: 20px;
}

.release-latest-badge {
    display: inline-block;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--primary-color);
    border: 1px solid rgba(236, 19, 236, 0.4);
    border-radius: 20px;
    padding: 3px 10px;
    margin-bottom: 10px;
}

.release-title {
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 6px;
    letter-spacing: -0.01em;
}

.release-label {
    color: var(--primary-color);
    font-size: 0.7rem;
    font-weight: 700;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.release-date {
    color: var(--text-muted);
    font-size: 0.7rem;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 600;
}

.release-platforms {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.platform-link {
    padding: 5px 12px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.platform-link:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.release-hidden {
    display: none;
}

.release-hidden.visible {
    display: block;
    animation: fadeInUp 0.4s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.releases-toggle-wrap {
    text-align: center;
    margin-bottom: 40px;
}

.releases-toggle-note {
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.releases-toggle-btn {
    background: transparent;
    border: 1px solid var(--border-hover);
    color: var(--primary-color);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 14px 36px;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.releases-toggle-btn:hover {
    background: var(--primary-color);
    color: white;
    box-shadow: var(--shadow-primary);
}

.releases-cta {
    text-align: center;
    padding: 48px;
    background: rgba(236, 19, 236, 0.05);
    border-radius: 32px;
    border: 1px solid rgba(236, 19, 236, 0.1);
    position: relative;
    overflow: hidden;
}

.releases-cta::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    background: rgba(236, 19, 236, 0.08);
    border-radius: 50%;
    filter: blur(60px);
}

.releases-cta p {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 32px;
    line-height: 1.7;
}

.platform-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.platform-btn {
    padding: 14px 28px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 800;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.platform-btn.spotify {
    background: #1DB954;
    color: white;
}

.platform-btn.apple {
    background: var(--primary-color);
    color: white;
    box-shadow: var(--shadow-primary);
}

.platform-btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

/* ===== MODAL ===== */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 4, 10, 0.9);
    backdrop-filter: blur(8px);
}

.modal-content {
    background: var(--bg-card);
    margin: 5% auto;
    padding: 0;
    border: 1px solid var(--border-color);
    border-radius: 24px;
    width: 90%;
    max-width: 480px;
    box-shadow: var(--shadow-subtle);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-40px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border-color);
}

.modal-header h3 {
    color: var(--text-primary);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin: 0;
}

.modal-close {
    color: var(--text-muted);
    font-size: 1.8rem;
    font-weight: 300;
    cursor: pointer;
    transition: color 0.3s ease;
    line-height: 1;
}

.modal-close:hover {
    color: var(--primary-color);
}

.modal-body {
    padding: 24px;
}

.modal-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.listen-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.listen-option {
    display: flex;
    align-items: center;
    padding: 18px 20px;
    background: var(--bg-darker);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.3s ease;
    cursor: pointer;
}

.listen-option:hover {
    background: var(--bg-dark);
    border-color: var(--border-hover);
    transform: translateY(-2px);
}

.option-icon {
    font-size: 1.5rem;
    margin-right: 18px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(236, 19, 236, 0.15);
    color: var(--primary-color);
}

.option-text h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 2px;
    color: var(--text-primary);
}

.option-text p {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.spotify-option:hover .option-icon {
    background: #1db954;
    color: white;
}

.apple-option:hover .option-icon {
    background: #fa243c;
    color: white;
}

.soundcloud-option:hover .option-icon {
    background: #ff5500;
    color: white;
}

/* ===== EVENTS ===== */
.events-section {
    background: var(--bg-card);
    padding-top: 60px;
}

.events-cards-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.event-card {
    width: 320px;
    background: rgba(26, 18, 26, 0.5);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 32px;
    cursor: pointer;
    transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}

.event-card:hover {
    border-color: var(--border-hover);
    background: var(--bg-card-hover);
    transform: translateY(-2px);
}

.event-card-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 180px;
}

.event-card-date {
    color: var(--primary-color);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: block;
}

.event-card-venue {
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    font-weight: 900;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: -0.02em;
    line-height: 1;
    margin-bottom: 10px;
}

.event-card-location {
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--text-muted);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: auto;
    padding-bottom: 28px;
}

.event-card-location .material-icons {
    font-size: 14px;
    color: var(--text-muted);
}

.event-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.event-card-tag {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.event-card-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-primary);
}

.event-card:hover .event-card-btn {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.event-card-btn .material-icons {
    font-size: 20px;
    transform: rotate(-45deg);
    transition: transform 0.3s ease;
}

.event-card:hover .event-card-btn .material-icons {
    transform: rotate(0deg);
}

/* ===== GALLERY STRIP ===== */
.gallery-section {
    padding: 0;
    overflow: hidden;
}

.gallery-strip {
    display: flex;
    gap: 4px;
    height: 280px;
}

.gallery-strip-item {
    flex: 1;
    min-width: 180px;
    overflow: hidden;
    transition: flex 0.4s ease;
}

.gallery-strip-item:hover {
    flex: 2;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.5s ease, filter 0.3s ease;
    filter: grayscale(20%);
}

.gallery-strip-item:hover .gallery-img {
    transform: scale(1.05);
    filter: grayscale(0%);
}

/* ===== CONTACT ===== */
.contact-section {
    background: var(--bg-darker);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--primary-color);
    margin-bottom: 16px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.contact-lead {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.7;
}

.contact-details {
    display: grid;
    gap: 28px;
}

.contact-item h4 {
    color: var(--primary-color);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.contact-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

.contact-item a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.contact-item a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.social-link {
    padding: 7px 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.social-link:hover {
    border-color: var(--border-hover);
    color: var(--primary-color);
    background: rgba(236, 19, 236, 0.08);
}

.booking-form {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 24px;
    border: 1px solid var(--border-color);
}

.form-group {
    position: relative;
    margin-bottom: 28px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px;
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    color: var(--text-primary);
    font-size: 0.95rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    appearance: none;
    -webkit-appearance: none;
    min-height: 54px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px var(--primary-glow);
}

.form-group label {
    position: absolute;
    top: 16px;
    left: 16px;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    pointer-events: none;
    transform-origin: 0 0;
    transition: transform 0.2s ease, color 0.2s ease;
    will-change: transform;
    background: var(--bg-dark);
    padding: 0 6px;
}

.form-group input:focus+label,
.form-group input:valid+label,
.form-group input[type="date"]+label,
.form-group textarea:focus+label,
.form-group textarea:valid+label {
    transform: translateY(-25px) translateX(-6px) scale(0.778);
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* Date Input Specifics */
input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
    opacity: 0.6;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

input[type="date"]::-webkit-calendar-picker-indicator:hover {
    opacity: 1;
}

.submit-btn {
    width: 100%;
    padding: 16px;
    background: var(--primary-color);
    border: none;
    border-radius: 14px;
    color: white;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-primary);
}

.submit-btn:hover {
    transform: translateY(-2px);
    background: rgba(236, 19, 236, 0.85);
    box-shadow: 0 12px 30px rgba(236, 19, 236, 0.5);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--bg-darker);
    border-top: 1px solid var(--border-color);
    padding: 60px 0 32px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.footer-logo h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 4px;
}

.footer-logo p {
    color: var(--text-muted);
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 700;
}

.footer-links {
    display: flex;
    gap: 32px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon svg {
    width: 16px;
    height: 16px;
}

.social-icon:hover {
    border-color: var(--border-hover);
    color: var(--primary-color);
    background: rgba(236, 19, 236, 0.08);
    transform: translateY(-2px);
}

/* ===== SUBMIT SPINNER ===== */
.submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-btn-spinner {
    display: none;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
    flex-shrink: 0;
}

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

.submit-btn.loading .submit-btn-spinner {
    display: inline-block;
}

.submit-btn.loading {
    opacity: 0.8;
    pointer-events: none;
    cursor: not-allowed;
}

.footer-bottom {
    text-align: center;
    padding-top: 28px;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 600;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero {
        padding: 0 32px 80px;
    }

    .hero-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 32px;
    }

    .hero-right {
        display: none;
    }

    .bio-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .events-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-container {
        justify-content: flex-start;
    }

    .logo {
        flex: 1;
    }

    .nav-right-section {
        position: static;
        flex: 0 0 auto;
        gap: 16px;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--bg-darker);
        backdrop-filter: blur(24px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 32px;
        transition: left 0.3s ease;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        font-size: 1rem;
        letter-spacing: 0.15em;
    }

    .hamburger {
        display: flex;
        margin-left: 12px;
    }

    .language-selector {
        position: static;
    }

    .language-selector select {
        font-size: 0.65rem;
        padding: 6px 8px;
        padding-right: 24px;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .hero {
        padding: 0 24px 72px;
    }

    .logo-image {
        width: 36px;
        height: 36px;
    }

    .title-text {
        font-size: 1.8rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .cta-button {
        width: 100%;
        max-width: 240px;
    }

    .vinyl {
        width: 140px;
        height: 140px;
    }

    .profile-frame {
        width: 220px;
        height: 220px;
    }

    .profile-showcase {
        flex-direction: column;
        gap: 24px;
    }

    .track-item {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .event-card {
        width: 100%;
    }

    .gallery-strip {
        display: grid;
        grid-template-columns: 1fr 1fr;
        height: auto;
        gap: 3px;
    }

    .gallery-strip-item {
        min-width: 0;
        flex: none;
        height: 200px;
    }

    .gallery-strip-item:hover {
        flex: none;
    }

    .gallery-img {
        filter: grayscale(0%);
    }

    .footer-content {
        flex-direction: column;
        gap: 28px;
        text-align: center;
    }

    .footer-links {
        order: 2;
    }

    .footer-social {
        order: 3;
    }
}

@media (max-width: 480px) {
    .section {
        padding: 80px 0;
    }

    .container {
        padding: 0 16px;
    }

    .hero-play-track {
        font-size: 0.9rem;
    }

    .bio-highlights {
        grid-template-columns: 1fr;
    }

    .booking-form {
        padding: 24px;
    }

    .releases-cta {
        padding: 32px 24px;
    }

    .release-item {
        width: 100%;
    }

    .bottom-player {
        padding: 12px;
    }

    .bp-volume {
        display: none;
    }

    .bp-info {
        display: none;
    }
}

/* ===== TRACK TOGGLE (SETS) ===== */
.track-hidden {
    display: none;
}

.track-hidden.visible {
    display: flex;
    animation: fadeInUp 0.4s ease forwards;
}

.tracks-toggle-wrap {
    margin-top: 16px;
    text-align: center;
}

/* ===== BOTTOM PLAYER ===== */
/* body padding-bottom rimosso mentre il player è nascosto */

.bottom-player {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 16px 24px;
    pointer-events: none;
}

.bp-inner {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(18, 8, 18, 0.88);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 28px;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.7), 0 0 0 0.5px rgba(255, 255, 255, 0.05);
    pointer-events: all;
}

/* Track info left */
.bp-track {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
    min-width: 0;
}

.bp-artwork {
    position: relative;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.bp-artwork img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bp-artwork-bars {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
}

.bp-bar {
    width: 2px;
    background: var(--primary-color);
    border-radius: 1px;
}

.bp-bar:nth-child(1) {
    animation: barBounce 1s ease-in-out infinite;
    height: 12px;
}

.bp-bar:nth-child(2) {
    animation: barBounce 1.5s ease-in-out infinite;
    height: 18px;
}

.bp-bar:nth-child(3) {
    animation: barBounce 0.8s ease-in-out infinite;
    height: 8px;
}

@keyframes barBounce {

    0%,
    100% {
        transform: scaleY(1);
    }

    50% {
        transform: scaleY(0.4);
    }
}

.bp-info {
    min-width: 0;
}

.bp-title-row {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 2px;
}

.bp-title-row h4 {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 160px;
}

.bp-live-badge {
    font-size: 0.55rem;
    font-weight: 900;
    background: rgba(236, 19, 236, 0.2);
    color: var(--primary-color);
    padding: 2px 6px;
    border-radius: 4px;
    letter-spacing: 0.1em;
    flex-shrink: 0;
}

.bp-artist {
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

/* Controls center */
.bp-controls-wrap {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    min-width: 0;
}

.bp-controls {
    display: flex;
    align-items: center;
    gap: 16px;
}

.bp-ctrl-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease;
    padding: 0;
}

.bp-ctrl-btn:hover {
    color: var(--text-primary);
}

.bp-ctrl-btn .material-icons {
    font-size: 22px;
}

.bp-play-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: black;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
    transition: all 0.2s ease;
}

.bp-play-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.05);
}

.bp-play-btn:active {
    transform: scale(0.95);
}

.bp-play-btn .material-icons {
    font-size: 24px;
}

.bp-progress-row {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
}

.bp-time {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--text-muted);
    font-variant-numeric: tabular-nums;
    min-width: 28px;
}

.bp-progress-bar {
    flex: 1;
    height: 4px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 2px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
}

.bp-progress-bar:hover {
    height: 6px;
}

.bp-progress-fill {
    height: 100%;
    background: var(--primary-color);
    border-radius: 2px;
    transition: width 0.1s linear;
}

/* Volume right */
.bp-volume {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.bp-vol-icon {
    font-size: 20px;
    color: var(--text-muted);
}

.bp-vol-bar {
    width: 72px;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    cursor: pointer;
}

.bp-vol-fill {
    height: 100%;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 2px;
}

.bp-queue-btn .material-icons {
    font-size: 22px;
}