:root {
    --nero: #393939;
    --grigio: #666666;
    --bianco: #ffffff;
    --verde: #1FFF00;
    --rosso: #ff3333;
    --bg-dark: #000000;
    --bg-medium: #0a0a0a;
    --bg-light: #1a1a1a;
    --spacing-xs: clamp(0.5rem, 1vw, 0.75rem);
    --spacing-sm: clamp(0.75rem, 1.5vw, 1rem);
    --spacing-md: clamp(1rem, 2vw, 1.5rem);
    --spacing-lg: clamp(1.5rem, 3vw, 2.5rem);
    --spacing-xl: clamp(2rem, 4vw, 4rem);
    --spacing-2xl: clamp(3rem, 6vw, 6rem);
    --text-xs: clamp(0.7rem, 1.5vw, 0.875rem);
    --text-sm: clamp(0.875rem, 1.8vw, 1rem);
    --text-base: clamp(1rem, 2vw, 1.125rem);
    --text-lg: clamp(1.125rem, 2.5vw, 1.25rem);
    --text-xl: clamp(1.25rem, 3vw, 1.5rem);
    --text-2xl: clamp(1.5rem, 4vw, 2rem);
    --text-3xl: clamp(2rem, 5vw, 3rem);
    --text-4xl: clamp(2.5rem, 6vw, 4rem);
    --text-5xl: clamp(3rem, 8vw, 5rem);
    --text-hero: clamp(3.5rem, 12vw, 12rem);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

::selection {
    background: var(--verde);
    color: var(--bg-dark);
}

html {
    scroll-behavior: smooth;
    cursor: crosshair;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    background: var(--bg-dark);
    color: var(--bianco);
    overflow-x: hidden;
    font-weight: 300;
    min-height: 100vh;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    z-index: 1;
    pointer-events: none;
    background-image: repeating-linear-gradient(45deg, transparent, transparent 2px, rgba(255, 255, 255, .03) 2px, rgba(255, 255, 255, .03) 4px);
    contain: strict;
}

img, video {
    will-change: transform;
    transform: translateZ(0);
    max-width: 100%;
    height: auto;
}

nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: clamp(15px, 3vw, 25px) clamp(20px, 4vw, 50px);
    z-index: 1000;
    background: linear-gradient(to bottom, var(--bg-dark) 0%, transparent 100%);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

nav.scrolled {
    padding: clamp(10px, 2vw, 15px) clamp(20px, 4vw, 50px);
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1600px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    position: relative;
    z-index: 10;
}

.logo img {
    height: clamp(40px, 8vw, 60px);
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

.logo:hover img {
    filter: drop-shadow(0 0 10px var(--verde));
    transform: scale(1.05);
}

nav.scrolled .logo img {
    height: clamp(35px, 7vw, 55px);
}

.nav-menu {
    display: flex;
    gap: clamp(20px, 4vw, 50px);
    list-style: none;
    align-items: center;
}

.nav-link {
    color: var(--bianco);
    text-decoration: none;
    font-weight: 400;
    font-size: clamp(12px, 1.5vw, 14px);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    transition: all 0.3s ease;
    opacity: 0;
    cursor: pointer;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -5px;
    left: 0;
    background: var(--verde);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--verde);
}

.nav-link:hover::after {
    width: 100%;
}

.dropdown {
    position: relative;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg-dark);
    min-width: 180px;
    margin-top: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(31, 255, 0, 0.2);
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
}

.dropdown-content a {
    display: block;
    padding: 15px 20px;
    color: var(--bianco);
    font-size: clamp(12px, 1.5vw, 13px);
    transition: all 0.2s ease;
}

.dropdown-content a:hover {
    background: rgba(31, 255, 0, 0.1);
    color: var(--verde);
    padding-left: 25px;
}

.contact-trigger {
    background: var(--verde);
    color: var(--bg-dark) !important;
    padding: clamp(10px, 2vw, 12px) clamp(15px, 3vw, 20px);
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.contact-trigger:hover {
    background: var(--bianco);
    color: var(--bg-dark) !important;
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(31, 255, 0, 0.3);
}

.contact-trigger::after {
    display: none;
}

.contact-dropdown {
    background: var(--bg-dark);
    border: 1px solid var(--verde);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(31, 255, 0, 0.2);
}

.back-nav {
    display: none !important;
}

.hero {
    height: 100vh;
    min-height: 500px;
    max-height: 1200px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #000;
}

.hero-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 0;
    opacity: 0.85;
    filter: brightness(0.7) contrast(1.1);
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0.9) 100%);
    pointer-events: none;
}

.hero-content {
    text-align: center;
    z-index: 10;
    position: relative;
    padding: var(--spacing-lg);
    animation: fadeInUp 1.5s ease-out;
    max-width: 90%;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: clamp(3rem, 15vw, 12rem);
    font-weight: 900;
    line-height: 0.8;
    text-transform: uppercase;
    letter-spacing: -0.05em;
    margin-bottom: var(--spacing-md);
}

.hero-title .line-1,
.hero-title .line-2 {
    display: block;
    opacity: 0;
    transform: translateY(50px);
}

.hero-title .outline {
    color: transparent;
    -webkit-text-stroke: 2px var(--verde);
}

.hero-subtitle {
    font-size: clamp(12px, 2vw, 20px);
    font-weight: 300;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--grigio);
    opacity: 0;
    transform: translateY(20px);
}

.hero-motto {
    font-size: clamp(20px, 3vw, 36px);
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--verde);
    margin: clamp(20px, 4vw, 30px) 0;
    opacity: 0;
    transform: translateY(20px);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    z-index: 10;
    animation: fadeIn 1s ease-out 2s forwards, float 2s ease-in-out infinite;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

.scroll-text {
    font-size: clamp(10px, 1.5vw, 11px);
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--grigio);
    writing-mode: vertical-rl;
}

.marquee-section {
    padding: clamp(30px, 5vw, 40px) 0;
    background: var(--bg-medium);
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.marquee-wrapper {
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee {
    display: flex;
    width: fit-content;
    animation: seamlessMarquee 20s linear infinite;
    will-change: transform;
    transform: translateZ(0);
}

.marquee-content {
    display: flex;
    align-items: center;
    white-space: nowrap;
    padding-right: 50px;
}

.marquee-item {
    font-size: clamp(40px, 10vw, 120px);
    font-weight: 900;
    text-transform: uppercase;
    color: transparent;
    -webkit-text-stroke: 1px rgba(31, 255, 0, 0.3);
    padding: 0 clamp(25px, 5vw, 50px);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.marquee:hover {
    animation-play-state: paused;
}

.marquee-item:hover {
    color: var(--verde);
    -webkit-text-stroke: 1px transparent;
    transform: scale(1.05);
}

@keyframes seamlessMarquee {
    0% {
        transform: translateX(0) translateZ(0);
    }
    100% {
        transform: translateX(-50%) translateZ(0);
    }
}

.artists-section {
    padding: var(--spacing-2xl) 0;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.section-title {
    font-size: clamp(2.5rem, 8vw, 6rem);
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: clamp(40px, 8vw, 80px);
    letter-spacing: -0.02em;
    opacity: 0;
    transform: translateX(-50px);
    padding: 0 clamp(20px, 4vw, 50px);
    text-align: center;
}

.section-title .verde {
    color: var(--verde);
}

.artists-marquee {
    position: relative;
    width: 100%;
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
}

.artists-track {
    display: flex;
    width: fit-content;
    animation: artistsSeamlessMarquee 45s linear infinite;
    will-change: transform;
    transform: translateZ(0);
}

.artists-track:hover {
    animation-play-state: paused;
}

.artists-content {
    display: flex;
    gap: clamp(15px, 3vw, 30px);
    padding-right: clamp(15px, 3vw, 30px);
}

@keyframes artistsSeamlessMarquee {
    0% {
        transform: translateX(0) translateZ(0);
    }
    100% {
        transform: translateX(-50%) translateZ(0);
    }
}

.artist-card {
    flex: 0 0 min(350px, 85vw);
    height: clamp(350px, 50vh, 450px);
    background: #000;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    contain: layout style paint;
    transition: all .3s ease-in-out;
}

.artist-card:hover {
    transform: translateY(-5px);
}

.artist-image {
    width: 100%;
    height: 85%;
    position: relative;
    overflow: hidden;
    background: #000;
}

.artist-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    filter: grayscale(100%) contrast(1.1);
    transition: filter 0.4s ease;
    will-change: filter;
}

.artist-card:hover .artist-image img {
    filter: grayscale(0%) contrast(1);
}

.artist-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 50%);
}

.artist-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: clamp(15px, 3vw, 25px);
    background: #000;
    text-align: center;
}

.artist-name {
    font-size: clamp(18px, 2.5vw, 22px);
    font-weight: 600;
    margin: 0;
    color: var(--bianco);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.music-section {
    padding: var(--spacing-2xl) var(--spacing-lg);
    background: var(--bg-medium);
    position: relative;
}

.music-container {
    max-width: 1200px;
    margin: 0 auto;
}

.platform-selector {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
    position: relative;
    z-index: 100;
}

.platform-dropdown {
    position: relative;
    width: min(250px, 90vw);
}

.platform-current {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: clamp(12px, 2vw, 15px) clamp(15px, 3vw, 20px);
    background: var(--bg-dark);
    border: 1px solid rgba(31, 255, 0, 0.2);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.platform-current:hover {
    border-color: var(--verde);
    box-shadow: 0 4px 20px rgba(31, 255, 0, 0.1);
    transform: translateY(-2px);
}

.platform-logo {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.platform-name {
    flex: 1;
    color: var(--bianco);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: clamp(11px, 1.5vw, 13px);
}

.dropdown-arrow {
    color: var(--verde);
    transition: transform 0.3s ease;
}

.platform-dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
}

.platform-options {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: var(--bg-dark);
    border: 1px solid rgba(31, 255, 0, 0.2);
    border-radius: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.platform-dropdown.active .platform-options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.platform-option {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: clamp(12px, 2vw, 15px) clamp(15px, 3vw, 20px);
    cursor: pointer;
    transition: all 0.2s ease;
}

.platform-option:hover {
    background: rgba(31, 255, 0, 0.1);
    padding-left: clamp(20px, 4vw, 25px);
}

.platform-option:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.music-widget {
    background: var(--bg-dark);
    border: 1px solid rgba(255, 255, 255, 0.05);
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.spotify-embed,
.soundcloud-embed {
    display: none;
    width: 100%;
}

.spotify-embed.active,
.soundcloud-embed.active {
    display: block;
}

.spotify-embed iframe,
.soundcloud-embed iframe {
    width: 100%;
    border: none;
    border-radius: 12px;
    min-height: clamp(400px, 60vh, 580px);
}

.store-section {
    padding: var(--spacing-2xl) var(--spacing-lg);
    position: relative;
    background: var(--bg-dark);
    text-align: center;
    overflow: hidden;
}

.store-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(31, 255, 0, 0.05) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.store-cta-content {
    position: relative;
    z-index: 2;
    max-width: min(800px, 90vw);
    margin: 0 auto;
}

.store-cta-title {
    font-size: clamp(3rem, 10vw, 7rem);
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: clamp(20px, 4vw, 30px);
    letter-spacing: -3px;
    opacity: 0;
    transform: scale(0.9);
    line-height: 0.9;
}

.store-cta-title .verde {
    color: var(--verde);
}

.store-cta-subtitle {
    font-size: clamp(14px, 2vw, 24px);
    color: var(--grigio);
    margin-bottom: clamp(30px, 6vw, 50px);
    font-weight: 300;
    opacity: 0;
    transform: translateY(20px);
    padding: 0 var(--spacing-md);
}

.store-cta-button {
    display: inline-block;
    padding: clamp(18px, 3vw, 25px) clamp(40px, 8vw, 80px);
    background: var(--verde);
    color: var(--bg-dark);
    text-decoration: none;
    font-size: clamp(14px, 2vw, 18px);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0;
    transform: translateY(20px);
}

.store-cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--bg-dark);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
}

.store-cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(31, 255, 0, 0.3);
}

.store-cta-button:hover::before {
    width: 500px;
    height: 500px;
}

.store-cta-button span {
    position: relative;
    z-index: 1;
    transition: color 0.4s ease;
}

.store-cta-button:hover span {
    color: var(--verde);
}

.roster-section {
    padding: var(--spacing-2xl) var(--spacing-lg);
    min-height: 100vh;
    background: var(--bg-dark);
}

.roster-header {
    text-align: center;
    margin-bottom: clamp(40px, 8vw, 80px);
}

.roster-title {
    font-size: clamp(3rem, 12vw, 7rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -3px;
    margin-bottom: 20px;
    opacity: 0;
    transform: scale(0.8);
}

.roster-subtitle {
    color: var(--grigio);
    font-size: clamp(14px, 2vw, 16px);
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0;
    transform: translateY(20px);
}

.roster-grid {
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
    gap: clamp(15px, 3vw, 30px);
}

.roster-card {
    background: var(--bg-medium);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0;
    transform: translateY(30px);
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    display: block;
}

.roster-card.placeholder {
    cursor: default;
    background: linear-gradient(135deg, var(--bg-medium) 0%, rgba(255, 255, 255, 0.02) 100%);
}

.roster-card.missing-kit {
    position: relative;
}

.press-kit-ribbon {
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--rosso);
    color: var(--bianco);
    padding: 8px 50px;
    font-size: clamp(10px, 1.5vw, 11px);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transform: rotate(45deg);
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.roster-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--verde), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.roster-card:hover:not(.placeholder) {
    transform: translateY(-10px);
    border-color: rgba(31, 255, 0, 0.3);
    box-shadow: 0 20px 40px rgba(31, 255, 0, 0.1);
}

.roster-card:hover::before {
    transform: translateX(100%);
}

.roster-card-image {
    height: clamp(350px, 50vh, 500px);
    position: relative;
    overflow: hidden;
    background: var(--bg-dark);
}

.roster-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: grayscale(50%) contrast(1.1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    aspect-ratio: 4/5;
}

.roster-card.placeholder .roster-card-image {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.05) 100%);
}

.placeholder-content {
    text-align: center;
    padding: 20px;
}

.placeholder-icon {
    width: clamp(60px, 10vw, 80px);
    height: clamp(60px, 10vw, 80px);
    margin: 0 auto 20px;
    opacity: 0.3;
}

.placeholder-text {
    font-size: clamp(14px, 2vw, 18px);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.3);
}

.roster-card:hover:not(.placeholder) .roster-card-image img {
    filter: grayscale(0%) contrast(1);
    transform: scale(1.02);
}

.roster-card-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to top, var(--bg-medium) 0%, transparent 100%);
    opacity: 1;
}

.roster-card-content {
    padding: clamp(20px, 4vw, 30px);
    position: relative;
}

.roster-artist-name {
    font-size: clamp(18px, 3vw, 24px);
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: var(--bianco);
    transition: color 0.3s ease;
}

.roster-card:hover .roster-artist-name {
    color: var(--verde);
}

.roster-artist-genre {
    font-size: clamp(11px, 1.5vw, 12px);
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--verde);
    opacity: 0.7;
    margin-bottom: 20px;
}

.roster-artist-bio {
    color: var(--grigio);
    font-size: clamp(13px, 1.8vw, 14px);
    line-height: 1.6;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.roster-card-actions {
    display: flex;
    gap: clamp(10px, 2vw, 15px);
    margin-top: 20px;
}

.press-kit-btn {
    flex: 1;
    padding: clamp(10px, 2vw, 12px) clamp(15px, 3vw, 20px);
    background: transparent;
    border: 1px solid var(--verde);
    color: var(--verde);
    text-align: center;
    text-decoration: none;
    font-size: clamp(11px, 1.5vw, 12px);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.press-kit-btn:hover:not([aria-disabled="true"]) {
    background: var(--verde);
    color: var(--bg-dark);
}

.press-kit-btn[aria-disabled="true"] {
    opacity: 0.3;
    cursor: not-allowed;
    border-color: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.4);
}

.view-profile-btn {
    flex: 1;
    padding: clamp(10px, 2vw, 12px) clamp(15px, 3vw, 20px);
    background: var(--verde);
    border: none;
    color: var(--bg-dark);
    text-align: center;
    text-decoration: none;
    font-size: clamp(11px, 1.5vw, 12px);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.view-profile-btn:hover {
    background: var(--bianco);
    transform: translateY(-2px);
}

.contact-section {
    padding: var(--spacing-2xl) var(--spacing-lg);
    background: var(--bg-medium);
    text-align: center;
}

.contact-section h2 {
    font-size: clamp(2.5rem, 10vw, 6rem);
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 30px;
    letter-spacing: -2px;
}

.contact-info {
    max-width: 600px;
    margin: 0 auto;
}

.contact-info p {
    color: var(--grigio);
    font-size: clamp(16px, 2vw, 18px);
    line-height: 1.8;
    margin-bottom: 40px;
}

.contact-email-btn {
    display: inline-block;
    padding: clamp(15px, 3vw, 20px) clamp(40px, 8vw, 60px);
    background: var(--verde);
    color: var(--bg-dark);
    text-decoration: none;
    font-size: clamp(14px, 2vw, 16px);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    border-radius: 50px;
}

.contact-email-btn:hover {
    background: var(--bianco);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(31, 255, 0, 0.3);
}

.artist-page {
    padding-top: clamp(80px, 10vh, 100px);
    min-height: 100vh;
}

.artist-hero {
    position: relative;
    height: clamp(50vh, 75vh, 85vh);
    min-height: 400px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: clamp(30px, 6vw, 60px) clamp(20px, 4vw, 60px);
}

.artist-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.artist-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    filter: brightness(0.65) contrast(1.1);
}

.artist-hero-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70%;
    background: linear-gradient(to top, var(--bg-dark) 0%, transparent 100%);
    z-index: 1;
}

.artist-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
}

.artist-hero-title {
    font-size: clamp(3rem, 10vw, 9rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -3px;
    margin-bottom: 20px;
    color: var(--bianco);
}

.artist-hero-genre {
    font-size: clamp(16px, 2vw, 18px);
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--verde);
    margin-bottom: 30px;
}

.artist-content {
    max-width: min(1400px, 100%);
    margin: 0 auto;
    padding: clamp(40px, 8vw, 80px) clamp(20px, 4vw, 60px);
}

.artist-bio-section {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

#artist-main-grid {
    display: grid;
    grid-template-columns: minmax(250px, 280px) 1fr;
    gap: clamp(30px, 6vw, 60px);
    margin-bottom: clamp(40px, 8vw, 60px);
}

#artist-main-grid > div:first-child {
    position: sticky;
    top: clamp(100px, 15vh, 120px);
    height: fit-content;
}

#artist-main-grid > div:first-child > div {
    padding: clamp(20px, 4vw, 30px);
    background: linear-gradient(135deg, rgba(31, 255, 0, 0.03) 0%, transparent 100%);
    border: 1px solid rgba(31, 255, 0, 0.1);
    border-radius: clamp(15px, 3vw, 20px);
}

#artist-main-grid > div:last-child {
    min-width: 0;
}

.artist-bio-section h2,
.artist-music-section h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: clamp(25px, 5vw, 40px);
    color: var(--bianco);
}

.artist-bio-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: clamp(16px, 2vw, 18px);
    line-height: 1.8;
    margin-bottom: 30px;
}

.performance-images-grid {
    margin: clamp(40px, 8vw, 60px) 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    gap: clamp(20px, 4vw, 30px);
    width: 100%;
}

.artist-achievements {
    list-style: none;
    margin-bottom: 40px;
}

.artist-achievements li {
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--bianco);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: clamp(14px, 2vw, 16px);
}

.artist-achievements li::before {
    content: '▸';
    color: var(--verde);
    font-size: 20px;
}

.artist-social-links {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.artist-social-link {
    width: clamp(40px, 8vw, 50px);
    height: clamp(40px, 8vw, 50px);
    border: 2px solid rgba(31, 255, 0, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--verde);
    font-size: clamp(18px, 3vw, 20px);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.artist-social-link:hover {
    background: var(--verde);
    color: var(--bg-dark);
    transform: rotate(360deg) scale(1.1);
}

.artist-music-player {
    background: var(--bg-medium);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: clamp(15px, 3vw, 20px);
    margin-bottom: 30px;
}

.artist-gallery {
    padding: clamp(40px, 8vw, 80px) 0;
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
    background: var(--bg-dark);
    position: relative;
}

.artist-gallery h2 {
    font-size: clamp(24px, 5vw, 36px);
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: clamp(40px, 8vw, 60px);
    color: var(--bianco);
    text-align: center;
    padding: 0 20px;
}

.gallery-container {
    position: relative;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 80px);
}

.gallery-wrapper {
    position: relative;
    overflow: hidden;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
    touch-action: pan-y;
}

.gallery-wrapper.dragging {
    cursor: grabbing;
}

.gallery-track {
    display: flex;
    transition: none;
    will-change: transform;
    transform: translateX(0);
}

.smoothies-special-position {
    object-position: center 12.5% !important;
}

.gallery-track.smooth {
    transition: transform 0.35s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.gallery-item {
    flex: 0 0 min(85%, 500px);
    padding: 0 clamp(10px, 2vw, 20px);
    opacity: 0.4;
    transform: scale(0.85);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item.active {
    opacity: 1;
    transform: scale(1);
}

.gallery-item.near {
    opacity: 0.7;
    transform: scale(0.92);
}

.gallery-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: clamp(15px, 3vw, 20px);
    height: clamp(350px, 50vh, 500px);
    background: var(--bg-medium);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item.active .gallery-image-wrapper {
    box-shadow: 0 30px 80px rgba(31, 255, 0, 0.2);
}

.gallery-image-wrapper:hover {
    transform: translateY(-10px);
    box-shadow: 0 40px 100px rgba(31, 255, 0, 0.3);
}

.gallery-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) brightness(0.7);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item.active .gallery-image-wrapper img {
    filter: grayscale(0%) brightness(1);
}

.gallery-item.near .gallery-image-wrapper img {
    filter: grayscale(50%) brightness(0.85);
}

.gallery-image-wrapper:hover img {
    transform: scale(1.08);
    filter: grayscale(0%) brightness(1);
}

.gallery-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(20px, 4vw, 30px);
    margin-top: clamp(30px, 6vw, 50px);
}

.gallery-btn {
    width: clamp(40px, 8vw, 50px);
    height: clamp(40px, 8vw, 50px);
    background: transparent;
    border: 2px solid rgba(31, 255, 0, 0.3);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--verde);
    font-size: clamp(18px, 3vw, 24px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.gallery-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--verde);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
}

.gallery-btn:hover {
    border-color: var(--verde);
    transform: scale(1.1);
}

.gallery-btn:hover::before {
    width: 100%;
    height: 100%;
}

.gallery-btn span {
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.gallery-btn:hover span {
    color: var(--bg-dark);
}

.gallery-progress {
    display: flex;
    gap: 8px;
    align-items: center;
}

.gallery-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.gallery-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid var(--verde);
    transform: translate(-50%, -50%) scale(0);
    transition: all 0.3s ease;
}

.gallery-dot.active {
    background: var(--verde);
    transform: scale(1.3);
}

.gallery-dot.active::before {
    transform: translate(-50%, -50%) scale(1);
}

.gallery-dot:hover:not(.active) {
    background: rgba(31, 255, 0, 0.5);
    transform: scale(1.2);
}

.swipe-hint {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--verde);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.7;
    animation: swipeHint 2s ease-in-out infinite;
    display: none;
}

@keyframes swipeHint {
    0%, 100% {
        transform: translateX(-50%) translateX(0);
    }
    25% {
        transform: translateX(-50%) translateX(-10px);
    }
    75% {
        transform: translateX(-50%) translateX(10px);
    }
}

.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(31, 255, 0, 0.1) 0%, rgba(0, 0, 0, 0.95) 70%);
    backdrop-filter: blur(15px) saturate(1.5);
    -webkit-backdrop-filter: blur(15px) saturate(1.5);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.modal-content {
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.95) 0%, rgba(0, 0, 0, 0.98) 100%);
    border: 1px solid rgba(31, 255, 0, 0.2);
    border-radius: clamp(15px, 3vw, 25px);
    width: min(90%, 650px);
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.7) translateY(50px) rotateX(15deg);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow:
        0 25px 50px rgba(31, 255, 0, 0.15),
        0 0 0 1px rgba(31, 255, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    margin: clamp(10px, 2vw, 20px);
}

.modal.show .modal-content {
    transform: scale(1) translateY(0) rotateX(0deg);
}

.demo-modal::before,
.contact-modal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 25px;
    padding: 2px;
    background: linear-gradient(45deg,
            rgba(31, 255, 0, 0.5) 0%,
            rgba(255, 255, 255, 0.1) 25%,
            rgba(31, 255, 0, 0.3) 50%,
            rgba(255, 255, 255, 0.1) 75%,
            rgba(31, 255, 0, 0.5) 100%);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: xor;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    animation: borderGlow 3s ease-in-out infinite alternate;
}

@keyframes borderGlow {
    0% {
        opacity: 0.5;
    }
    100% {
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: clamp(15px, 3vw, 20px);
    right: clamp(15px, 3vw, 25px);
    font-size: clamp(28px, 4vw, 32px);
    font-weight: bold;
    color: var(--verde);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    width: clamp(35px, 6vw, 40px);
    height: clamp(35px, 6vw, 40px);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(31, 255, 0, 0.1);
}

.modal-close:hover {
    transform: rotate(180deg) scale(1.2);
    background: var(--verde);
    color: var(--bg-dark);
    box-shadow: 0 0 20px rgba(31, 255, 0, 0.5);
}

.modal-header {
    padding: clamp(30px, 6vw, 50px);
    text-align: center;
    position: relative;
    background: linear-gradient(135deg, rgba(31, 255, 0, 0.05) 0%, transparent 100%);
    border-bottom: 1px solid rgba(31, 255, 0, 0.2);
    border-radius: clamp(15px, 3vw, 25px) clamp(15px, 3vw, 25px) 0 0;
}

.modal-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: clamp(80px, 15vw, 100px);
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--verde), transparent);
    border-radius: 0 0 10px 10px;
}

.modal-header h2 {
    font-size: clamp(28px, 6vw, 42px);
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: -2px;
    background: linear-gradient(135deg, var(--bianco) 0%, var(--verde) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.modal-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: clamp(14px, 2.5vw, 18px);
    line-height: 1.6;
    font-weight: 300;
}

.modal-content::-webkit-scrollbar,
.artist-page::-webkit-scrollbar {
    width: 8px;
}

.modal-content::-webkit-scrollbar-track,
.artist-page::-webkit-scrollbar-track {
    background: rgba(31, 255, 0, 0.1);
    border-radius: 10px;
}

.modal-content::-webkit-scrollbar-thumb,
.artist-page::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--verde), rgba(31, 255, 0, 0.6));
    border-radius: 10px;
    border: 1px solid rgba(31, 255, 0, 0.3);
}

.modal-content::-webkit-scrollbar-thumb:hover,
.artist-page::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--bianco), var(--verde));
}

.modal-content,
.artist-page {
    scrollbar-width: thin;
    scrollbar-color: var(--verde) rgba(31, 255, 0, 0.1);
}

.demo-form,
.contact-form {
    padding: clamp(30px, 6vw, 50px);
    position: relative;
}

.demo-form::before,
.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(31, 255, 0, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(31, 255, 0, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.01) 0%, transparent 50%);
    pointer-events: none;
    border-radius: 0 0 clamp(15px, 3vw, 25px) clamp(15px, 3vw, 25px);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: clamp(20px, 4vw, 40px);
    margin-bottom: clamp(25px, 5vw, 35px);
}

.form-group {
    position: relative;
    margin-bottom: clamp(25px, 5vw, 35px);
    overflow: hidden;
}

.form-group label {
    display: block;
    color: var(--verde);
    font-size: clamp(12px, 2vw, 13px);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: clamp(10px, 2vw, 15px);
    transition: all 0.3s ease;
    position: relative;
}

.form-group label::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, var(--verde), transparent);
    transition: width 0.3s ease;
}

.form-group:focus-within label::after {
    width: 60px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    background: rgba(31, 255, 0, 0.02);
    border: 2px solid transparent;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    color: var(--bianco);
    font-size: clamp(14px, 2vw, 16px);
    padding: clamp(14px, 2.5vw, 18px) clamp(12px, 2vw, 15px);
    border-radius: 12px 12px 0 0;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    font-family: inherit;
    position: relative;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-bottom-color: var(--verde);
    background: rgba(31, 255, 0, 0.05);
    transform: translateY(-3px);
    box-shadow:
        0 10px 25px rgba(31, 255, 0, 0.1),
        0 0 0 1px rgba(31, 255, 0, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: clamp(100px, 20vh, 140px);
    border-radius: 12px;
}

.form-group select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%231FFF00' viewBox='0 0 16 16'%3e%3cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px;
    padding-right: 45px;
}

.form-group select option {
    background: var(--bg-dark);
    color: var(--bianco);
    padding: 15px;
    border: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
    font-style: italic;
    font-weight: 300;
}

.submit-btn {
    width: 100%;
    background: var(--verde);
    color: var(--bg-dark);
    border: none;
    padding: clamp(18px, 3vw, 25px) clamp(30px, 6vw, 40px);
    border-radius: 50px;
    font-size: clamp(14px, 2vw, 16px);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    cursor: pointer;
    position: relative;
    margin-top: clamp(20px, 4vw, 30px);
    min-height: 50px;
}

.submit-btn:active {
    transform: translateY(-2px) scale(0.98);
}

.submit-btn.loading {
    pointer-events: none;
    opacity: 0.8;
    animation: loadingPulse 1.5s ease-in-out infinite;
}

@keyframes loadingPulse {
    0%, 100% {
        transform: translateY(-5px) scale(1);
    }
    50% {
        transform: translateY(-3px) scale(1.02);
    }
}

.btn-loading {
    display: none;
}

.submit-btn.loading .btn-text {
    display: none;
}

.submit-btn.loading .btn-loading {
    display: block;
}

.demo-modal {
    background: linear-gradient(135deg, rgba(31, 255, 0, 0.1) 0%, rgba(10, 10, 10, 0.95) 30%, rgba(0, 0, 0, 0.98) 100%);
}

.demo-modal .modal-header {
    background: linear-gradient(135deg, rgba(31, 255, 0, 0.08) 0%, transparent 70%);
}

.contact-modal {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(10, 10, 10, 0.95) 30%, rgba(0, 0, 0, 0.98) 100%);
}

.contact-modal .modal-header {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
}

footer {
    padding: clamp(40px, 8vw, 80px) clamp(20px, 4vw, 50px) clamp(20px, 4vw, 40px);
    background: var(--bg-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
    gap: clamp(30px, 6vw, 60px);
    margin-bottom: clamp(40px, 8vw, 60px);
}

.footer-brand h3 {
    font-size: clamp(20px, 3vw, 24px);
    font-weight: 800;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.footer-brand .verde {
    color: var(--verde);
}

.footer-brand p {
    color: var(--grigio);
    line-height: 1.6;
    font-size: clamp(13px, 2vw, 14px);
}

.footer-column h4 {
    font-size: clamp(11px, 1.5vw, 12px);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: var(--verde);
}

.footer-column a {
    display: block;
    color: var(--grigio);
    text-decoration: none;
    padding: 5px 0;
    font-size: clamp(13px, 2vw, 14px);
    transition: all 0.2s ease;
    cursor: pointer;
}

.footer-column a:hover {
    color: var(--bianco);
    padding-left: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: clamp(30px, 6vw, 40px);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--grigio);
    font-size: clamp(11px, 1.5vw, 12px);
}

.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.pop-in {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.pop-in.visible {
    opacity: 1;
    transform: scale(1);
}

.page {
    display: none;
}

.page.active {
    display: block;
}

.contact-trigger[aria-disabled="true"] {
    pointer-events: none;
    cursor: default;
    opacity: 0.8;
}

.contact-trigger[aria-disabled="true"]:hover {
    background: inherit;
    transform: none;
    box-shadow: none;
    color: var(--bg-dark) !important;
}

@media (max-width: 1400px) {
    .roster-grid {
        grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    }
}

@media (max-width: 1024px) {
    #artist-main-grid {
        grid-template-columns: 1fr;
        gap: clamp(30px, 6vw, 40px);
    }
    
    #artist-main-grid > div:first-child {
        position: relative !important;
        top: 0 !important;
        max-width: min(400px, 100%);
        margin: 0 auto;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
        background: none;
        border: none;
        cursor: pointer;
        padding: 10px;
        z-index: 1001;
        position: relative;
    }
    
    .hamburger {
        width: 28px;
        height: 20px;
        position: relative;
    }
    
    .hamburger span {
        display: block;
        position: absolute;
        height: 2px;
        width: 100%;
        background: var(--verde);
        border-radius: 2px;
        opacity: 1;
        left: 0;
        transform: rotate(0deg);
        transition: .25s ease-in-out;
    }
    
    .hamburger span:nth-child(1) {
        top: 0px;
    }
    
    .hamburger span:nth-child(2) {
        top: 9px;
    }
    
    .hamburger span:nth-child(3) {
        bottom: 0px;
    }
    
    .mobile-menu-btn.active .hamburger span:nth-child(1) {
        top: 9px;
        transform: rotate(45deg);
    }
    
    .mobile-menu-btn.active .hamburger span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-btn.active .hamburger span:nth-child(3) {
        bottom: 9px;
        transform: rotate(-45deg);
    }
    
    .gallery-item {
        flex: 0 0 min(100%, 400px);
    }
    
    .swipe-hint {
        display: block;
    }
}

@media (max-width: 480px) {
    :root {
        --spacing-lg: 1rem;
        --spacing-xl: 1.5rem;
        --spacing-2xl: 2rem;
    }
    
    .hero-title {
        letter-spacing: -0.03em;
    }
    
    .roster-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .modal-content {
        width: 100%;
        margin: 0;
        border-radius: 0;
        height: 100vh;
        max-height: 100vh;
    }
    
    .artist-card {
        flex: 0 0 min(280px, 90vw);
    }
}

@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
    }
    
    .hero-title {
        font-size: clamp(2rem, 10vw, 4rem);
    }
    
    .artist-hero {
        height: 100vh;
    }
}

@media (min-width: 2560px) {
    :root {
        --text-hero: clamp(5rem, 10vw, 15rem);
    }
    
    .roster-grid {
        grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    }
}

@media (hover: none) and (pointer: coarse) {
    .nav-link,
    .gallery-btn,
    .submit-btn,
    .artist-social-link {
        min-height: 44px;
        min-width: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .artist-card:hover .artist-image img {
        filter: grayscale(100%) contrast(1.1);
    }
    
    button:active,
    a:active {
        transform: scale(0.95);
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

@media (prefers-contrast: high) {
    :root {
        --verde: #00FF00;
        --bg-dark: #000000;
        --bianco: #FFFFFF;
    }
    
    .nav-link,
    .submit-btn {
        border: 2px solid currentColor;
    }
}

@media print {
    nav, .hero-video-bg, .modal {
        display: none;
    }
    
    body {
        color: #000;
        background: #fff;
    }
}

@supports (padding: env(safe-area-inset-bottom)) {
    nav {
        padding-left: max(var(--spacing-lg), env(safe-area-inset-left));
        padding-right: max(var(--spacing-lg), env(safe-area-inset-right));
    }
    
    footer {
        padding-bottom: max(var(--spacing-lg), env(safe-area-inset-bottom));
    }
    
    .hero-content {
        padding-left: max(var(--spacing-lg), env(safe-area-inset-left));
        padding-right: max(var(--spacing-lg), env(safe-area-inset-right));
    }
}


/* Artists Marquee - Optimized for iOS */
.artists-marquee {
    position: relative;
    width: 100%;
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
}

.artists-track {
    display: flex;
    width: fit-content;
    /* Calculate based on actual content */
    animation: artistsScroll 50s linear infinite;
    -webkit-animation: artistsScroll 50s linear infinite;
}

.artists-content {
    display: flex;
    gap: 30px;
    padding-right: 30px;
    /* Critical: prevent flex shrinking */
    flex-shrink: 0;
    /* Ensure minimum width */
    min-width: fit-content;
}

.artist-card {
    /* Fixed width is critical for calculation */
    width: 350px;
    min-width: 350px;
    max-width: 350px;
    flex: 0 0 350px;
    height: 450px;
    background: #000;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all .3s ease-in-out;
    /* Prevent any shrinking */
    flex-shrink: 0;
}

/* Calculate exact distance: 11 artists × (350px + 30px gap) = 4180px */
@keyframes artistsScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        /* Move by exact width of one set of artists */
        transform: translateX(calc(-11 * (350px + 30px)));
    }
}

@-webkit-keyframes artistsScroll {
    0% {
        -webkit-transform: translateX(0);
    }
    100% {
        /* Move by exact width of one set of artists */
        -webkit-transform: translateX(calc(-11 * (350px + 30px)));
    }
}

/* Text marquee with similar fix */
.marquee {
    display: flex;
    width: fit-content;
    animation: textScroll 20s linear infinite;
    -webkit-animation: textScroll 20s linear infinite;
}

.marquee-content {
    display: flex;
    align-items: center;
    white-space: nowrap;
    padding-right: 50px;
    flex-shrink: 0;
    min-width: fit-content;
}

@keyframes textScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@-webkit-keyframes textScroll {
    0% {
        -webkit-transform: translateX(0);
    }
    100% {
        -webkit-transform: translateX(-50%);
    }
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .artist-card {
        width: 280px;
        min-width: 280px;
        max-width: 280px;
        flex: 0 0 280px;
        height: 350px;
    }
    
    .artists-content {
        gap: 15px;
        padding-right: 15px;
    }
    
    /* Recalculate for mobile: 11 × (280px + 15px) = 3245px */
    @keyframes artistsScroll {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-11 * (280px + 15px)));
        }
    }
    
    @-webkit-keyframes artistsScroll {
        0% {
            -webkit-transform: translateX(0);
        }
        100% {
            -webkit-transform: translateX(calc(-11 * (280px + 15px)));
        }
    }
    
    /* Faster on mobile */
    .artists-track {
        animation-duration: 40s;
        -webkit-animation-duration: 40s;
    }
}

/* iOS-specific optimizations */
@supports (-webkit-touch-callout: none) {
    .artists-track {
        /* Force GPU acceleration */
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
    }
    
    .artist-card {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
    }
    
    /* iOS mobile specific speeds */
    @media (max-width: 768px) {
        .artists-track {
            -webkit-animation-duration: 35s !important;
            animation-duration: 35s !important;
        }
    }
}

/* Fallback for calculation issues - use fixed pixel values */
@supports not (width: calc(100px + 10px)) {
    @keyframes artistsScroll {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(-4180px); /* 11 × 380px */
        }
    }
    
    @-webkit-keyframes artistsScroll {
        0% {
            -webkit-transform: translateX(0);
        }
        100% {
            -webkit-transform: translateX(-4180px);
        }
    }
    
    @media (max-width: 768px) {
        @keyframes artistsScroll {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-3245px); /* 11 × 295px */
            }
        }
        
        @-webkit-keyframes artistsScroll {
            0% {
                -webkit-transform: translateX(0);
            }
            100% {
                -webkit-transform: translateX(-3245px);
            }
        }
    }
}

/* Ensure smooth looping */
.artists-track:hover {
    animation-play-state: paused;
    -webkit-animation-play-state: paused;
}

/* Mobile layout for artist pages */
@media (max-width: 768px) {
    /* Stack the main grid vertically */
    #artist-main-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 30px !important;
    }
    
    /* Make the sidebar (Connect section) non-sticky on mobile */
    #artist-main-grid > div:first-child {
        position: relative !important;
        top: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
    }
    
    /* Connect box adjustments for mobile */
    #artist-main-grid > div:first-child > div {
        padding: 20px !important;
        margin: 0 !important;
    }
    
    /* Biography section full width */
    #artist-main-grid > div:last-child {
        width: 100% !important;
    }
    
    /* Social links horizontal on mobile */
    .artist-social-links {
        justify-content: center !important;
    }
    
    /* Artist hero adjustments */
    .artist-hero {
        height: 60vh !important;
        min-height: 400px !important;
    }
    
    .artist-hero-title {
        font-size: clamp(2.5rem, 12vw, 4rem) !important;
        text-align: center !important;
    }
    
    .artist-content {
        padding: 30px 20px !important;
    }
    
    /* Biography text adjustments */
    .artist-bio-section h2 {
        font-size: 2rem !important;
        text-align: center !important;
        margin-bottom: 30px !important;
    }
    
    #artist-bio-main {
        font-size: 1rem !important;
        text-align: left !important;
        padding: 0 !important;
    }
    
    /* Performance images grid for mobile */
    .performance-images-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        margin: 30px 0 !important;
    }
    
    /* Booking button section */
    #artist-main-grid button {
        width: 100% !important;
        padding: 18px !important;
        font-size: 16px !important;
    }
}

/* Even smaller phones */
@media (max-width: 480px) {
    .artist-hero {
        height: 50vh !important;
        min-height: 350px !important;
    }
    
    .artist-hero-title {
        font-size: clamp(2rem, 10vw, 3rem) !important;
        letter-spacing: -2px !important;
    }
    
    .artist-content {
        padding: 25px 15px !important;
    }
    
    #artist-main-grid > div:first-child > div {
        padding: 15px !important;
        border-radius: 15px !important;
    }
    
    /* Compact social links on small phones */
    #artist-main-grid a[style*="padding: 15px"] {
        padding: 12px !important;
        font-size: 13px !important;
    }
    
    /* Biography section */
    .artist-bio-section h2 {
        font-size: 1.75rem !important;
    }
    
    /* Contact box at bottom */
    div[style*="margin-top: 40px"] {
        margin-top: 30px !important;
        padding: 25px !important;
    }
}

/* iOS specific adjustments */
@supports (-webkit-touch-callout: none) {
    @media (max-width: 768px) {
        #artist-main-grid {
            /* Ensure smooth scrolling on iOS */
            -webkit-overflow-scrolling: touch;
        }
        
        .artist-hero-bg img {
            /* Optimize image rendering on iOS */
            -webkit-transform: translateZ(0);
            -webkit-backface-visibility: hidden;
        }
    }
}

/* Landscape mode adjustments */
@media (max-height: 500px) and (orientation: landscape) {
    .artist-hero {
        height: 100vh !important;
    }
    
    .artist-hero-title {
        font-size: clamp(1.5rem, 8vw, 2.5rem) !important;
    }
}

.contact-trigger {
    padding: 0 !important;
    background: none !important;
    color: var(--verde) !important;
    border: none !important;
    border-radius: 0 !important;
    font-weight: 400 !important;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.contact-trigger:hover {
    color: var(--bianco) !important;
    background: none !important;
    transform: none !important;
    box-shadow: none !important;
}

.contact-trigger::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -5px;
    left: 0;
    background: var(--verde);
    transition: width 0.3s ease;
}

.contact-trigger:hover::after {
    width: 100%;
}

/* Mobile Navigation - Always Visible */
@media (max-width: 768px) {
    /* Keep nav menu visible */
    .nav-menu {
        display: flex !important;
        gap: 10px;
        align-items: center;
    }
    
    /* Make nav links smaller and simpler */
    .nav-link {
        font-size: 11px !important;
        padding: 8px 6px;
        opacity: 1 !important;
        letter-spacing: 0.5px;
    }
    
    /* Remove hover underline effect on mobile */
    .nav-link::after {
        display: none;
    }
    
    /* Simple tap highlight */
    .nav-link:active {
        color: var(--verde);
    }
    
    /* Contact link - no background, just green text */
    .contact-trigger {
        padding: 8px 6px !important;
        font-size: 11px !important;
        background: none !important;
        color: var(--verde) !important;
        border-radius: 0 !important;
        font-weight: 400 !important;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    
    .contact-trigger:hover {
        background: none !important;
        color: var(--bianco) !important;
        transform: none !important;
        box-shadow: none !important;
    }
    
    /* Remove dropdown arrow on mobile */
    .contact-trigger::after {
        display: none !important;
    }
    
    /* Make dropdown open on tap */
    .dropdown:focus-within .dropdown-content,
    .dropdown:active .dropdown-content {
        opacity: 1;
        visibility: visible;
    }
    
    /* Fix dropdown positioning and overflow */
    .dropdown {
        position: relative;
    }
    
    .dropdown-content {
        position: absolute !important;
        top: 100% !important;
        right: 0 !important;
        left: auto !important;
        transform: none !important;
        min-width: 120px !important;
        margin-top: 8px !important;
        background: var(--bg-dark) !important;
        border: 1px solid rgba(31, 255, 0, 0.2) !important;
        border-radius: 10px !important;
        padding: 5px !important;
        z-index: 1001 !important;
    }
    
    .dropdown-content a {
        font-size: 11px !important;
        padding: 8px 10px !important;
        display: block !important;
        white-space: nowrap !important;
        text-align: left !important;
    }
    
    .dropdown-content a:hover {
        background: rgba(31, 255, 0, 0.1) !important;
        padding-left: 12px !important;
    }
    
    /* Adjust nav container */
    .nav-container {
        padding: 0 15px;
    }
    
    /* Make logo smaller */
    .logo img {
        height: 35px !important;
        width: 35px !important;
    }
    
    /* Adjust overall nav padding */
    nav {
        padding: 12px 15px;
    }
    
    nav.scrolled {
        padding: 8px 15px;
    }
}

/* Even smaller phones */
@media (max-width: 480px) {
    .nav-menu {
        gap: 5px;
    }
    
    .nav-link {
        font-size: 10px !important;
        padding: 6px 4px;
        letter-spacing: 0;
    }
    
    .contact-trigger {
        padding: 6px 4px !important;
        font-size: 10px !important;
        background: none !important;
        color: var(--verde) !important;
        border-radius: 0 !important;
        font-weight: 400 !important;
        text-transform: uppercase;
        letter-spacing: 0;
    }
    
    .contact-trigger:hover {
        background: none !important;
        color: var(--bianco) !important;
        transform: none !important;
        box-shadow: none !important;
    }
    
    /* Keep ALL nav items visible including Store */
}

/* Landscape phones - horizontal space */
@media (max-height: 500px) and (orientation: landscape) {
    nav {
        padding: 8px 20px;
    }
    
    .logo img {
        height: 30px !important;
    }
    
    .nav-link {
        font-size: 10px !important;
    }
}

/* Fix for roster page padding */
.roster-section {
    padding-top: 120px !important; /* Increased from default to account for nav */
}

/* Adjust for mobile */
@media (max-width: 768px) {
    .roster-section {
        padding-top: 80px !important; /* Smaller nav on mobile */
    }
}

/* Adjust for scrolled nav (when it's smaller) */
nav.scrolled ~ #app .roster-section {
    padding-top: 100px !important;
}

@media (max-width: 768px) {
    nav.scrolled ~ #app .roster-section {
        padding-top: 70px !important;
    }
}

/* Also fix artist pages if needed */
.artist-page {
    padding-top: 100px !important;
}

@media (max-width: 768px) {
    .artist-page {
        padding-top: 70px !important;
    }
}