/* ========================================
   RESET & BASE STYLES
======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    cursor: none;
    background: #000;
}

/* Homepage specific styles */
body.homepage {
    height: 100vh;
    overflow: hidden;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
}

/* Forza cursor: none su tutti gli elementi tranne i link mobile */
*, *:hover, *:focus, *:active {
    cursor: none !important;
}

/* Eccezioni per mobile: consenti cursor e pointer events */
@media (max-width: 768px) {
    /* Riabilita tutto su mobile */
    *, *:hover, *:focus, *:active {
        cursor: auto !important;
        pointer-events: auto !important;
        -webkit-tap-highlight-color: transparent !important;
        -webkit-touch-callout: none !important;
        -webkit-user-select: none !important;
        -moz-user-select: none !important;
        -ms-user-select: none !important;
        user-select: none !important;
        outline: none !important;
    }
    
    body, html {
        pointer-events: auto !important;
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent !important;
    }
    
    /* Elementi di navigazione con priorità massima */
    .rec-button,
    #recButton,
    .homepage-logo,
    #homepageLogo,
    .mobile-logo,
    #mobileLogo,
    .slide-menu {
        z-index: 99999 !important;
        pointer-events: auto !important;
        cursor: pointer !important;
        height: 50px;
    }
    
    .mobile-central-link,
    .mobile-link,
    .text-overlay,
    .studio-link,
    .studio-half,
    .steel-book-btn,
    a.steel-book-btn {
        cursor: pointer !important;
        pointer-events: auto !important;
        touch-action: manipulation !important;
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1) !important;
    }
}

/* ========================================
   HOMEPAGE LOGO
======================================== */

/* Contenitore logo desktop - visibile solo su desktop */
.desktop-logo-container {
    position: fixed;
    top: 0.2rem;
    right: 0.5rem;
    z-index: 200;
    display: block;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Contenitore logo mobile - nascosto di default */
.mobile-logo-container {
    position: fixed;
    top: 0.4rem;
    right: 0.4rem;
    z-index: 200;
    display: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.homepage-logo {
    height: 90px;
    width: auto;
    opacity: 0.9;
    transition: all 0.3s ease, opacity 0.15s ease;
    cursor: none;
    filter: brightness(0) invert(1); /* Logo desktop sempre bianco */
    pointer-events: auto; /* Assicura che sia cliccabile */
}

.mobile-logo {
    height: 80px;
    width: auto;
    opacity: 0.9;
    transition: all 0.3s ease, opacity 0.15s ease;
    cursor: none;
    filter: brightness(0) invert(1); /* Logo mobile sempre bianco */
    pointer-events: auto; /* Assicura che sia cliccabile */
    display: none; /* Nascosto di default su desktop */
}

/* Logo nero sulla pagina Steel Studio */
.steel-page .homepage-logo,
.steel-page .mobile-logo {
    filter: none !important; /* Rimuove il filtro bianco, mostra il logo nero originale */
}

/* Assicura che anche su mobile la pagina Steel Studio usi il logo nero */
@media (max-width: 768px) {
    .steel-page .mobile-logo-container .mobile-logo {
        filter: none !important; /* Logo nero anche su mobile per Steel Studio */
    }
}

/* ========================================
   HEADER BAR - BARRA NERA SUPERIORE
======================================== */

/* Barra nera che contiene tutti gli elementi dell'header */
.header-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: transparent;
    backdrop-filter: blur(25px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
    z-index: 99999;
    transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1rem;
}

/* Stato nascosto per la barra */
.header-hidden .header-bar,
.header-hidden-modal .header-bar {
    opacity: 0;
    transform: translateY(-100%) scale(0.95);
    pointer-events: none;
}

/* Container per elementi sinistra, centro, destra */
.header-left {
    display: flex;
    align-items: center;
    flex: 1;
}

.header-center {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
}

.header-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex: 1;
}

/* Riposiziona gli elementi esistenti all'interno della barra */
.header-bar .rec-button {
    position: static;
    margin: 0;
    pointer-events: auto !important;
    cursor: none !important;
}

.header-bar .rec-button .rec-dot {
    pointer-events: auto !important;
    cursor: none !important;
}

.header-bar .language-toggle {
    position: static;
    transform: none;
}

.header-bar .desktop-logo-container,
.header-bar .mobile-logo-container {
    position: static;
}

/* Loghi nella barra trasparente - mantengono il colore originale */
.header-bar .homepage-logo,
.header-bar .mobile-logo {
    filter: none !important; /* Nessun filtro - usa il colore originale del logo */
    height: 120px; /* Riduce leggermente per la barra */
}

/* Pulsante traduzione nella barra trasparente */
.header-bar .lang-btn {
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: black;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.header-bar .lang-btn:hover {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.15);
    transform: translateY(-1px) scale(1.02);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* ========================================
   RECORDING BUTTON & NAVIGATION BAR
======================================== */

.rec-button {
    position: fixed;
    top: 0.8rem;
    left: 0.8rem;
    z-index: 300; /* Sopra la sezione contact (z-index: 150) */
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: none;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.3s ease, transform 0.3s ease;
}

.rec-button:hover {
    transform: scale(1.1);
}

.rec-dot {
    width: 12px;
    height: 12px;
    background: #ff0000;
    border-radius: 50%;
    position: relative;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
    animation: pulse 2s infinite;
    cursor: none;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
    }
    50% {
        box-shadow: 0 0 30px rgba(255, 0, 0, 0.8), 0 0 40px rgba(255, 0, 0, 0.3);
    }
    100% {
        box-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
    }
}

/* Navigation Bar */
.slide-menu {
    position: fixed;
    top: 2.5rem;
    left: 50%;
    transform: translateX(-50%) translateY(-50px) scale(0.95); /* Posizione iniziale nascosta */
    width: auto;
    height: auto;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    z-index: 99997;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94); /* Transizione fluida per effetto slide */
    opacity: 0; /* Nascosto di default */
    pointer-events: none; /* Non interattivo quando nascosto */
    padding: 0.4rem 0.9rem;
}



.slide-menu.active {
    transform: translateX(-50%) translateY(0) scale(1); /* Slide verso il basso quando attivo */
    opacity: 1;
    pointer-events: all;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4); /* Ombra più marcata quando attivo */
}

.slide-menu-content {
    display: flex;
    align-items: center;
    gap: 0;
    position: relative;
}

.menu-header {
    display: none;
}

.menu-close {
    position: absolute;
    top: -0.5rem;
    right: -0.5rem;
    width: 30px;
    height: 30px;
    cursor: none;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.menu-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.menu-close span {
    width: 12px;
    height: 1px;
    background: rgba(255, 255, 255, 0.8);
    position: absolute;
    transition: all 0.3s ease;
}

.menu-close span:first-child {
    transform: rotate(45deg);
}

.menu-close span:last-child {
    transform: rotate(-45deg);
}

/* Menu Navigation */
.menu-nav {
    display: flex;
    align-items: center;
    gap: 0;
    margin: 0;
}

.menu-item {
    display: flex;
    align-items: center;
    padding: 0.4rem 0.8rem;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.2s cubic-bezier(0.4, 0.0, 0.2, 1);
    position: relative;
    border-radius: 18px;
    margin: 0 0.1rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
}

.menu-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.menu-item:hover {
    color: rgba(255, 255, 255, 0.9);
    transform: translateY(-1px);
}

.menu-item:hover::before {
    opacity: 1;
}

.menu-item.active {
    color: rgba(255, 255, 255, 1);
    background: rgba(255, 255, 255, 0.1);
}

.menu-item.active::before {
    opacity: 0;
}

.menu-number {
    display: none;
}

.menu-text {
    font-size: inherit;
    font-weight: inherit;
    letter-spacing: inherit;
    text-transform: inherit;
}

/* Instagram Menu Item */

.menu-instagram .menu-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.menu-instagram svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
    stroke: rgba(255, 255, 255, 0.6); /* Bianco di default (per Works e Black Box) */
}

.menu-instagram:hover svg {
    transform: scale(1.1);
    stroke: rgba(255, 255, 255, 0.9);
}

/* Steel page Instagram icon - NERO */
.steel-page .menu-instagram {
    color: rgba(0, 0, 0, 0.6);
    border-top-color: rgba(0, 0, 0, 0.1);
    background: transparent !important;
}

.steel-page .menu-instagram:hover {
    color: rgba(0, 0, 0, 0.9);
    background: rgba(0, 0, 0, 0.05) !important;
}

.steel-page .menu-instagram svg {
    stroke: rgba(0, 0, 0, 0.7) !important;
}

.steel-page .menu-instagram:hover svg {
    stroke: rgba(0, 0, 0, 1) !important;
}

/* Black Box page Instagram icon - BIANCO */
.blackbox-page .menu-instagram svg {
    stroke: rgba(255, 255, 255, 0.6);
}

.blackbox-page .menu-instagram:hover svg {
    stroke: rgba(255, 255, 255, 0.9);
}

/* Menu Footer */
.menu-footer {
    display: none;
}

/* Animation for menu items */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile responsive */
@media (max-width: 768px) {
    .rec-button {
        top: 0.6rem;
        left: 0.6rem;
        width: 45px;
        height: 45px;
    }
    
    .rec-dot {
        width: 10px;
        height: 10px;
    }
    
    .slide-menu {
        top: 6.5rem; /* Posizione iniziale nascosta */
        padding: 0.25rem 0.4rem; /* Padding ridotto */
        transform: translateX(-50%) translateY(-40px) scale(0.95); /* Nascosto sopra */
    }
    
    /* Quando il menu si apre su mobile, appare più in alto */
    .slide-menu.active {
        top: 5.5rem !important; /* Posizione più alta quando aperto su mobile */
        transform: translateX(-50%) translateY(0) scale(1) !important;
    }
    
    /* Menu più in basso su Steel Studio mobile - sotto la header bar */
    .steel-page .slide-menu {
        top: 7rem; /* Aggiornato per coerenza con la nuova posizione */
    }
}

/* Menu più in basso per steel-page su desktop - come Steel Studio */
@media (min-width: 769px) {
    .steel-page .slide-menu {
        top: 6rem !important; /* Un po' più in alto */
        background: rgba(255, 255, 255, 0.1) !important;
        backdrop-filter: blur(20px) !important;
        border: 1px solid rgba(255, 255, 255, 0.2) !important;
    }
}

/* Colori menu items per steel-page - identici a Steel Studio */
.steel-page .menu-item {
    color: rgba(0, 0, 0, 0.7) !important;
}

.steel-page .menu-item:hover {
    color: rgba(0, 0, 0, 0.9) !important;
}

.steel-page .menu-item.active {
    color: rgba(0, 0, 0, 1) !important;
    background: rgba(0, 0, 0, 0.08) !important;
}

@media (max-width: 768px) {
    .menu-item {
        padding: 0.2rem 0.35rem; /* Padding ridotto */
        font-size: 0.55rem; /* Font più piccolo */
    }
    
    /* Instagram icon visibile e ridimensionato su mobile */
    .menu-instagram {
        display: flex !important;
        align-items: center;
        justify-content: center;
    }
    
    .menu-instagram svg {
        width: 14px; /* Ridotto da 16px */
        height: 14px;
    }
    
    /* Steel Studio - icona Instagram NERA su mobile */
    .steel-page .menu-instagram svg {
        stroke: rgba(0, 0, 0, 0.7) !important;
    }
    
    .steel-page .menu-instagram:hover svg {
        stroke: rgba(0, 0, 0, 1) !important;
    }
    
    /* Black Box - icona Instagram BIANCA su mobile */
    .blackbox-page .menu-instagram svg {
        stroke: rgba(255, 255, 255, 0.7) !important;
    }
    
    .blackbox-page .menu-instagram:hover svg {
        stroke: rgba(255, 255, 255, 1) !important;
    }
    
    .menu-close {
        width: 25px;
        height: 25px;
        top: -0.4rem;
        right: -0.4rem;
    }
    
    .menu-close span {
        width: 10px;
    }
}

@media (max-width: 480px) {
    .rec-button {
        top: 0.5rem;
        left: 0.5rem;
        width: 40px;
        height: 40px;
    }
    
    .rec-dot {
        width: 8px;
        height: 8px;
    }
    
    .slide-menu {
        top: 4rem;
        padding: 0.15rem 0.3rem; /* Padding ancora più ridotto */
        border-radius: 20px; /* Border radius più piccolo */
    }
    
    .menu-item {
        padding: 0.15rem 0.25rem; /* Padding molto ridotto */
        font-size: 0.5rem; /* Font ancora più piccolo */
        margin: 0 0.01rem;
    }
    
    /* Instagram icon ancora più piccolo su schermi piccoli */
    .menu-instagram svg {
        width: 12px; /* Ridotto da 14px */
        height: 12px;
    }
    
    /* Steel Studio - icona Instagram NERA anche su schermi piccoli */
    .steel-page .menu-instagram svg {
        stroke: rgba(0, 0, 0, 0.7) !important;
    }
    
    /* Black Box - icona Instagram BIANCA anche su schermi piccoli */
    .blackbox-page .menu-instagram svg {
        stroke: rgba(255, 255, 255, 0.7) !important;
    }
    
    .menu-close {
        width: 22px;
        height: 22px;
    }

    /* Logo mobile ancora più piccolo su schermi piccoli */
    .mobile-logo {
        height: 50px;
    }
    
    .main-logo {
        top: 0.3rem;
        right: 0.3rem;
    }
}

.homepage-logo:hover {
    opacity: 1;
    transform: scale(1.05);
}

/* ========================================
   MAIN FOOTER
======================================== */

.main-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 250; /* Z-index aumentato per essere sempre sopra la sezione contact */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 1rem;
    background: transparent;
}

.footer-left, .footer-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-center {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: none;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: rgba(255, 255, 255, 1);
}

.footer-separator {
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Inter', sans-serif;
    font-weight: 400; /* Leggermente più grassetto per nitidezza */
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    margin: 0 0.2rem;
    -webkit-font-smoothing: antialiased; /* Migliore rendering dei font */
    -moz-osx-font-smoothing: grayscale; /* Migliore rendering su Mac */
    text-rendering: optimizeLegibility; /* Ottimizza la leggibilità */
    text-shadow: none; /* Nessuna ombra per massima nitidezza */
}

.footer-credit-link {
    display: inline-flex;
    align-items: baseline;
    gap: 0.3rem;
    color: rgba(255, 255, 255, 1);
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    cursor: none;
    transition: transform 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform-style: preserve-3d;
    perspective: 1000px;
}

.footer-credit-link:hover {
    transform: rotateY(360deg) rotateX(15deg);
}

.credit-by {
    font-weight: 200;
    font-size: 0.6rem;
    letter-spacing: 0.1em;
    opacity: 0.8;
    transition: transform 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.credit-twh {
    font-weight: 400;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    transition: transform 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.footer-credit-link:hover .credit-twh {
    transform: rotateY(720deg);
}

/* ========================================
   STEEL STUDIO ACTIVE STATE (DESKTOP ONLY)
======================================== */

/* Footer nero quando Steel Studio è attivo (solo desktop) */
@media (min-width: 769px) {
    body.steel-active .main-footer .footer-link,
    body.steel-active .main-footer .footer-credit-link {
        color: rgba(0, 0, 0, 0.7) !important;
        font-weight: 400; /* Più grassetto quando nero */
    }
    
    body.steel-active .main-footer .footer-link:hover,
    body.steel-active .main-footer .footer-credit-link:hover {
        color: rgba(0, 0, 0, 1) !important;
        font-weight: 500; /* Ancora più grassetto al hover */
    }
    
    body.steel-active .main-footer .footer-separator {
        color: rgba(0, 0, 0, 0.8) !important;
        font-weight: 400; /* Anche il separatore più grassetto */
    }
    
    /* Footer bianco quando Black Box è attivo (solo desktop) */
    body.black-active .main-footer .footer-link,
    body.black-active .main-footer .footer-credit-link {
        color: rgba(255, 255, 255, 0.7) !important;
        font-weight: 300;
    }
    
    body.black-active .main-footer .footer-link:hover,
    body.black-active .main-footer .footer-credit-link:hover {
        color: rgba(255, 255, 255, 1) !important;
        font-weight: 400;
    }
    
    body.black-active .main-footer .footer-separator {
        color: rgba(255, 255, 255, 0.8) !important;
        font-weight: 300;
    }
    
    /* Logo desktop sempre bianco - rimosso cambio colore */
}
    
    /* Footer desktop torna bianco quando contact è attivo */
    body:has(.contact-section.active) .main-footer {
        z-index: 300 !important; /* Priorità massima quando contact è attivo */
    }
    
    body:has(.contact-section.active) .main-footer .footer-link,
    body:has(.contact-section.active) .main-footer .footer-credit-link {
        color: rgba(255, 255, 255, 0.7) !important;
    }
    
    body:has(.contact-section.active) .main-footer .footer-link:hover,
    body:has(.contact-section.active) .main-footer .footer-credit-link:hover {
        color: rgba(255, 255, 255, 1) !important;
    }
    
body:has(.contact-section.active) .main-footer .footer-separator {
    color: rgba(255, 255, 255, 0.8) !important;
}

/* Footer mobile nero quando Steel Studio è attivo - più visibile */
@media (max-width: 768px) {
    /* Logo mobile SEMPRE BIANCO anche quando Steel Studio è attivo */
    body.steel-active .mobile-logo-container .mobile-logo {
        filter: brightness(0) invert(1) !important; /* Logo sempre bianco */
    }
    
    body.steel-active .mobile-milan {
        color: rgba(255, 255, 255, 0.9) !important;
        font-weight: 300 !important; /* Peso consistente per evitare lampeggiamento */
        text-shadow: none; /* Rimuovi text-shadow per evitare flickering */
        z-index: 99990 !important; /* Mantieni z-index altissimo */
    }
    
    body.steel-active .mobile-milan:hover {
        color: rgba(255, 255, 255, 1) !important;
        text-shadow: none; /* Rimuovi text-shadow per evitare flickering */
    }
    
    /* Mobile Central Links rimangono bianchi anche quando Steel Studio è attivo */
    body.steel-active .mobile-central-links .mobile-central-link,
    body.steel-active .mobile-separator {
        color: rgba(255, 255, 255, 0.9) !important;
        font-weight: 300 !important; /* Peso consistente per evitare lampeggiamento */
        text-shadow: none; /* Rimuovi text-shadow per evitare flickering */
    }
    
    body.steel-active .mobile-central-links .mobile-central-link:hover {
        color: rgba(255, 255, 255, 1) !important;
        text-shadow: none; /* Rimuovi text-shadow per evitare flickering */
    }
    
    /* Mobile Central Links bianchi quando Black Box è attivo */
    body.black-active .mobile-central-links .mobile-central-link,
    body.black-active .mobile-separator {
        color: rgba(255, 255, 255, 0.9) !important;
        font-weight: 300 !important;
        text-shadow: none;
    }
    
    body.black-active .mobile-central-links .mobile-central-link:hover {
        color: rgba(255, 255, 255, 1) !important;
        text-shadow: none;
    }
    
    /* MILAN bianco quando Black Box è attivo */
    body.black-active .mobile-milan {
        color: rgba(255, 255, 255, 0.9) !important;
        font-weight: 300 !important;
        text-shadow: none;
    }
    
    body.black-active .mobile-milan:hover {
        color: rgba(255, 255, 255, 1) !important;
        text-shadow: none;
    }
    
    /* Separatore SEMPRE FISSO E VISIBILE - non cambia colore */
    
    /* Assicura che mobile-central-links sia sempre sopra la sezione contact */
    .mobile-central-links {
        z-index: 250 !important;
    }
    
    /* Footer mobile torna bianco quando contact è attivo - FORZATURA TOTALE */
    .contact-section.active ~ * .mobile-milan,
    body:has(.contact-section.active) .mobile-milan {
        color: rgba(255, 255, 255, 0.7) !important;
        z-index: 2147483647 !important; /* Z-index massimo assoluto */
        position: fixed !important; /* Completamente fuori dal flusso */
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        bottom: 0.5rem !important;
        left: 0.8rem !important;
        transform: translate3d(0, 0, 0) !important; /* Reset transform */
        pointer-events: auto !important;
        width: auto !important; /* Reset width */
        height: auto !important; /* Reset height */
        margin: 0 !important; /* Reset margin */
        padding: 0 !important; /* Reset padding */
        border: none !important; /* Reset border */
        background: transparent !important; /* Reset background */
        font-size: 0.6rem !important; /* Forza font size */
        font-family: 'Inter', sans-serif !important; /* Forza font family */
        line-height: 1 !important; /* Reset line height */
        text-align: left !important; /* Reset text align */
        overflow: visible !important; /* Assicura che sia visibile */
        clip: auto !important; /* Reset clip */
        clip-path: none !important; /* Reset clip-path */
    }
    
    body:has(.contact-section.active) .mobile-milan:hover {
        color: rgba(255, 255, 255, 1) !important;
    }
    
    /* Assicura che contact-section non nasconda Milan */
    .contact-section.active {
        overflow: visible !important; /* Non deve nascondere Milan */
    }
    
    .contact-section {
        overflow: visible !important; /* Non deve mai nascondere Milan */
    }
    
    /* Milan di backup per contact - identico all'originale */
    body:has(.contact-section.active)::after {
        content: "MILAN";
        position: fixed !important;
        bottom: 0.5rem !important;
        left: 0.8rem !important;
        color: rgba(255, 255, 255, 0.7) !important;
        font-family: 'Inter', sans-serif !important;
        font-size: 0.5rem !important; /* Stessa dimensione dell'originale */
        font-weight: 400 !important; /* Stesso peso dell'originale */
        z-index: 2147483647 !important; /* Z-index massimo */
        pointer-events: auto !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        text-transform: uppercase !important; /* Come l'originale */
        letter-spacing: 0.1em !important;
        text-align: left !important;
        cursor: pointer !important;
        transition: color 0.3s ease !important; /* Transizione come l'originale */
        transform: translate3d(0, 0, 0) !important;
        background: transparent !important;
        border: none !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .contact-section.active ~ * .mobile-central-links .mobile-central-link,
    .contact-section.active ~ * .mobile-separator,
    body:has(.contact-section.active) .mobile-central-links .mobile-central-link,
    body:has(.contact-section.active) .mobile-separator {
        color: rgba(255, 255, 255, 0.8) !important;
    }
    
    body:has(.contact-section.active) .mobile-central-links .mobile-central-link:hover {
        color: rgba(255, 255, 255, 1) !important;
    }
}

/* ========================================
   MOBILE LAYOUT
======================================== */

.mobile-layout {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 160;
    pointer-events: none;
}

/* Per debug - su mobile forza la visibilità del mobile layout */
@media (max-width: 768px) {
    .mobile-layout {
        display: block !important;
        pointer-events: none !important; /* Disabilita pointer events per non coprire il pulsante */
        visibility: visible !important;
        opacity: 1 !important;
        z-index: 50 !important; /* Ridotto z-index per stare sotto il pulsante prenota */
    }
    
    /* Forza la visibilità di milan su tutti i dispositivi mobili - REGOLE AGGRESSIVE */
    .mobile-milan {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        z-index: 2147483647 !important; /* Z-index massimo CSS */
        position: fixed !important;
        transform: translate3d(0, 0, 1000px) !important; /* Forza su piano molto alto */
        will-change: transform !important;
        isolation: isolate !important;
        contain: none !important; /* Disabilita containment che potrebbe nasconderlo */
        clip: none !important; /* Disabilita clipping */
        clip-path: none !important; /* Disabilita clip-path */
        mask: none !important; /* Disabilita mask */
        filter: none !important; /* Disabilita filtri che potrebbero nasconderlo */
    }
    
    /* Regola specifica per quando milan è dentro mobile-layout */
    .mobile-layout {
        contain: none !important; /* Disabilita containment sul genitore */
        overflow: visible !important; /* Forza overflow visibile */
    }
    
    /* Quando contact è attivo, forza mobile-layout a non interferire con Milan */
    body:has(.contact-section.active) .mobile-layout {
        z-index: auto !important; /* Non interferire con z-index */
        contain: none !important; /* Disabilita containment */
        overflow: visible !important; /* Forza overflow visibile */
        pointer-events: none !important; /* Disabilita pointer events del genitore */
    }
    
    /* Ma Milan deve rimanere interattivo */
    body:has(.contact-section.active) .mobile-layout .mobile-milan {
        pointer-events: auto !important;
        z-index: 2147483647 !important;
        isolation: isolate !important; /* Crea nuovo stacking context */
    }
    

    
    /* Abilita pointer events solo sui figli specifici che ne hanno bisogno */
    .mobile-layout .mobile-milan,
    .mobile-layout .mobile-vertical-links {
        pointer-events: auto !important;
    }
    
    /* Nascondi mobile-credit su mobile nell'homepage */
    .mobile-layout .mobile-credit {
        display: none !important;
    }
    
    /* MILAN deve avere z-index indipendente dal genitore mobile-layout */
    .mobile-layout .mobile-milan {
        position: fixed !important; /* Forza position fixed per uscire dal contesto del genitore */
        z-index: 99999 !important; /* Z-index massimo indipendente dal genitore */
        bottom: 0.5rem !important;
        left: 0.8rem !important;
    }
}

/* Link centrali mobile - nascosti da desktop */
.mobile-central-links {
    display: none;
}

/* Mobile logo */
.mobile-logo {
    position: absolute;
    top: 0.2rem;
    right: 0.5rem;
    z-index: 200;
    display: block;
    pointer-events: auto;
}

.mobile-homepage-logo {
    height: 50px;
    width: auto;
    opacity: 0.9;
    transition: all 0.3s ease, opacity 0.15s ease;
    filter: brightness(0) invert(1); /* Logo mobile sempre bianco */
    pointer-events: auto; /* Assicura che sia cliccabile */
}

.mobile-milan {
    position: fixed !important;
    bottom: 0.5rem !important;
    left: 0.8rem !important;
    color: black; /* Colore default nero per Steel Studio - senza !important per permettere override */
    font-family: 'Inter', sans-serif !important;
    font-weight: 400 !important; /* Più grassetto per visibilità */
    font-size: 0.5rem !important; /* Dimensione originale ripristinata */
    letter-spacing: 0.1em !important;
    text-transform: uppercase !important;
    text-align: left !important;
    cursor: pointer !important;
    transition: color 0.3s ease !important;
    z-index: 2147483647 !important; /* Z-index massimo possibile in CSS */
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: translate3d(0, 0, 1000px) !important; /* Forza su un piano molto alto */
    backface-visibility: visible !important;
    perspective: 1000px !important;
}

.mobile-milan:hover {
    color: rgba(255, 255, 255, 1);
}

    .mobile-vertical-links {
        display: none; /* Nascosti da mobile, ora sono sulla linea centrale */
    }
    
    .mobile-link {
    color: rgba(255, 255, 255, 1);
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer !important;
    pointer-events: auto !important;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.2s ease;
    transform: rotate(-90deg);
    transform-origin: center center;
    white-space: nowrap;
    -webkit-tap-highlight-color: transparent !important;
    touch-action: manipulation;
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    position: relative;
}

.mobile-link:first-child {
    transform: rotate(-90deg) translateX(1rem) translateY(-1.7rem);
}

.mobile-link:hover,
.mobile-link:active,
.mobile-link:focus {
    color: rgba(255, 255, 255, 0.7) !important;
    transform: rotate(-90deg) scale(1.1);
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.mobile-credit {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
}

.mobile-credit-link {
    display: inline-flex;
    align-items: baseline;
    gap: 0.3rem;
    color: rgba(255, 255, 255, 1);
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    cursor: none;
    transition: transform 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform-style: preserve-3d;
    perspective: 1000px;
    pointer-events: auto;
}

.mobile-credit-link:hover {
    transform: rotateY(360deg) rotateX(15deg);
}

.mobile-credit-link .credit-by {
    font-weight: 200;
    font-size: 0.5rem;
    letter-spacing: 0.1em;
    opacity: 0.8;
    transition: transform 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.mobile-credit-link .credit-twh {
    font-weight: 400;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    transition: transform 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.mobile-credit-link:hover .credit-twh {
    transform: rotateY(720deg);
}

/* ========================================
   BACKGROUND SYSTEM
======================================== */

.background-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1;
    background: #000;
    isolation: isolate;
}

.bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    filter: brightness(1) contrast(1);
}

.bg-image.active {
    opacity: 1;
}



.bg-image.fading {
    opacity: 0;
    transition: opacity 0.3s ease-out;
}

/* ========================================
   MAIN LAYOUT
======================================== */

.main-container {
    position: relative;
    display: flex;
    width: 100vw;
    height: 100vh;
    z-index: 2;
    mix-blend-mode: normal;
    justify-content: center;
    align-items: stretch;
}

.studio-half {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: none;
    /* Nessuna transizione - aspetto sempre uguale */
}

/* ========================================
   CENTRAL LINE
======================================== */

.central-line {
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    width: 0.5px;
    height: 80%;
    z-index: 4;
}

/* Linea di default */
.central-line {
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(255, 255, 255, 0.2) 20%,
        rgba(255, 255, 255, 0.7) 50%,
        rgba(255, 255, 255, 0.2) 80%,
        transparent 100%
    );
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.15);
}

/* Linea quando Steel background è attivo - SEMPRE BIANCA */
body:has(.steel-bg.active) .central-line {
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(255, 255, 255, 0.3) 20%,
        rgba(255, 255, 255, 0.8) 50%,
        rgba(255, 255, 255, 0.3) 80%,
        transparent 100%
    );
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.2);
}

/* Linea quando Black background è attivo */
body:has(.black-bg.active) .central-line {
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(255, 255, 255, 0.3) 20%,
        rgba(255, 255, 255, 0.9) 50%,
        rgba(255, 255, 255, 0.3) 80%,
        transparent 100%
    );
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.25);
}

/* ========================================
   CONTENT STYLING
======================================== */

.studio-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
}

.content {
    text-align: center;
    color: white;
    z-index: 3;
    position: relative;
    /* Nessuna transizione - contenuto sempre statico */
}

.title {
    font-family: 'Inter', sans-serif;
    font-size: 30px;
    font-weight: 600;
    letter-spacing: 0.25em;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    color: #fff;
    position: relative;
    white-space: nowrap; /* Evita il ritorno a capo */
    mix-blend-mode: difference;
}

.subtitle {
    font-family: 'Inter', sans-serif;
    font-size: clamp(0.8rem, 1.5vw, 1rem);
    font-weight: 300;
    letter-spacing: 0.2em;
    opacity: 0.8;
    text-transform: uppercase;
    transition: all 0.3s ease;
    color: white;
    position: relative;
    mix-blend-mode: difference;
}

/* Colori di default con mix-blend-mode */
.content {
    position: relative;
    z-index: 3;
}

/* Aggiunta di un sottile outline per migliorare la leggibilità */
.title {
    text-shadow: 0 0 1px rgba(0, 0, 0, 0.3);
}

.subtitle {
    text-shadow: 0 0 1px rgba(0, 0, 0, 0.2);
}

/* Text overlay per mix-blend-mode */
.text-overlay {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
    z-index: 10;
    pointer-events: auto;
    text-decoration: none;
    color: inherit;
    cursor: none;
}

.left-text {
    left: 25%;
    transform: translate(-50%, -50%);
}

.right-text {
    left: 75%;
    transform: translate(-50%, -50%);
}

.text-overlay .title {
    margin-bottom: 0.5rem;
}

.text-overlay .subtitle {
    margin: 0;
}

/* Classi per l'inversione dinamica del testo - backup */
.light-background .title,
.light-background .subtitle {
    color: #000;
    filter: invert(1);
}

.dark-background .title,
.dark-background .subtitle {
    color: #fff;
    filter: invert(0);
}

/* Homepage: impostazioni di default per Steel Studio (evita il flash bianco->nero) */
body.homepage .text-overlay .title,
body.homepage .content .title,
body.homepage .footer-link,
body.homepage .mobile-central-link {
    color: #000 !important;
    mix-blend-mode: normal !important;
    text-shadow: none !important;
}

/* Menu sempre bianco sulla homepage */
body.homepage .menu-text {
    color: rgba(255, 255, 255, 0.6) !important;
    mix-blend-mode: normal;
}

body.homepage .menu-item:hover .menu-text {
    color: rgba(255, 255, 255, 0.9) !important;
}

body.homepage .menu-item.active .menu-text {
    color: rgba(255, 255, 255, 1) !important;
}

/* Classi per il cambio dinamico del testo (ESCLUSO il menu E il separatore) */
body.steel-active .text-overlay .title,
body.steel-active .content .title,
.steel-active .text-overlay .title,
.steel-active .footer-link,
.steel-active .mobile-central-link,
.steel-active .mobile-central-links .mobile-central-link {
    color: #000 !important;
    mix-blend-mode: normal !important;
    text-shadow: none !important;
}

body.black-active .text-overlay .title,
body.black-active .content .title,
.black-active .text-overlay .title,
.black-active .footer-link,
.black-active .mobile-central-link,
.black-active .mobile-central-links .mobile-central-link {
    color: #fff !important;
    mix-blend-mode: normal !important;
    text-shadow: 0 0 1px rgba(0, 0, 0, 0.5) !important;
}

/* Mobile: scritte nere su Steel Studio, bianche su BlackBox come desktop */
@media (max-width: 768px) {
    /* Homepage mobile: default nero per Steel Studio (ESCLUSO il menu) */
    body.homepage .text-overlay .title,
    body.homepage .content .title,
    body.homepage .footer-link,
    body.homepage .mobile-central-link {
        color: #000 !important;
        mix-blend-mode: normal !important;
        text-shadow: none !important;
    }
    
    /* Menu sempre bianco anche su mobile */
    body.homepage .menu-text {
        color: rgba(255, 255, 255, 0.6) !important;
        mix-blend-mode: normal;
    }

    body.homepage .menu-item:hover .menu-text {
        color: rgba(255, 255, 255, 0.9) !important;
    }

    body.homepage .menu-item.active .menu-text {
        color: rgba(255, 255, 255, 1) !important;
    }
    
    body.steel-active .text-overlay .title,
    body.steel-active .content .title,
    .steel-active .text-overlay .title,
    .steel-active .footer-link,
    .steel-active .mobile-central-link,
    .steel-active .mobile-central-links .mobile-central-link {
        color: #000 !important;
        mix-blend-mode: normal !important;
        text-shadow: none !important;
    }
    
    body.black-active .text-overlay .title,
    body.black-active .content .title,
    .black-active .text-overlay .title,
    .black-active .footer-link,
    .black-active .mobile-central-link,
    .black-active .mobile-central-links .mobile-central-link {
        color: #fff !important;
        mix-blend-mode: normal !important;
        text-shadow: 0 0 1px rgba(0, 0, 0, 0.5) !important;
    }
}

.close-button:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.1);
}

/* Desktop: X più in alto e a destra */
@media (min-width: 769px) {
    .close-button {
        top: 5px;
        right: -60px;
        width: 48px;
        height: 48px;
        font-size: 32px;
        background: rgba(0, 0, 0, 0.5);
        border-radius: 50%;
        opacity: 0.9;
    }
    
    .close-button:hover {
        opacity: 1;
        background: rgba(0, 0, 0, 0.8);
        transform: scale(1.1);
    }
}

/* Icona rotazione schermo */
.rotation-hint {
    position: absolute;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
    z-index: 10000;
    width: 40px;
    height: 40px;
    animation: rotateImage45 2s infinite ease-in-out;
}

@keyframes rotateImage45 {
    0% { 
        transform: translateX(-50%) rotate(0deg);
        opacity: 0.7;
    }
    25% { 
        transform: translateX(-50%) rotate(45deg);
        opacity: 1;
    }
    50% { 
        transform: translateX(-50%) rotate(45deg);
        opacity: 1;
    }
    75% { 
        transform: translateX(-50%) rotate(0deg);
        opacity: 0.8;
    }
    100% { 
        transform: translateX(-50%) rotate(0deg);
        opacity: 0.7;
    }
}

/* Animazione per fade in del modal */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Animazione per zoom in dell'immagine */
@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Gestione body quando modal è aperto */
body.modal-open {
    overflow: hidden;
}

/* ========================================
   IMAGE LOADING OPTIMIZATION
======================================== */

/* Shimmer loading effect */
@keyframes shimmer {
    0% {
        background-position: -200px 0;
    }
    100% {
        background-position: calc(200px + 100%) 0;
    }
}

.image-placeholder {
    background: linear-gradient(
        90deg,
        rgba(240, 240, 240, 0.8) 25%,
        rgba(220, 220, 220, 0.9) 50%,
        rgba(240, 240, 240, 0.8) 75%
    );
    background-size: 200px 100%;
    animation: shimmer 1.8s infinite ease-in-out;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 15px;
    will-change: background-position;
    contain: strict;
}

.gallery-image {
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
}

.gallery-image.loaded {
    opacity: 1;
}

.gallery-item {
    position: relative;
    overflow: hidden;
}

.gallery-item.loading .image-placeholder {
    display: block;
}

.gallery-item.loaded .image-placeholder {
    opacity: 0;
    animation: none;
    transition: opacity 0.3s ease-out;
}

.gallery-item.error .image-placeholder {
    background: linear-gradient(135deg, #ffebee, #ffcdd2);
    animation: none;
}

.gallery-item.error .image-placeholder::after {
    content: '⚠️';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    opacity: 0.5;
}

/* Performance optimizations */
.gallery-image {
    will-change: opacity;
    backface-visibility: hidden;
    transform: translateZ(0);
}

.steel-gallery .gallery-item {
    contain: layout style paint;
}

/* Fix per permettere i click sulla galleria */
.steel-gallery {
    position: relative;
    z-index: 200; /* Sopra il mobile-layout */
}

.steel-gallery .gallery-item {
    position: relative;
    z-index: 201; /* Ancora più sopra */
    pointer-events: auto !important;
}

.steel-gallery .gallery-image {
    position: relative;
    z-index: 202; /* Sopra tutto */
    pointer-events: auto !important;
}

/* Mobile optimization per close button e rotation hint */
@media (max-width: 768px) {
    .close-button {
        top: 5px;
        right: 5px;
        width: 36px;
        height: 36px;
        font-size: 20px;
        border-radius: 50%;
    }
    
    .close-button:hover {
        background: rgba(0, 0, 0, 0.5);
    }
    
    .rotation-hint {
        bottom: -80px;
        width: 32px;
        height: 32px;
        animation: rotateImage45Mobile 1.8s infinite ease-in-out;
    }
    
    @keyframes rotateImage45Mobile {
        0% { 
            transform: translateX(-50%) rotate(0deg);
            opacity: 0.8;
        }
        25% { 
            transform: translateX(-50%) rotate(45deg);
            opacity: 1;
        }
        50% { 
            transform: translateX(-50%) rotate(45deg);
            opacity: 1;
        }
        75% { 
            transform: translateX(-50%) rotate(0deg);
            opacity: 0.9;
        }
        100% { 
            transform: translateX(-50%) rotate(0deg);
            opacity: 0.8;
        }
    }
    
    /* Ottimizzazioni shimmer per mobile */
    .image-placeholder {
        animation-duration: 2s; /* Rallenta leggermente su mobile */
    }
    
    /* Riduce l'intensità dell'animazione su dispositivi con batteria bassa */
    @media (prefers-reduced-motion: reduce) {
        .image-placeholder {
            animation: none;
            background: #f0f0f0;
        }
        
        .rotation-hint {
            animation: none;
            opacity: 0.6;
        }
    }
}

/* ========================================
   CUSTOM CURSOR
======================================== */

body::before {
    content: '';
    position: fixed;
    width: 20px;
    height: 20px;
    border: 2px solid white;
    border-radius: 50%;
    pointer-events: none;
    z-index: 2147483647 !important; /* Z-index massimo assoluto per essere sempre sopra tutto */
    transition: width 0.3s ease, height 0.3s ease, border-width 0.3s ease;
    mix-blend-mode: difference;
    left: var(--mouse-x, 0px);
    top: var(--mouse-y, 0px);
    transform: translate(-50%, -50%);
}

/* Stati del cursore personalizzato */
body.cursor-hover::before {
    width: 40px;
    height: 40px;
    border-width: 1px;
}

/* Cursore piccolo per il menu */
body.cursor-menu::before {
    width: 12px;
    height: 12px;
    border-width: 2px;
    background: rgba(255, 255, 255, 0.3);
}

/* Media query per schermi molto piccoli */
@media (max-width: 400px) {
    .mobile-milan {
        font-size: 0.5rem;
        bottom: 0.37rem;
        left: 0.6rem;
    }
    
    .mobile-vertical-links {
        left: 1.5rem;
        gap: 5rem;
    }
    
    .mobile-link {
        font-size: 0.6rem;
    }
    
    .mobile-link:first-child {
        transform: rotate(-90deg) translateX(1rem) translateY(-1.7rem);
    }
    
    .mobile-credit {
        bottom: 1.5rem;
        right: 1.5rem;
        display: none !important; /* Nasconde completamente su mobile */
    }
    
    .mobile-credit-link .credit-by {
        font-size: 0.45rem;
    }
    
    .mobile-credit-link .credit-twh {
        font-size: 0.6rem;
    }
    
    /* Touch-friendly 3D effects for mobile */
    .mobile-credit-link:active {
        transform: rotateY(360deg) rotateX(15deg) !important;
    }
    
    .mobile-credit-link:active .credit-twh {
        transform: rotateY(720deg) !important;
    }
}

/* Media query per schermi mobili alti */
@media (max-width: 768px) and (min-height: 700px) {
    .mobile-vertical-links {
        top: 45%;
        gap: 10rem;
        left: 1rem;
    }
}

/* Media query per schermi mobili bassi */
@media (max-width: 768px) and (max-height: 600px) {
    .mobile-vertical-links {
        top: 35%;
        gap: 3rem;
        left: 0rem;
    }
}

/* Nascondi cursore personalizzato su mobile */
@media (max-width: 768px) {
    body::before,
    .studio-page::before {
        display: none !important;
    }
    
    /* Avvicina le scritte al divisore centrale su mobile */
    .text-overlay.left-text {
        top: 47% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
    }
    
    .text-overlay.right-text {
        top: 53% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
    }
}

/* ========================================
   SYMMETRY CORRECTIONS FOR ALL DEVICES
======================================== */

/* Ensure perfect symmetry on all screen sizes */
@media (min-width: 769px) {
    .studio-half {
        flex: 1 1 50%;
        width: 50%;
    }
    
    .left-text, .right-text {
        width: auto;
        text-align: center;
    }
}

/* Additional symmetry for tablet landscape */
@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
    .text-overlay.left-text {
        left: 25%;
    }
    
    .text-overlay.right-text {
        left: 75%;
    }
}

/* Telefoni di medie dimensioni - scritte ancora più vicine */
@media (min-width: 481px) and (max-width: 768px) {
    .text-overlay.left-text {
        top: 47% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
    }
    
    .text-overlay.right-text {
        top: 53% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
    }
}

/* Perfect centering for smaller screens */
@media (max-width: 480px) {
    .text-overlay.left-text {
        top: 47% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
    }
    
    .text-overlay.right-text {
        top: 53% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
    }
    
    .central-line {
        left: 5%;
        width: 90%;
        top: 50%;
    }
}

/* ========================================
   ANIMATIONS
======================================== */

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* ========================================
   GALLERY PAGE STYLES
======================================== */

.gallery-page {
    overflow-y: auto;
    background: #0a0a0a;
    min-height: 100vh;
    padding-bottom: 2rem;
}

.gallery-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
    z-index: 100;
}

.nav-back {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 300;
    transition: all 0.3s ease;
    letter-spacing: 0.1em;
}

.nav-back:hover {
    color: #ccc;
    transform: translateX(-5px);
}

.nav-arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.nav-back:hover .nav-arrow {
    transform: translateX(-3px);
}

.gallery-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 200;
    letter-spacing: 0.3em;
    color: white;
    text-transform: uppercase;
    text-align: center;
    margin: 3rem 0 2rem 0;
}

.nav-spacer {
    width: 120px; /* Same as nav-back approx width for centering */
}

.gallery-container {
    margin-top: 80px;
    padding: 3rem 2rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.gallery-item {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.4s ease;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
    cursor: pointer;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.8) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        transparent 100%
    );
    padding: 1.5rem 1rem 1rem;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.gallery-item:hover .image-overlay {
    transform: translateY(0);
}

.image-title {
    color: white;
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* Placeholder styles */
.gallery-item.placeholder {
    background: rgba(255, 255, 255, 0.03);
    border: 2px dashed rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-content {
    text-align: center;
    color: rgba(255, 255, 255, 0.4);
}

.placeholder-text {
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

/* Modal enhancements for gallery */
.modal-info {
    position: absolute;
    bottom: -60px;
    left: 0;
    right: 0;
    text-align: center;
}

.modal-title {
    color: white;
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

/* Steel page specific styles */
.steel-page .gallery-nav {
    border-bottom-color: rgba(180, 180, 180, 0.2);
}

.steel-page .gallery-item:hover {
    box-shadow: 0 20px 40px rgba(180, 180, 180, 0.1);
}

/* Black page specific styles */
.black-page .gallery-nav {
    border-bottom-color: rgba(80, 80, 80, 0.3);
}

.black-page .gallery-item:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

/* ========================================
   RESPONSIVE DESIGN
======================================== */

/* Immagini responsive */
.mobile-only {
    display: none;
}

.desktop-only {
    display: block;
}

@media (max-width: 768px) {
    /* Homepage mobile - blocca scroll */
    body.homepage {
        overflow: hidden !important;
        position: fixed !important;
        width: 100% !important;
        height: 100vh !important;
    }
    
    /* LOGICA LOGO MOBILE: Nascondi contenitore desktop, mostra contenitore mobile */
    .desktop-logo-container {
        display: none !important;
    }
    
    .mobile-logo-container {
        display: block !important;
    }
    
    /* Nascondi anche il logo della sezione contact su mobile */
    .contact-logo,
    .contact-homepage-logo {
        display: none !important;
    }
    
    /* Assicura che il logo mobile sia SEMPRE bianco */
    .mobile-logo-container .mobile-logo {
        filter: brightness(0) invert(1) !important;
    }
    
    /* Cambia immagini per mobile */
    .mobile-only {
        display: block;
    }
    
    .desktop-only {
        display: none;
    }
    
    .main-footer {
        display: none;
    }
    
    .mobile-layout {
        display: block !important;
        pointer-events: auto !important;
    }
    

    
    /* Link a destra mobile - angolo opposto */
    .mobile-central-links {
        position: fixed;
        right: 0.3rem;
        bottom: -0.6rem;
        z-index: 9999; /* Z-index altissimo per essere sopra tutto */
        display: flex !important;
        flex-direction: row;
        align-items: center;
        gap: 0;
    }
    
    .mobile-central-link {
        color: rgba(255, 255, 255, 0.8);
        font-family: 'Inter', sans-serif;
        font-weight: 300;
        font-size: 0.5rem;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        text-decoration: none;
        cursor: pointer !important;
        pointer-events: auto !important;
        transition: color 0.3s ease;
        white-space: nowrap;
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
        padding: 0.3rem 0.2rem;
        min-height: 44px;
        display: flex;
        align-items: center;
        z-index: 10000;
        position: relative;
    }
    
    .mobile-separator {
        /* Colore iniziale che cambierà con le altre scritte */
        font-family: 'Inter', sans-serif;
        font-weight: 500; /* Peso ottimale per nitidezza */
        font-size: 0.5rem;
        margin: 0 0.3rem;
        pointer-events: none;
        opacity: 1 !important; /* Sempre completamente visibile */
        visibility: visible !important; /* Sempre visibile */
        display: inline !important; /* Sempre mostrato */
        text-shadow: none !important; /* Rimosso per nitidezza */
        -webkit-font-smoothing: antialiased !important; /* Migliore rendering dei font */
        -moz-osx-font-smoothing: grayscale !important; /* Migliore rendering su Mac */
        text-rendering: optimizeLegibility !important; /* Ottimizza la leggibilità */
    }
    
    .mobile-central-link:hover {
        color: rgba(255, 255, 255, 1);
    }
    
    .footer-left, .footer-right {
        gap: 0.5rem;
        flex-shrink: 1;
    }
    
    .footer-left {
        order: 1;
    }
    
    .footer-center {
        order: 2;
        flex-grow: 1;
        display: flex;
        justify-content: center;
        gap: 1rem;
    }
    
    .footer-right {
        order: 3;
        display: flex;
        gap: 0.8rem;
    }
    
    .footer-link {
        font-size: 0.6rem;
        white-space: nowrap;
    }
    
    .footer-separator {
        font-size: 0.6rem;
    }
    
    .credit-by {
        font-size: 0.45rem;
    }
    
    .credit-twh {
        font-size: 0.6rem;
    }
    
    /* Touch-friendly 3D effects for mobile footer */
    .footer-credit-link:active {
        transform: rotateY(360deg) rotateX(15deg) !important;
    }
    
    .footer-credit-link:active .credit-twh {
        transform: rotateY(720deg) !important;
    }
    


    
    .main-container {
        flex-direction: column-reverse; /* Black Box in alto, Steel Studio in basso */
        overflow: hidden;
    }
    
    .studio-half {
        height: 50vh;
        overflow: hidden;
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
        cursor: pointer !important;
        pointer-events: auto !important;
        position: relative;
        z-index: 10;
    }
    
    /* Assicuriamo che anche i contenuti siano cliccabili */
    .studio-link {
        pointer-events: auto !important;
        cursor: pointer !important;
    }
    
    .main-container {
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
        pointer-events: auto !important;
    }
    
    .central-line {
        top: 50%;
        left: 5%;
        width: 90%;
        height: 1px;
        transform: translateY(-50%);
        background: linear-gradient(
            to right,
            transparent 0%,
            rgba(255, 255, 255, 0.4) 15%,
            rgba(255, 255, 255, 1) 50%,
            rgba(255, 255, 255, 0.4) 85%,
            transparent 100%
        );
        box-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
    }
    
    /* Text overlay positioning for mobile - INVERTITO: Black Box in alto, Steel Studio in basso */
    .text-overlay.left-text {
        /* Steel Studio - ora in BASSO (seconda sezione) */
        left: 50%;
        top: 75%; /* Posizionato nella seconda metà (sotto) */
        transform: translate(-50%, -50%);
    }
    
    .text-overlay.right-text {
        /* Black Box - ora in ALTO (prima sezione) */
        left: 50%;
        top: 25%; /* Posizionato nella prima metà (sopra) */
        transform: translate(-50%, -50%);
    }
    
    body {
        cursor: none;
    }
    

    
    .title {
        font-size: 22px;
        letter-spacing: 0.2em;
    }
    
    .subtitle {
        font-size: 0.9rem;
    }
    
    /* Gallery responsive */
    .gallery-nav {
        padding: 0 1rem;
        height: 70px;
    }
    
    .gallery-container {
        margin-top: 70px;
        padding: 2rem 1rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .gallery-title {
        font-size: 1.2rem;
    }
    
    .nav-back {
        font-size: 0.8rem;
    }
    
    /* LOGICA LOGO MOBILE: stesse regole per sicurezza */
    .desktop-logo-container {
        display: none !important;
    }
    
    .mobile-logo-container {
        display: block !important;
    }
    
    /* Nascondi anche il logo contact su mobile */
    .contact-logo,
    .contact-homepage-logo {
        display: none !important;
    }
    
    /* Logo mobile SEMPRE bianco */
    .mobile-logo-container .mobile-logo {
        filter: brightness(0) invert(1) !important;
    }
}

@media (max-width: 480px) {
    .title {
        font-size: 18px;
        letter-spacing: 0.15em;
    }
    
    .subtitle {
        font-size: 0.8rem;
    }
    
    .close-button {
        top: -50px;
        font-size: 30px;
        width: 40px;
        height: 40px;
        right: -10px;
    }
    
    /* Gallery mobile */
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .gallery-title {
        font-size: 1rem;
        letter-spacing: 0.2em;
    }
    
    .nav-back .nav-text {
        display: none;
    }
    
    .gallery-container {
        padding: 1.5rem 0.5rem;
    }
}

/* ========================================
   STUDIO PAGE STYLES
======================================== */

.studio-page {
    overflow-y: auto;
    overflow-x: hidden;
    background: #000;
    color: #fff;
    cursor: none;
}

/* Forza cursor: none anche nelle pagine studio */
.studio-page *, .studio-page *:hover, .studio-page *:focus, .studio-page *:active {
    cursor: none !important;
}

.studio-page::before {
    content: '';
    position: fixed;
    width: 20px;
    height: 20px;
    border: 2px solid white;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: width 0.3s ease, height 0.3s ease, border-width 0.3s ease;
    mix-blend-mode: difference;
    left: var(--mouse-x, 0px);
    top: var(--mouse-y, 0px);
    transform: translate(-50%, -50%);
}

.studio-page.cursor-hover::before {
    width: 40px;
    height: 40px;
    border-width: 1px;
}

.studio-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(30px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 3rem;
    max-width: 1600px;
    margin: 0 auto;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.studio-logo {
    height: 80px;
    width: auto;
    object-fit: contain;
}

.language-toggle {
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: #000;
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    cursor: pointer !important;
    pointer-events: auto !important;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    text-transform: uppercase;
    min-width: 40px;
    z-index: 999;
    position: relative;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.language-toggle:hover {
    background: rgba(255, 255, 255, 0.8);
    border-color: rgba(0, 0, 0, 0.15);
    transform: translateY(-1px) scale(1.02);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.language-toggle:active {
    transform: translateY(0) scale(0.98);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Animazione per il cambio di lingua */
.language-toggle span {
    display: inline-block;
    transition: all 0.2s ease;
    position: relative;
}

.language-toggle.changing span {
    transform: scale(0.8);
    opacity: 0.6;
}


/* Stile specifico per pagine diverse */
.steel-page .language-toggle,
.blackbox-page .language-toggle {
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: #000;
}

.steel-page .language-toggle:hover,
.blackbox-page .language-toggle:hover {
    background: rgba(255, 255, 255, 0.8);
    border-color: rgba(0, 0, 0, 0.15);
}

.back-home {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    transition: all 0.4s ease;
    text-transform: uppercase;
    padding: 0.8rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    backdrop-filter: blur(10px);
}

.back-home:hover {
    color: #fff;
    transform: translateX(-3px);
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.05);
}

.studio-name {
    font-family: 'Inter', sans-serif;
    font-size: 2.2rem;
    font-weight: 100;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: #fff;
    text-align: center;
    flex: 1;
}

.header-placeholder {
    width: 120px; /* Same width as back-home button for centering */
}

.studio-main {
    padding-top: 80px;
    min-height: 100vh;
    display: flex;
    max-width: 1600px;
    margin: 0 auto;
    gap: 4rem;
    padding-left: 3rem;
    padding-right: 3rem;
}

.studio-description {
    flex: 0 0 350px;
    padding: 1rem 0;
    position: fixed;
    top: 100px;
    left: 3rem;
    width: 350px;
    height: calc(100vh - 120px);
    overflow-y: auto;
    overflow-x: hidden;
}

/* Scrollbar elegante per la sidebar */
.studio-description::-webkit-scrollbar {
    width: 4px;
}

.studio-description::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 2px;
}

.studio-description::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    transition: background 0.3s ease;
}

.studio-description::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.4);
}

.description-content {
    width: 100%;
}

.studio-intro {
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.85);
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.studio-features {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    max-height: calc(100vh - 160px);
    overflow-y: auto;
    padding-right: 10px;
}

/* Scrollbar elegante per le feature */
.studio-features::-webkit-scrollbar {
    width: 4px;
}

.studio-features::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 2px;
}

.studio-features::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    transition: background 0.3s ease;
}

.studio-features::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.4);
}

.feature-item {
    padding: 0.25rem 0;
    font-size: 0.7rem;
    font-weight: 300;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    position: relative;
    line-height: 1.3;
}

.feature-item:hover {
    color: rgba(255, 255, 255, 0.95);
}

.feature-item:before {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #888888, #c4c4c4);
    transition: width 0.4s ease;
}

.feature-item:hover:before {
    width: 100%;
}

/* Studio Pricing Section */
.studio-pricing {
    margin: 2rem 0 0 0;
    padding: 1.5rem 0 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-title {
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-list {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.pricing-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.4rem 0;
    font-size: 0.75rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    position: relative;
}

.pricing-item:hover {
    color: rgba(255, 255, 255, 0.95);
    background: rgba(255, 255, 255, 0.02);
}

.pricing-item:before {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #888888, #c4c4c4);
    transition: width 0.4s ease;
}

.pricing-item:hover:before {
    width: 100%;
}

.pricing-item .service {
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.pricing-item .price {
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.7rem;
}

.pricing-item:hover .price {
    color: rgba(255, 255, 255, 0.9);
}

.photo-gallery {
    flex: 1;
    padding: 2rem 0;
    margin-left: 400px;
}

.photo-gallery .gallery-grid {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    margin-top: 3rem;
    max-width: 1200px;
}

.photo-gallery .gallery-item {
    position: relative;
    cursor: none;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
    display: inline-block;
}

.photo-gallery .gallery-item {
    width: auto !important;
    max-width: none !important;
}

.photo-gallery .gallery-item:nth-child(odd) {
    align-self: flex-start;
}

.photo-gallery .gallery-item:nth-child(even) {
    align-self: flex-end;
}

.photo-gallery .gallery-item:nth-child(3n) {
    align-self: center;
}

.photo-gallery .gallery-item img {
    width: auto;
    max-width: 90vw;
    height: auto;
    max-height: 80vh;
}

/* Stile specifico per le planimetrie */
.photo-gallery .gallery-item.planimetria {
    align-self: center !important;
    width: 80% !important;
    max-width: 800px !important;
    margin-bottom: 3rem;
}

.photo-gallery .gallery-item.planimetria img {
    width: 100%;
    max-width: 800px;
    height: auto;
}

.photo-gallery .gallery-item:hover {
    transform: translateY(-8px) scale(1.02);
}

.photo-gallery .gallery-item img {
    width: 100%;
    height: auto;
    max-height: 80vh;
    display: block;
    object-fit: contain;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: brightness(0.95) contrast(1.05);
}

.photo-gallery .gallery-item:hover img {
    transform: scale(1.03);
    filter: brightness(1) contrast(1.1);
}

/* Responsive for studio pages */
@media (max-width: 1024px) {
    .studio-main {
        flex-direction: column;
        gap: 2rem;
    }
    
    .studio-description {
        flex: none;
        position: static;
        padding: 2rem 0 1rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        width: 100%;
        height: auto;
        left: auto;
        top: auto;
        overflow: visible;
    }
    
    .photo-gallery {
        padding: 1rem 0;
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    /* Assicura che le pagine studio possano scorrere */
    body.studio-page {
        position: static !important;
        overflow-y: auto !important;
        overflow-x: hidden !important;
        height: auto !important;
    }
    
    .header-content {
        padding: 1.5rem 2rem;
    }
    
    .header-right {
        gap: 1rem;
    }
    
    .studio-logo {
        height: 50px;
    }
    
    /* Logo specifici per mobile - Steel Studio (nero) */
    body.studio-page .studio-logo[src*="logo_desktop_nero.png"] {
        content: url('../logo_phesta/logo_mobile_nero.png');
    }
    
    /* Logo specifici per mobile - Black Box (bianco) */
    body.studio-page .studio-logo[src*="logo_desktop_bianco.png"] {
        content: url('../logo_phesta/logo_mobile_bianco.png');
    }
    
    .studio-name {
        font-size: 2rem;
        letter-spacing: 0.3em;
    }
    
    .back-home {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
    }
    
    .language-toggle {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
        min-width: 45px;
    }
    
    .studio-main {
        padding-top: 80px;
        padding-left: 0 !important;
        padding-right: 0 !important;
        margin: 0 !important;
        flex-direction: column;
        gap: 2rem;
    }
    
    .studio-description {
        position: static;
        flex: none;
        width: 100%;
        padding: 2rem;
        text-align: center;
        height: auto;
    }
    
    .studio-intro {
        font-size: 1rem;
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .studio-features {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
        justify-items: center;
        text-align: center;
        max-height: none;
        overflow: visible;
    }
    
    .feature-item {
        font-size: 0.75rem;
        padding: 0.5rem 0;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        line-height: 1.3;
    }
    
    .studio-pricing {
        margin: 1.5rem 0 0 0;
        padding: 1.5rem 0 0 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .pricing-title {
        font-size: 0.9rem;
        margin-bottom: 1rem;
        text-align: center;
    }
    
    .pricing-item {
        flex-direction: column;
        gap: 0.3rem;
        text-align: center;
        padding: 0.6rem 0;
    }
    
    .pricing-item .service {
        font-size: 0.8rem;
    }
    
    .pricing-item .price {
        font-size: 0.75rem;
        color: rgba(255, 255, 255, 0.8);
    }
    
    .photo-gallery {
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }
    
    /* Disabilita completamente tutti gli overlay su mobile */
    .image-overlay {
        display: none !important;
    }
    
    .gallery-item:hover .gallery-image {
        transform: none !important;
        filter: none !important;
    }
    
    .photo-gallery .gallery-grid {
        gap: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        line-height: 0 !important;
        font-size: 0 !important;
    }
    
    .photo-gallery .gallery-item {
        align-self: stretch !important;
        width: 100% !important;
        max-width: 100% !important;
        border-radius: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        border: none !important;
        box-shadow: none !important;
        background: none !important;
        line-height: 0 !important;
        font-size: 0 !important;
        vertical-align: top !important;
    }

    .photo-gallery .gallery-item:nth-child(odd),
    .photo-gallery .gallery-item:nth-child(even),
    .photo-gallery .gallery-item:nth-child(3n) {
        width: 100% !important;
        max-width: 100% !important;
        align-self: stretch !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .photo-gallery .gallery-item img {
        width: 100% !important;
        max-width: 100% !important;
        height: 60vh !important;
        min-height: 60vh !important;
        object-fit: cover !important;
        display: block !important;
        margin: 0 !important;
        padding: 0 !important;
        border: none !important;
        border-radius: 0 !important;
        line-height: 0 !important;
        font-size: 0 !important;
    }
    
    /* Regole speciali per la planimetria su mobile */
    .photo-gallery .gallery-item.planimetria {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        background: #000 !important;
        padding: 1rem 0 !important;
    }
    
    .photo-gallery .gallery-item.planimetria img {
        height: auto !important;
        min-height: auto !important;
        max-height: 80vh !important;
        width: auto !important;
        max-width: 95% !important;
        object-fit: contain !important;
        margin: 0 auto !important;
    }

    /* Rimuovi overlay e effetti hover su mobile */
    .photo-gallery .gallery-item:hover {
        transform: none !important;
    }
    
    .photo-gallery .gallery-item .image-overlay,
    .photo-gallery .gallery-item::before,
    .photo-gallery .gallery-item::after {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .header-content {
        padding: 1rem 1.5rem;
    }
    
    .header-right {
        gap: 0.8rem;
    }
    
    .back-home {
        font-size: 0.8rem;
    }
    
    .studio-name {
        font-size: 1.2rem;
        letter-spacing: 0.2em;
    }
    
    .language-toggle {
        padding: 0.35rem 0.7rem;
        font-size: 0.7rem;
        min-width: 36px;
        border-radius: 6px;
    }
    
    .photo-gallery .gallery-grid {
        gap: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        line-height: 0 !important;
        font-size: 0 !important;
    }
    
    .photo-gallery .gallery-item {
        align-self: stretch !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        border-radius: 0 !important;
        line-height: 0 !important;
        font-size: 0 !important;
        border: none !important;
        box-shadow: none !important;
    }
    
    .photo-gallery .gallery-item img {
        width: 100% !important;
        max-width: 100% !important;
        height: 60vh !important;
        min-height: 60vh !important;
        object-fit: cover !important;
        display: block !important;
        margin: 0 !important;
        padding: 0 !important;
        border-radius: 0 !important;
        line-height: 0 !important;
        font-size: 0 !important;
    }
    
    /* Regole speciali per la planimetria su mobile */
    .photo-gallery .gallery-item.planimetria {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        background: #000 !important;
        padding: 1rem 0 !important;
    }
    
    .photo-gallery .gallery-item.planimetria img {
        height: auto !important;
        min-height: auto !important;
        max-height: 80vh !important;
        width: auto !important;
        max-width: 95% !important;
        object-fit: contain !important;
        margin: 0 auto !important;
    }
    
    /* Rimuovi tutti gli overlay anche per schermi piccoli */
    .photo-gallery .gallery-item .image-overlay,
    .photo-gallery .gallery-item::before,
    .photo-gallery .gallery-item::after {
        display: none !important;
    }
    
    .photo-gallery .gallery-item.planimetria {
        width: 95% !important;
        max-width: none !important;
        margin-bottom: 2rem;
    }
    
    .photo-gallery .gallery-item.planimetria img {
        padding: 0.5rem;
        max-width: 100%;
    }
    
    .studio-features {
        grid-template-columns: 1fr;
        gap: 0.3rem;
    }
    
    .feature-item {
        font-size: 0.7rem !important;
        padding: 0.3rem 0 !important;
        line-height: 1.2 !important;
    }
}

/* ========================================
   RIMOZIONE BOX VISIBILI DALLE IMMAGINI
======================================== */

/* Rimuovi completamente tutti i box, overlay, bordi e sfondi dalle immagini nelle pagine studio */
.studio-page .photo-gallery .gallery-item {
    border: none !important;
    background: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
}

.studio-page .photo-gallery .gallery-item:hover {
    box-shadow: none !important;
    border: none !important;
    background: none !important;
}

.studio-page .photo-gallery .gallery-item img {
    border: none !important;
    background: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
}

.studio-page .photo-gallery .gallery-item.planimetria img {
    border: none !important;
    background: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
}

/* Disabilita tutti gli overlay e pseudo-elementi */
.studio-page .photo-gallery .gallery-item .image-overlay,
.studio-page .photo-gallery .gallery-item::before,
.studio-page .photo-gallery .gallery-item::after {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
}

/* ========================================
   STUDIO FOOTER (Appare alla fine della pagina)
======================================== */

.studio-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 200;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 3rem;
    transform: translateY(100%);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.studio-footer.visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
}

.studio-footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.studio-footer-left {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.studio-footer-center {
    display: flex;
    gap: 2rem;
}

.studio-footer-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.studio-footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: color 0.3s ease;
    cursor: none;
}

.studio-footer-link:hover {
    color: rgba(255, 255, 255, 1);
}

.studio-footer-logo {
    height: 24px;
    width: auto;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.studio-footer-logo:hover {
    opacity: 1;
}

.studio-footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-family: 'Inter', sans-serif;
    font-weight: 200;
    font-size: 0.65rem;
    letter-spacing: 0.05em;
}

.studio-footer-credit {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.6);
    font-family: 'Inter', sans-serif;
    font-weight: 200;
    font-size: 0.65rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.studio-footer-credit a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    cursor: none;
}

.studio-footer-credit a:hover {
    color: rgba(255, 255, 255, 1);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .studio-footer {
        padding: 0.75rem 1.5rem;
    }
    
    .studio-footer-content {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    /* Prima riga: Links alle pagine */
    .studio-footer-center {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: center;
        order: 1;
    }
    
    /* Seconda riga: Copyright a sinistra, Credits a destra */
    .studio-footer-bottom {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        order: 2;
        margin-bottom: 0.5rem;
    }
    
    .studio-footer-left {
        display: flex;
        align-items: center;
        gap: 0.75rem;
    }
    
    .studio-footer-right {
        display: flex;
        align-items: center;
    }
    
    .studio-footer-link {
        font-size: 0.65rem;
    }
    
    .studio-footer-copyright,
    .studio-footer-credit {
        font-size: 0.55rem;
    }
    
    .studio-footer-logo {
        height: 20px;
    }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
    .studio-footer {
        padding: 0.5rem 1rem;
    }
    
    .studio-footer-content {
        gap: 0.4rem;
    }
    
    .studio-footer-left {
        gap: 0.5rem;
    }
    
    .studio-footer-center {
        gap: 0.5rem;
        flex-wrap: wrap;
        justify-content: space-around;
    }
    
    .studio-footer-link {
        font-size: 0.6rem;
        white-space: nowrap;
    }
    
    .studio-footer-copyright,
    .studio-footer-credit {
        font-size: 0.5rem;
    }
    
    .studio-footer-logo {
        height: 18px;
    }
}

/* ========================================
   RULES SECTION STYLES
======================================== */

.rules-section {
    padding: 80px 3rem;
    background: rgba(20, 20, 20, 0.9);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.rules-content {
    max-width: 1200px;
    margin: 0 auto;
}

.rules-title {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 2.5rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    margin-bottom: 3rem;
}

.rules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.rule-category {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.rule-category:hover {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(0, 0, 0, 0.4);
}

.rule-category h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 1.1rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 0.5rem;
}

.rule-category ul {
    list-style: none;
    padding: 0;
}

.rule-category li {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.8rem;
    padding-left: 1rem;
    position: relative;
}

.rule-category li:before {
    content: "•";
    color: rgba(255, 255, 255, 0.6);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.rule-category strong {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
}

/* Responsive Rules Section */
@media (max-width: 768px) {
    .rules-section {
        padding: 60px 1.5rem;
        overflow-x: hidden; /* Previene l'overflow orizzontale */
    }
    
    .rules-content {
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 0;
    }
    
    .rules-title {
        font-size: 0.9rem !important;
        margin-bottom: 2rem;
        padding: 0 !important;
        word-wrap: break-word !important;
        letter-spacing: 0 !important; /* ZERO letter-spacing */
        line-height: 1.2 !important;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }
    
    .rules-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        width: 100%;
    }
    
    .rule-category {
        padding: 1.2rem;
        width: 100%;
        box-sizing: border-box;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .rule-category h3 {
        font-size: 0.95rem;
        word-wrap: break-word;
    }
    
    .rule-category li {
        font-size: 0.8rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
}

/* Per schermi molto piccoli (sotto 400px) */
@media (max-width: 400px) {
    .rules-title {
        font-size: 0.75rem !important;
        letter-spacing: 0 !important;
        padding: 0 !important;
        margin: 1rem 0 !important;
    }
    
    .rules-section {
        padding: 40px 0.5rem !important;
    }
}

/* RESET COMPLETO PER STEEL-PAGE SU MOBILE */
@media (max-width: 768px) {
    body.steel-page {
        overflow-x: hidden !important;
        width: 100vw !important;
        max-width: 100vw !important;
    }
    
    body.steel-page * {
        max-width: 100% !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        box-sizing: border-box !important;
    }
    
    body.steel-page .rules-title {
        font-size: 0.85rem !important;
        letter-spacing: 0 !important;
        padding: 0 !important;
        margin: 1rem 0 !important;
        width: 100% !important;
        text-align: center !important;
    }
}

/* ========================================
   CONTACT SECTION & SLIDE ANIMATIONS
======================================== */

/* Container principale con animazione slide */
.main-container {
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.main-container.slide-out {
    transform: translateX(-100vw);
}

/* Sezione Contact */
.contact-section {
    position: fixed;
    top: 0;
    right: -100vw;
    width: 100vw;
    height: 100vh;
    background: #000000;
    z-index: 150;
    transition: right 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-section.active {
    right: 0;
}

/* Logo nella sezione contact */
.contact-logo {
    position: fixed;
    top: 0.2rem;
    right: 0.5rem;
    z-index: 200;
    display: block;
}

.contact-homepage-logo {
    height: 90px;
    width: auto;
    opacity: 0.9;
    transition: all 0.3s ease, opacity 0.15s ease;
    cursor: none;
    filter: brightness(0) invert(1); /* Logo sempre bianco */
}

/* Pallino nella sezione contact - identico all'originale */
.contact-rec-button {
    position: fixed;
    top: 0.8rem;
    left: 0.8rem;
    z-index: 200;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: none;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0;
    visibility: hidden;
}

.contact-section.active .contact-rec-button {
    opacity: 1;
    visibility: visible;
}

.contact-rec-button:hover {
    transform: scale(1.1);
}

.contact-rec-dot {
    width: 12px;
    height: 12px;
    background: #ff0000;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
    animation: pulse 2s infinite;
}

.contact-container {
    color: white;
    height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 1rem 8% 2rem 8%; /* Ridotto padding superiore */
    position: relative;
    overflow: hidden; /* Rimuovo scroll per mantenere tutto in una schermata */
    max-width: 1600px;
    margin: 0 auto;
    width: 100%;
    justify-content: center; /* Centro verticalmente il contenuto */
}

/* Header Section - Ridotto per essere minimal */
.contact-header {
    text-align: center;
    margin-bottom: 2rem; /* Ridotto da 3rem */
    margin-top: 7rem; /* Aumentato per abbassare la scritta "Contattaci" */
}

.contact-title {
    font-size: 3rem; /* Ridotto da 4rem */
    font-weight: 200;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 0; /* Rimuovo il margine inferiore extra */
    font-family: 'Inter', sans-serif;
}

/* Main Content Layout - Centrato */
.contact-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    flex: 1;
    justify-content: center;
    max-height: calc(100vh - 200px);
}

/* Contact Info Grid - 3 colonne orizzontali */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    width: 100%;
    max-width: 900px;
}

.contact-item {
    text-align: center;
    padding: 2.5rem 1.5rem; /* Aumentato da 2rem per renderli più alti */
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.contact-item h3 {
    font-size: 1.1rem;
    font-weight: 700; /* Più grassetto */
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1.2rem; /* Aumentato leggermente per più spazio */
    color: white; /* Bianco invece di rosso */
}

.contact-item p {
    font-size: 1rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem; /* Aumentato per più spazio tra le righe */
    line-height: 1.4;
}

.contact-item p:last-child {
    margin-bottom: 0;
}

/* Contact Clickable Items */
.contact-clickable {
    text-decoration: none;
    display: block;
    cursor: pointer;
    color: inherit;
}

.contact-clickable:visited {
    color: inherit;
}

.contact-clickable:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.contact-clickable h3,
.contact-clickable p {
    color: white;
}

.contact-clickable h3 {
    color: white !important;
}

.contact-clickable p {
    color: rgba(255, 255, 255, 0.9) !important;
}

.contact-clickable:hover h3 {
    color: rgba(255, 255, 255, 1) !important;
}

.contact-clickable:hover p {
    color: rgba(255, 255, 255, 0.95) !important;
}

/* CTA Section */
.contact-cta {
    text-align: center;
}

.prenota-btn {
    background: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 35px;
    color: black;
    padding: 1.2rem 3rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

/* Fix per mobile: abilita il cursore sul pulsante prenota */
@media (max-width: 768px) {
    .prenota-btn {
        cursor: pointer !important;
        pointer-events: auto !important;
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0.2) !important;
        touch-action: manipulation !important;
        -webkit-user-select: none !important;
        user-select: none !important;
        position: relative !important;
        z-index: 99999 !important; /* Z-index altissimo per essere sopra tutto */
        background: white !important;
        color: black !important;
        border: 2px solid rgba(255, 255, 255, 0.5) !important;
    }
    
    .prenota-btn:active {
        background: rgba(255, 255, 255, 0.8) !important;
        transform: scale(0.98) !important;
    }
    
    /* Assicuriamoci che anche la CTA section abbia il giusto z-index */
    .contact-cta {
        position: relative !important;
        z-index: 99998 !important;
    }
}

.prenota-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 255, 255, 0.8);
}


/* Background e altri elementi con slide animation */
.background-wrapper,
.main-logo,
.rec-button,
.slide-menu {
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide-out .background-wrapper,
.slide-out .main-logo,
.slide-out .rec-button,
.slide-out .slide-menu {
    transform: translateX(-100vw);
}

/* Footer e elementi mobile rimangono fissi durante lo slide */
.main-footer,
.mobile-milan,
.mobile-central-links {
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    /* Non si muovono durante lo slide - rimangono fissi */
}

/* Responsive Design */

/* Desktop Large */
@media (min-width: 1200px) {
    .contact-container {
        max-width: 1600px;
        padding: 3rem 8%;
    }
    
    .contact-grid {
        gap: 6rem;
    }
    
    .contact-title {
        font-size: 5rem;
    }
    
    .contact-cards {
        gap: 2.5rem;
    }
    
    .contact-card {
        padding: 3rem 2.5rem;
    }
    

}

/* Tablet Landscape */
@media (max-width: 1199px) and (min-width: 769px) {
    .contact-container {
        padding: 2.5rem 4%;
    }
    
    .contact-grid {
        gap: 4rem;
    }
    
    .contact-title {
        font-size: 3.5rem;
    }
    
    .contact-cards {
        gap: 1.5rem;
    }
    
    .contact-card {
        padding: 2rem 1.5rem;
    }
    

}

/* Tablet Portrait & Mobile Large */
@media (max-width: 768px) {
    .contact-container {
        padding: 1rem 5% 2rem 5%; /* Ridotto padding superiore anche su mobile */
        height: 100vh;
        overflow: hidden;
    }
    
    .contact-header {
        margin-bottom: 0; /* Nessuno spazio sotto il titolo */
        margin-top: 8.5rem; /* Più in basso per dare respiro dal menu */
    }
    
    .contact-title {
        font-size: 2.5rem;
        letter-spacing: 0.2em;
        margin-bottom: 0;
    }
    
    .contact-content {
        gap: 0.3rem; /* Gap minimo tra gli elementi */
        max-height: calc(100vh - 150px);
        margin-top: -5rem; /* Tira i box molto più su - quasi attaccati al titolo */
    }
    
    .contact-info-grid {
        display: grid;
        grid-template-columns: 1fr 1fr; /* Due colonne per Studio e Telefono */
        grid-template-rows: auto auto; /* Due righe */
        gap: 0.8rem; /* Gap ridotto per box più compatti */
        max-width: 400px;
    }
    
    .contact-item {
        padding: 1.2rem 0.8rem; /* Padding più generoso per design moderno */
        text-align: center;
        background: rgba(255, 255, 255, 0.08) !important; /* Sfondo leggermente più visibile */
        border: 1px solid rgba(255, 255, 255, 0.15) !important; /* Bordo più definito */
        border-radius: 20px !important; /* Angoli più arrotondati */
        backdrop-filter: blur(10px) !important; /* Effetto glassmorphism */
        transition: all 0.3s ease !important; /* Transizione fluida */
        position: relative;
        overflow: hidden;
    }
    
    /* Effetto hover sui box */
    .contact-item:hover {
        background: rgba(255, 255, 255, 0.12) !important;
        border-color: rgba(255, 255, 255, 0.25) !important;
        transform: translateY(-2px) !important; /* Leggero sollevamento */
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15) !important;
    }
    
    /* Email sulla seconda riga, occupa entrambe le colonne */
    .contact-item:nth-child(3) { /* Email */
        grid-column: 1 / -1; /* Occupa tutta la larghezza */
        max-width: 250px; /* Larghezza ridotta per l'email */
        margin: 0 auto; /* Centrato */
    }
    
    .contact-item h3 {
        font-size: 0.95rem;
        font-weight: 600; /* Leggermente meno grassetto per stile moderno */
        color: rgba(255, 255, 255, 0.95); /* Bianco leggermente meno opaco */
        margin-bottom: 0.6rem;
        text-align: center; /* Testo centrato senza emoji */
    }
    
    .contact-item p {
        font-size: 0.85rem;
        margin-bottom: 0.2rem;
        color: rgba(255, 255, 255, 0.8); /* Testo leggermente più tenue */
        font-weight: 400;
        line-height: 1.4; /* Migliore leggibilità */
    }
    
    /* Stile speciale per i link (telefono e email) */
    .contact-item a {
        color: rgba(255, 255, 255, 0.9) !important;
        text-decoration: none !important;
        transition: color 0.3s ease !important;
        font-weight: 500 !important;
    }
    
    .contact-item a:hover {
        color: rgba(255, 255, 255, 1) !important;
        text-shadow: 0 0 8px rgba(255, 255, 255, 0.3) !important;
    }
    
    /* Contact Clickable for Tablet/Mobile */
    .contact-clickable:hover {
        transform: translateY(-3px);
        background: rgba(255, 255, 255, 0.1);
        border-color: rgba(255, 255, 255, 0.25);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    }
    
    .prenota-btn {
        padding: 1rem 2.5rem;
        font-size: 0.9rem;
    }
    

}

/* Mobile Small */
@media (max-width: 480px) {
    .contact-container {
        padding: 1rem 4%; /* Ridotto da 1.5rem per avere più spazio */
    }
    
    .contact-header {
        margin-bottom: 0.3rem; /* Spazio minimo tra titolo e box */
    }
    
    /* Info grid con spaziatura bilanciata su schermi piccoli */
    .contact-info-grid {
        gap: 0.6rem; /* Gap più ridotto per schermi piccoli */
        max-width: 350px; /* Larghezza ancora più ridotta */
    }
    
    .contact-item {
        padding: 0.8rem 0.4rem; /* Box ancora più compatti su schermi piccoli */
    }
    
    /* Email su schermi piccoli ancora più stretta */
    .contact-item:nth-child(3) {
        max-width: 200px !important; /* Email molto più stretta su schermi piccoli */
    }
    
    .contact-item h3 {
        font-size: 0.85rem;
        font-weight: 700; /* Grassetto anche su schermi piccoli */
        color: white; /* Bianco anche su schermi piccoli */
        margin-bottom: 0.6rem; /* Aumentato per più spazio */
    }
    
    .contact-item p {
        font-size: 0.75rem;
        line-height: 1.3; /* Aumentato leggermente per leggibilità */
        margin: 0.2rem 0; /* Aumentato margine */
    }
    
    /* Contact Clickable for Mobile Small */
    .contact-clickable:hover {
        transform: translateY(-2px);
        background: rgba(255, 255, 255, 0.08);
        border-color: rgba(255, 255, 255, 0.2);
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.25);
    }
    
    /* CTA section con spazio bilanciato */
    .contact-cta {
        margin-top: 1.5rem; /* Aumentato per centrare meglio tra i box */
    }
    
    .contact-title {
        font-size: 2rem;
        letter-spacing: 0.15em;
    }
    
    .contact-subtitle {
        font-size: 0.9rem;
    }
    
    .contact-grid {
        gap: 2.5rem;
    }
    
    .contact-cards {
        gap: 1.2rem;
    }
    
    .contact-card {
        padding: 1.5rem 1.2rem;
        border-radius: 15px;
    }
    
    .card-icon {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }
    
    .card-content h3 {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }
    
    .card-content p {
        font-size: 0.9rem;
    }
    

    

    

    
    /* Mobile adjustments for logo and rec button */
    .contact-homepage-logo {
        height: 60px;
    }
    
    .contact-rec-button {
        width: 40px;
        height: 40px;
        top: 0.5rem;
        left: 0.5rem;
    }
    
    .contact-rec-dot {
        width: 10px;
        height: 10px;
    }
}

/* ========================================
   PRENOTA SECTION & SLIDE DOWN ANIMATION
======================================== */

/* Sezione Prenota */
.prenota-section {
    position: fixed;
    top: 100vh; /* Inizia sotto lo schermo */
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #000000;
    z-index: 160; /* Sopra la sezione contact */
    transition: top 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Background Images for Prenota Section */
.prenota-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.prenota-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

/* Dark overlay on background images */
.prenota-bg-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
    pointer-events: none;
}

.prenota-section.active {
    top: 0; /* Slide verso l'alto per apparire */
}

/* Logo nella sezione prenota */
.prenota-logo {
    position: fixed;
    top: 0.2rem;
    right: 0.5rem;
    z-index: 200;
    display: block;
}

.prenota-homepage-logo {
    height: 90px;
    width: auto;
    opacity: 0.9;
    transition: all 0.3s ease, opacity 0.15s ease;
    cursor: none;
    filter: brightness(0) invert(1); /* Logo sempre bianco */
}

/* Pallino nella sezione prenota - identico all'originale */
.prenota-rec-button {
    position: fixed;
    top: 0.8rem;
    left: 0.8rem;
    z-index: 200;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: none;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0;
    visibility: hidden;
}

.prenota-section.active .prenota-rec-button {
    opacity: 1;
    visibility: visible;
}

.prenota-rec-button:hover {
    transform: scale(1.1);
}

.prenota-rec-dot {
    width: 12px;
    height: 12px;
    background: #ff0000;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
    animation: pulse 2s infinite;
}

.prenota-container {
    color: white;
    height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 2rem 8%;
    position: relative;
    overflow: hidden;
    max-width: 1600px;
    margin: 0 auto;
    width: 100%;
    justify-content: center;
}

.prenota-content {
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.prenota-title {
    font-size: 4rem;
    font-weight: 200;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 2rem;
    font-family: 'Inter', sans-serif;
    color: white;
}

/* Responsive per prenota section */
@media (max-width: 768px) {
    .prenota-container {
        padding: 2rem 5%;
    }
    
    .prenota-title {
        font-size: 2.5rem;
        letter-spacing: 0.2em;
    }
    
    /* Nascondi anche il logo della sezione prenota su mobile */
    .prenota-logo,
    .prenota-homepage-logo {
        display: none !important;
    }
    
    .prenota-rec-button {
        width: 40px;
        height: 40px;
        top: 0.5rem;
        left: 0.5rem;
    }
    
    .prenota-rec-dot {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 480px) {
    .prenota-title {
        font-size: 2rem;
        letter-spacing: 0.15em;
    }
}

/* ========================================
   PAGINE SPECIFICHE (STEELSTUDIO, BLACKBOX)
======================================== */

/* Steel Studio Page - Sfondo Bianco */
.steel-page {
    background: #ffffff;
    color: #000000;
    min-height: 100vh;
    font-family: 'Inter', sans-serif;
    cursor: none;
}

/* Black Box Page - Sfondo Nero */
.blackbox-page {
    background: #000000;
    color: #ffffff;
    min-height: 100vh;
    font-family: 'Inter', sans-serif;
    cursor: none;
}

/* Cursore personalizzato per le pagine specifiche */
.steel-page::before,
.blackbox-page::before {
    content: '';
    position: fixed;
    width: 20px;
    height: 20px;
    border: 2px solid;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: width 0.3s ease, height 0.3s ease, border-width 0.3s ease;
    mix-blend-mode: difference;
    left: var(--mouse-x, 0px);
    top: var(--mouse-y, 0px);
    transform: translate(-50%, -50%);
}

/* Colore cursore Steel Studio (nero su bianco) */
.steel-page::before {
    border-color: #000000;
    mix-blend-mode: normal;
}

/* Colore cursore Black Box (bianco su nero) */
.blackbox-page::before {
    border-color: #ffffff;
    mix-blend-mode: difference;
}

/* Stati hover per le pagine specifiche */
.steel-page.cursor-hover::before,
.blackbox-page.cursor-hover::before {
    width: 40px;
    height: 40px;
    border-width: 1px;
}

/* Forza cursor: none su tutte le pagine specifiche */
.steel-page *, .steel-page *:hover, .steel-page *:focus, .steel-page *:active,
.blackbox-page *, .blackbox-page *:hover, .blackbox-page *:focus, .blackbox-page *:active {
    cursor: none !important;
}

/* Disabilita cursore personalizzato su mobile per Steel Studio */
@media (max-width: 768px) {
    .steel-page::before {
        display: none !important;
    }
    
    .steel-page, 
    .steel-page *, 
    .steel-page *:hover, 
    .steel-page *:focus, 
    .steel-page *:active {
        cursor: auto !important;
    }
}

/* Footer per Steel Studio - fisso in basso, visibile solo alla fine */
body.steel-page .main-footer {
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 250 !important;
    opacity: 0 !important;
    transition: opacity 0.3s ease !important;
    pointer-events: none !important;
}

body.steel-page.footer-visible .main-footer {
    opacity: 1 !important;
    pointer-events: auto !important;
}

/* Su mobile MOSTRA il footer per steel-page - SEMPRE visibile in fondo */
@media (max-width: 768px) {
    body.steel-page .main-footer {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: relative !important; /* Non fixed su mobile */
        pointer-events: auto !important;
        justify-content: center !important;
        padding: 1.5rem 1rem !important;
        background: transparent !important;
        z-index: 100 !important;
    }
}

/* Container comune per tutte le pagine */
.page-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
}

/* Logo per le pagine */
.page-logo {
    position: fixed;
    top: 2rem;
    right: 2rem;
    z-index: 200;
}

.page-logo .logo-img {
    height: 80px;
    width: auto;
    transition: opacity 0.3s ease;
}

.page-logo .logo-img:hover {
    opacity: 0.8;
}

/* Contenuto principale */
.page-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    text-align: center;
}

.page-content h1 {
    font-size: 3rem;
    font-weight: 200;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

/* Responsive per mobile */
@media (max-width: 768px) {
    .page-logo {
        top: 1rem;
        right: 1rem;
    }
    
    .page-logo .logo-img {
        height: 60px;
    }
    
    .page-content h1 {
        font-size: 2rem;
        letter-spacing: 0.15em;
    }
    
    .page-content {
        padding: 1rem;
    }
}

/* ========================================
   STEEL STUDIO PAGE STYLES
======================================== */

/* Language Toggle Button */
.language-toggle {
    position: fixed;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 200;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.lang-btn {
    background: white;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 25px;
    padding: 0.5rem 1rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.1em;
    color: black;
    cursor: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Steel Page Body */
.steel-page {
    background: white;
    color: black;
    overflow-x: hidden;
}

/* Steel Content Container */
.steel-content {
    padding: 10rem 5% 5rem; /* Ridotto perché ora abbiamo la barra fissa */
    margin-top: 80px; /* Compensa l'altezza della barra */
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Section */
.steel-hero {
    text-align: center;
    margin-bottom: -1rem;
}

.steel-title {
    font-size: 4rem;
    font-weight: 200;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin: 0;
    font-family: 'Inter', sans-serif;
}

/* Titolo più piccolo per la pagina regolamento */
.regolamento-content .steel-title {
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 0.2em;
    text-align: center;
    margin-bottom: 4rem;
}

/* Footer per pagina regolamento - identico a Steel Studio */
body.steel-page .main-footer {
    position: relative !important;
    z-index: 250 !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 1.5rem 1rem !important;
    background: transparent !important;
    opacity: 1 !important;
    pointer-events: auto !important;
}

body.steel-page .footer-left, 
body.steel-page .footer-right {
    display: flex !important;
    align-items: center !important;
    gap: 1rem !important;
}

body.steel-page .footer-center {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 1rem !important;
}

body.steel-page .footer-link {
    color: rgba(0, 0, 0, 0.7) !important;
    font-family: 'Inter', sans-serif !important;
    font-weight: 300 !important;
    font-size: 0.7rem !important;
    letter-spacing: 0.1em !important;
    text-transform: uppercase !important;
    cursor: none !important;
    text-decoration: none !important;
    transition: color 0.3s ease !important;
}

body.steel-page .footer-link:hover {
    color: rgba(0, 0, 0, 1) !important;
}

body.steel-page .footer-separator {
    color: rgba(0, 0, 0, 0.9) !important;
    font-family: 'Inter', sans-serif !important;
    font-weight: 400 !important;
    font-size: 0.7rem !important;
    letter-spacing: 0.1em !important;
    margin: 0 0.2rem !important;
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
    text-rendering: optimizeLegibility !important;
    text-shadow: none !important;
}

body.steel-page .footer-credit-link {
    display: inline-flex !important;
    align-items: baseline !important;
    gap: 0.3rem !important;
    color: rgba(0, 0, 0, 1) !important;
    text-decoration: none !important;
    font-family: 'Inter', sans-serif !important;
    text-transform: uppercase !important;
    cursor: none !important;
    transition: transform 0.4s ease !important;
    transform-style: preserve-3d !important;
}

body.steel-page .footer-credit-link:hover {
    transform: rotateY(180deg) !important;
}

body.steel-page .credit-by {
    font-weight: 200 !important;
    font-size: 0.6rem !important;
    letter-spacing: 0.1em !important;
    opacity: 0.8 !important;
}

body.steel-page .credit-twh {
    font-weight: 400 !important;
    font-size: 0.8rem !important;
    letter-spacing: 0.2em !important;
}

.steel-book-btn {
    display: inline-block;
    margin-top: 3rem;
    padding: 0.8rem 2rem;
    background: #fff;
    border: 2px solid #000;
    color: #000;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border-radius: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.steel-book-btn:hover {
    background: #000;
    color: #fff;
    transform: translateY(-2px);
}

/* Content Sections */
.steel-sections {
    margin-bottom: 8rem;
}

/* Desktop Split Layout */
.steel-desktop-layout {
    display: none; /* Hidden by default, shown on desktop */
}

/* Mobile: Show normal layout */
@media (max-width: 768px) {
    .steel-intro-sections {
        display: block !important;
        padding: 2rem 5%;
    }

    .steel-intro-item {
        min-height: auto;
        padding: 3rem 0;
    }

    .intro-title {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .intro-text {
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 1.5rem;
    }

    .steel-desktop-layout {
        display: block !important;
    }

    .steel-left-content {
        width: 100%;
        padding: 0;
    }

    .steel-right-photos {
        display: none !important;
    }

    .steel-gallery {
        display: block;
    }
}

/* ========================================
   DESKTOP LAYOUT - ULTRA MINIMAL PROFESSIONAL
   Design from scratch following best practices
   ======================================== */

@media (min-width: 769px) {
    /* ===== HERO SECTION - FULL SCREEN IMMERSIVE ===== */
    .steel-page .steel-hero {
        min-height: 58vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background: #FFFFFF;
        position: relative;
        z-index: 20;
        padding: 0 5%;
        margin-bottom: 10px;
    }

    .steel-page .steel-title {
        font-size: 4rem;
        letter-spacing: 0.35em;
        font-weight: 100;
        margin: 0 0 1.5rem 0;
        color: #000000;
        text-indent: 0.35em; /* Compensa il letterspacing per centratura perfetta */
    }

    .steel-page .steel-book-btn {
        margin-top: 0;
        margin-bottom: -12rem;
        padding: 1.2rem 4rem;
        font-size: 0.85rem;
        font-weight: 400;
        border: 1px solid #000000;
        background: transparent;
        color: #000000;
        border-radius: 50px;
        letter-spacing: 0.2em;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
    }

    .steel-page .steel-book-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: #000000;
        transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: -1;
    }

    .steel-page .steel-book-btn:hover::before {
        left: 0;
    }

    .steel-page .steel-book-btn:hover {
        color: #FFFFFF;
    }

    /* ===== CONTENT CONTAINER ===== */
    .steel-page .steel-content {
        background: #FFFFFF;
        padding: 0;
        margin: 0;
        max-width: none;
    }

    /* ===== INTRO SECTIONS - CENTERED ===== */
    .steel-intro-sections {
        display: block;
    }

    .steel-intro-item {
        min-height: 70vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding: 0 10%;
        max-width: 900px;
        margin: 0 auto;
    }

    .intro-title {
        font-size: 1.2rem;
        font-weight: 600;
        letter-spacing: 0.3em;
        text-transform: uppercase;
        margin: 0 0 4rem 0;
        color: #000000;
        opacity: 0.5;
    }

    .intro-text {
        font-size: 1.4rem;
        line-height: 2;
        font-weight: 300;
        color: #000000;
        margin-bottom: 2rem;
        max-width: 750px;
    }

    .intro-text:last-child {
        margin-bottom: 0;
    }

    /* ===== SPLIT LAYOUT - GOLDEN RATIO (38:62) ===== */
    .steel-desktop-layout {
        display: flex;
        min-height: 100vh;
        position: relative;
    }

    /* ===== LEFT SIDE - TEXT (38%) FLUSH LEFT ===== */
    .steel-left-content {
        width: 38%;
        min-width: 420px;
        max-width: 550px;
        padding: 8vh 0 8vh 5vw;
        position: sticky;
        top: 0;
        height: 100vh;
        overflow-y: auto;
        background: #FFFFFF;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    /* Custom scrollbar elegante */
    .steel-left-content::-webkit-scrollbar {
        width: 2px;
    }

    .steel-left-content::-webkit-scrollbar-track {
        background: transparent;
    }

    .steel-left-content::-webkit-scrollbar-thumb {
        background: rgba(0, 0, 0, 0.15);
        border-radius: 1px;
    }

    .steel-left-content::-webkit-scrollbar-thumb:hover {
        background: rgba(0, 0, 0, 0.3);
    }

    /* ===== RIGHT SIDE - PHOTOS (62%) LARGE & CENTERED ===== */
    .steel-right-photos {
        width: 62%;
        padding: 8vh 8vw 8vh 4vw;
        background: #FAFAFA;
        display: flex;
        align-items: center;
    }

    .steel-photo-scroll {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 6vh;
        max-width: 1400px;
        margin: 0 auto;
    }

    /* Photo items - Clean with rounded borders and clickable */
    .steel-photo-item {
        width: 100%;
        position: relative;
        overflow: hidden;
        background: #FFFFFF;
        border-radius: 12px;
        transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        cursor: pointer;
    }

    .steel-photo-item:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    }

    .steel-photo-item img {
        width: 100%;
        height: auto;
        display: block;
        transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .steel-photo-item:hover img {
        transform: scale(1.03);
    }

    /* Hide mobile gallery */
    .steel-gallery {
        display: none;
    }

    /* ===== TEXT CONTENT STYLING ===== */
    .steel-desktop-layout .steel-sections {
        margin: 0;
        max-width: 480px;
    }

    .steel-desktop-layout .content-section {
        margin-bottom: 5rem;
        padding-bottom: 0;
        border-bottom: none;
    }

    .steel-desktop-layout .content-section:last-child {
        margin-bottom: 0;
    }

    .steel-desktop-layout .content-section:first-child {
        padding-top: 0;
    }

    /* First section (Homepage) - Special styling */
    .steel-desktop-layout .content-section:first-child .content-text {
        font-size: 1.1rem;
        line-height: 1.9;
        font-weight: 300;
    }

    .steel-desktop-layout .content-section:first-child .content-text:first-of-type {
        font-size: 1.15rem;
        color: #000000;
        opacity: 0.9;
    }

    /* ===== TYPOGRAPHY - MINIMAL & ELEGANT ===== */
    .steel-desktop-layout .section-title {
        font-size: 0.75rem;
        font-weight: 600;
        letter-spacing: 0.25em;
        text-transform: uppercase;
        margin: 0 0 2.5rem 0;
        color: #000000;
        opacity: 0.4;
    }

    .steel-desktop-layout .content-text {
        font-size: 1rem;
        line-height: 1.8;
        margin-bottom: 1.5rem;
        color: #000000;
        font-weight: 300;
        max-width: 65ch; /* Optimal reading length */
    }

    .steel-desktop-layout .features-list {
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .steel-desktop-layout .features-list li {
        font-size: 0.9rem;
        line-height: 2;
        margin-bottom: 0;
        color: rgba(0, 0, 0, 0.7);
        font-weight: 300;
        padding-left: 1.5rem;
        position: relative;
    }

    .steel-desktop-layout .features-list li::before {
        content: '—';
        position: absolute;
        left: 0;
        color: rgba(0, 0, 0, 0.3);
    }

    /* Nascondi la stanghetta per elementi specifici (classe no-arrow) */
    .steel-desktop-layout .features-list li.no-arrow::before {
        content: none;
    }

    .steel-desktop-layout .features-list li.no-arrow {
        padding-left: 0; /* riallinea il testo quando non c'è simbolo */
    }

    /* ===== RATES - DESKTOP LAYOUT ===== */

    /* Button minimal */
    .steel-desktop-layout .regolamento-btn {
        margin-top: 2rem;
        padding: 1rem 2rem;
        font-size: 0.75rem;
        font-weight: 400;
        border-radius: 0;
        background: #000000;
        color: #FFFFFF;
        text-decoration: none;
        display: inline-block;
        letter-spacing: 0.2em;
        transition: all 0.4s ease;
        border: 1px solid #000000;
    }

    .steel-desktop-layout .regolamento-btn:hover {
        background: transparent;
        color: #000000;
    }

    /* ===== BLACKBOX DESKTOP LAYOUT - RATES ===== */

    /* ===== NAVIGATION DOTS - HIDDEN ===== */
    .steel-nav-dots {
        display: none;
    }

    /* ===== SMOOTH SCROLL BEHAVIOR ===== */
    html {
        scroll-behavior: smooth;
    }

    .steel-left-content {
        scroll-behavior: smooth;
    }

    /* ===== FADE IN ANIMATION ===== */
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .steel-photo-item {
        animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) backwards;
    }

    .steel-photo-item:nth-child(1) { animation-delay: 0.1s; }
    .steel-photo-item:nth-child(2) { animation-delay: 0.15s; }
    .steel-photo-item:nth-child(3) { animation-delay: 0.2s; }
    .steel-photo-item:nth-child(4) { animation-delay: 0.25s; }
    .steel-photo-item:nth-child(5) { animation-delay: 0.3s; }
    .steel-photo-item:nth-child(6) { animation-delay: 0.35s; }
    .steel-photo-item:nth-child(7) { animation-delay: 0.4s; }
    .steel-photo-item:nth-child(8) { animation-delay: 0.45s; }
    .steel-photo-item:nth-child(9) { animation-delay: 0.5s; }
    .steel-photo-item:nth-child(10) { animation-delay: 0.55s; }
    .steel-photo-item:nth-child(11) { animation-delay: 0.6s; }
    .steel-photo-item:nth-child(12) { animation-delay: 0.65s; }

    /* Text content fade in */
    .steel-desktop-layout .content-section {
        animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) backwards;
        animation-delay: 0.2s;
    }

    /* ===== PERFORMANCE OPTIMIZATIONS ===== */
    .steel-photo-item {
        will-change: transform;
    }

    .steel-photo-item img {
        will-change: transform;
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }

    /* ===== ACCESSIBILITY ===== */
    .steel-nav-dot:focus {
        outline: 2px solid rgba(0, 0, 0, 0.3);
        outline-offset: 4px;
    }

    /* ===== RESPONSIVE REFINEMENTS ===== */
    @media (min-width: 1400px) {
        .steel-page .steel-title {
            font-size: 6rem;
        }

        .steel-left-content {
            padding-left: 6vw;
        }

        .steel-desktop-layout .content-text {
            font-size: 1.05rem;
        }
    }

    @media (max-width: 1200px) {
        .steel-page .steel-title {
            font-size: 4rem;
        }

        .steel-left-content {
            min-width: 380px;
        }

        .steel-photo-scroll {
            gap: 5vh;
        }
    }

    @media (max-width: 1000px) {
        .steel-page .steel-title {
            font-size: 4rem;
        }

        .steel-left-content {
            width: 42%;
            min-width: 340px;
        }

        .steel-right-photos {
            width: 58%;
            padding: 6vh 6vw 6vh 3vw;
        }
    }

    /* ===== BOTTOM CTA - DESKTOP STYLE ===== */
    .steel-page .steel-bottom-cta {
        padding: 12vh 5%;
        margin: 0;
        text-align: center;
    }

    .steel-page .steel-bottom-title {
        font-size: 3rem;
        font-weight: 100;
        letter-spacing: 0.35em;
        margin: 0 0 4rem 0;
        text-indent: 0.35em;
    }

    .steel-page .steel-book-btn-bottom {
        padding: 1.2rem 4rem;
        font-size: 0.85rem;
        font-weight: 400;
        border: 1px solid #000000;
        background: transparent;
        color: #000000;
        border-radius: 50px;
        letter-spacing: 0.2em;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
        animation: none;
    }

    .steel-page .steel-book-btn-bottom::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: #000000;
        transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: -1;
    }

    .steel-page .steel-book-btn-bottom:hover::before {
        left: 0;
    }

    .steel-page .steel-book-btn-bottom:hover {
        color: #FFFFFF;
    }
}


.content-section {
    margin-bottom: 5rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.content-section:last-child {
    border-bottom: none;
}

.section-title {
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin: 3rem 0 2rem 0;
    color: black;
    font-family: 'Inter', sans-serif;
    text-align: center;
}

/* Primo section-title con meno margine superiore */
.content-section:first-child .section-title {
    margin-top: 1rem;
}





.section-content {
    max-width: 800px;
}

.content-text {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: rgba(0, 0, 0, 0.8);
    font-weight: 300;
}

.content-intro {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: black;
}

/* Features List */
.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list li {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0.8rem;
    color: rgba(0, 0, 0, 0.8);
    padding-left: 1.5rem;
    position: relative;
}

.features-list li::before {
    content: "•";
    color: black;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Rates Grid */
.rates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.rate-item {
    background: transparent;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.rate-item:hover {
    transform: translateY(-5px);
    background: rgba(0, 0, 0, 0.03);
    border-color: rgba(0, 0, 0, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.rate-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    color: black;
}

.rate-item p {
    font-size: 1rem;
    color: rgba(0, 0, 0, 0.7);
    margin: 0;
}

.min-booking {
    font-size: 1rem;
    font-weight: 500;
    color: black;
    text-align: center;
    margin-top: 1rem;
}

/* Pulsante Regolamento - Solo Mobile */
.regolamento-btn {
    display: none;
}

@media (max-width: 768px) {
    .regolamento-btn {
        display: block;
        margin: 2rem auto 0;
        padding: 14px 35px;
        background-color: black;
        color: white;
        text-decoration: none;
        font-size: 0.9rem;
        font-weight: 600;
        letter-spacing: 0.5px;
        border-radius: 25px;
        transition: all 0.3s ease;
        text-align: center;
        width: fit-content;
        position: relative;
        z-index: 250 !important;
        pointer-events: auto !important;
        cursor: pointer !important;
    }
    
    .regolamento-btn:hover,
    .regolamento-btn:active {
        background-color: #333;
        transform: translateY(-2px);
    }
}

/* Pagina Regolamento */
.regolamento-content {
    background-color: white;
}

.regolamento-text {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
    color: black;
}

.regolamento-text .regolamento-intro {
    font-weight: 500;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.regolamento-text h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: black;
    text-align: left; /* Allinea i titoli a sinistra */
}

.regolamento-text p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    color: #333;
    text-align: left; /* Allinea il testo a sinistra */
}

.regolamento-text ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.regolamento-text ul li {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 0.5rem;
    color: #333;
}

@media (max-width: 768px) {
    .regolamento-text {
        padding: 1.5rem 1rem;
    }
    
    .regolamento-text h3 {
        font-size: 1.1rem;
        margin-top: 2rem;
    }
    
    .regolamento-text p,
    .regolamento-text ul li {
        font-size: 0.95rem;
    }
}

/* Gallery Section */
.steel-gallery {
    margin-top: 6rem;
}

.gallery-title {
    font-size: 2.5rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 3rem;
    color: black;
    font-family: 'Inter', sans-serif;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 5rem;
}

.steel-gallery .gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    aspect-ratio: 4/3;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.steel-gallery .gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.steel-gallery .gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease, filter 0.3s ease;
    cursor: pointer;
}

.steel-gallery .gallery-item:hover .gallery-image {
    transform: scale(1.1);
}

/* Overlay con icona di zoom al centro */
.steel-gallery .gallery-item::after {
    content: '🔍';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    font-size: 1.8rem;
    color: white;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.steel-gallery .gallery-item:hover::after {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

/* Bottom CTA Section */
.steel-bottom-cta {
    text-align: center;
    margin: 6rem 0 4rem;
    padding: 3rem 0;
}

.steel-bottom-title {
    font-size: 3rem;
    font-weight: 200;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin: 0 0 2rem 0;
    color: black;
    font-family: 'Inter', sans-serif;
}

.steel-book-btn-bottom {
    margin-top: 0;
    animation: subtlePulse 3s infinite;
}

@keyframes subtlePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .header-bar {
        height: 60px; /* Più bassa su mobile */
        padding: 0 0.8rem;
        transition: opacity 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94); /* Più veloce su mobile */
        width: 100%;
        max-width: 100vw;
        box-sizing: border-box;
        overflow: hidden;
    }
    
    .header-bar .homepage-logo,
    .header-bar .mobile-logo {
        height: 40px; /* Più piccolo su mobile */
    }
    
    .header-bar .lang-btn {
        padding: 0.3rem 0.6rem;
        font-size: 0.7rem;
    }
    
    .steel-content {
        margin-top: 60px; /* Compensa la barra mobile più bassa */
        padding: 6rem 5% 3rem;
    }
    
    .steel-title {
        font-size: 2.5rem;
        letter-spacing: 0.2em;
    }
    
    .steel-book-btn {
        font-size: 0.8rem;
        padding: 0.7rem 1.5rem;
        margin-top: 1.5rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .content-text {
        font-size: 1rem;
    }
    
    .rates-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .rate-item {
        padding: 1.5rem 1rem;
    }
    
    .gallery-title {
        font-size: 2rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .steel-bottom-cta {
        margin: 4rem 0 3rem;
        padding: 2rem 0;
    }
    
    .steel-book-btn-bottom {
        font-size: 0.8rem;
        padding: 0.7rem 1.5rem;
    }
    
    .steel-bottom-title {
        font-size: 2.5rem;
        letter-spacing: 0.2em;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 480px) {
    .steel-content {
        padding: 5rem 4% 2rem;
    }
    
    .steel-title {
        font-size: 2rem;
        letter-spacing: 0.15em;
    }
    
    .steel-book-btn {
        font-size: 0.75rem;
        padding: 0.6rem 1.2rem;
        margin-top: 2rem;
    }
    
    .steel-bottom-cta {
        margin: 3rem 0 2rem;
        padding: 1.5rem 0;
    }
    
    .steel-book-btn-bottom {
        font-size: 0.75rem;
        padding: 0.6rem 1.2rem;
    }
    
    .steel-bottom-title {
        font-size: 2rem;
        letter-spacing: 0.15em;
        margin-bottom: 1.2rem;
    }
    
    .content-section {
        margin-bottom: 3rem;
        padding-bottom: 2rem;
    }
    
    .section-title {
        font-size: 1.3rem;
        margin: 2rem 0 1.5rem 0;
    }
    
    .content-section:first-child .section-title {
        margin-top: 0.5rem;
    }
    

    
    .content-text {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .rate-item {
        padding: 1.2rem 0.8rem;
    }
    
    .rate-item h3 {
        font-size: 1rem;
    }
    
    .gallery-title {
        font-size: 1.8rem;
        margin: 2rem 0 2rem 0;
    }
    
    /* Assicura che il pulsante prenota sia visibile e cliccabile su mobile */
    .steel-book-btn {
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1) !important;
        touch-action: manipulation !important;
        pointer-events: auto !important;
        cursor: pointer !important;
        position: relative !important;
        z-index: 1000 !important;
        user-select: none !important;
        -webkit-user-select: none !important;
        -moz-user-select: none !important;
        -ms-user-select: none !important;
    }
    
    /* Tutti gli elementi mobile nascosti per Steel Studio */
    .steel-page .mobile-central-links,
    .steel-page .mobile-layout,
    .steel-page .mobile-milan,
    .steel-page .mobile-vertical-links,
    .steel-page .mobile-credit {
        display: none !important;
    }
    
    .steel-page .mobile-central-link {
        color: black;
        font-family: 'Inter', sans-serif;
        font-weight: 300;
        font-size: 0.5rem;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        text-decoration: none;
        cursor: pointer !important;
        pointer-events: auto !important;
        transition: color 0.3s ease;
        white-space: nowrap;
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
        padding: 0.3rem 0.2rem;
        min-height: 44px;
        display: flex;
        align-items: center;
        z-index: 10000;
        position: relative;
    }
    
    .steel-page .mobile-separator {
        color: black;
        font-family: 'Inter', sans-serif;
        font-weight: 500;
        font-size: 0.5rem;
        margin: 0 0.3rem;
        pointer-events: none;
        opacity: 1 !important;
        visibility: visible !important;
        display: inline !important;
        text-shadow: none !important;
        -webkit-font-smoothing: antialiased !important;
        -moz-osx-font-smoothing: grayscale !important;
        text-rendering: optimizeLegibility !important;
    }
    
    .steel-page .mobile-central-link:hover {
        color: rgba(255, 255, 255, 0.5);
    }
}

/* ========================================
   PRENOTA SECTION - BUTTONS STYLES
======================================== */

.prenota-description {
    color: white;
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 1rem;
    text-align: center;
    margin: 2rem 0 3rem 0;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.prenota-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.prenota-studio-btn {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    text-decoration: none;
    border: 2px solid white;
    background: transparent;
    color: white;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    cursor: none;
    position: relative;
    min-width: 200px;
    text-align: center;
}

.prenota-studio-btn:hover {
    background: white;
    color: black;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.steel-btn:hover {
    background: white;
    color: black;
    border-color: white;
}

.blackbox-btn:hover {
    background: white;
    color: black;
    border-color: white;
}

.btn-text {
    display: block;
    position: relative;
    z-index: 1;
}

.coming-soon-text {
    margin-top: 2rem;
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 0.9rem;
    letter-spacing: 0.2em;
    color: white;
    text-align: center;
    text-transform: uppercase;
    opacity: 0.7;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .prenota-description {
        font-size: 0.9rem;
        margin: 1.5rem 1rem 2rem 1rem;
        padding: 0 1rem;
    }
    
    .prenota-buttons {
        flex-direction: column;
        gap: 1.5rem;
        padding: 0 2rem;
    }
    
    .prenota-studio-btn {
        width: 100%;
        max-width: 280px;
        padding: 1rem 2rem;
        cursor: pointer !important;
        pointer-events: auto !important;
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
    }
    
    .prenota-studio-btn:active {
        transform: translateY(1px);
        background: rgba(255, 255, 255, 0.1);
    }
    
    .coming-soon-text {
        font-size: 0.8rem;
        margin-top: 1.5rem;
        padding: 0 1rem;
    }
}