/* ==========================================================================
   DESIGN SYSTEM & VARIABILI (TEMA QUANTUM NEON)
   ========================================================================== */
:root {
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Roboto', sans-serif;
    
    /* Neon Palette */
    --neon-blue: #00f0ff;
    --neon-purple: #bd00ff;
    --neon-pink: #ff007a;
    --cyber-green: #39ff14;
    
    /* Theme Colors */
    --bg-dark: #020208;
    --bg-card: rgba(10, 10, 25, 0.6);
    --border-holo: rgba(0, 240, 255, 0.2);
    --text-glow: 0 0 10px rgba(0, 240, 255, 0.5);
    
    /* Transitions */
    --t-smooth: cubic-bezier(0.25, 1, 0.5, 1);
    --t-duration: 0.8s;
}

/* ==========================================================================
   RESET & IMPOSTAZIONI DI BASE (NIENTE SCROLL)
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body, html {
    width: 100%;
    height: 100%;
    overflow: hidden; /* Blocca scorrimento verticale e orizzontale */
    background-color: var(--bg-dark);
    font-family: var(--font-body);
    color: #ffffff;
    user-select: none;
    -webkit-user-select: none;
}

/* Contenitore App principale */
#app {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

/* Classe di utilità per SEO screen readers */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* ==========================================================================
   SEZIONI DI VISTA PRINCIPALI (LANDING, POV, DETTAGLI)
   ========================================================================== */
.view-section {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    pointer-events: none;
    transition: transform var(--t-duration) var(--t-smooth), filter var(--t-duration) var(--t-smooth), opacity var(--t-duration) var(--t-smooth);
    z-index: 1;
}

/* Gestione degli stati dell'applicazione via classi sul parent #app */
#app.state-landing #state-landing,
#app.state-pov #state-pov,
#app.state-detail #state-detail {
    opacity: 1;
    pointer-events: auto;
    z-index: 10;
}

/* ==========================================================================
   STATO 1: LANDING PAGE - ISOLA SPAZIALE (STRUTTURA LIVELLI)
   ========================================================================== */
.space-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, #0c0d28 0%, #020208 80%);
    z-index: 0;
}

/* Layout 16:9 per mantenere i punti caldi e i portali allineati a qualsiasi risoluzione */
#island-container {
    position: absolute;
    width: 100vw;
    height: 56.25vw; /* 16:9 Aspect Ratio */
    max-width: 177.78vh; /* 16:9 Aspect Ratio limit */
    max-height: 100vh;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transform-origin: 24.5% 56%; /* Ancoraggio dello zoom sull'oculare del telescopio */
    transition: transform 1.2s cubic-bezier(0.7, 0, 0.3, 1), opacity var(--t-duration) var(--t-smooth);
}

/* Animazione di oscillazione verticale in loop dell'isola */
@keyframes spaceFloat {
    0% { margin-top: -6px; }
    50% { margin-top: 6px; }
    100% { margin-top: -6px; }
}

.island-oscillation {
    animation: spaceFloat 6s ease-in-out infinite;
}

/* Immagini base dell'isola */
.island-img-base {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.island-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.8s var(--t-smooth);
    z-index: 2;
}

.island-img.active {
    opacity: 1;
}

/* ==========================================================================
   INTERACTIVE ELEMENTS (TELESCOPE HOTSPOT & INSTRUCTIONS)
   ========================================================================== */

/* Hotspot sul telescopio - COMPLETAMENTE INVISIBILE */
#telescope-hotspot {
    position: absolute;
    left: 22.5%;
    top: 41%;
    width: 8%;
    height: 28%;
    background: transparent;
    border: none;
    outline: none;
    cursor: pointer;
    border-radius: 50%;
    z-index: 20;
    pointer-events: auto;
    box-shadow: none;
    transition: transform 0.3s ease;
}

#telescope-hotspot:hover {
    transform: scale(1.05);
    background: transparent;
    border: none;
    box-shadow: none;
}

/* UI di indicazioni della Landing */
#landing-ui {
    position: absolute;
    bottom: 8%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 15;
    pointer-events: none;
    font-family: var(--font-heading);
    transition: opacity 0.5s ease;
}

.click-instruction {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    font-size: 1.35rem; /* Ingrandito notevolmente */
    text-transform: uppercase;
    letter-spacing: 0.18rem;
    color: #ffffff;
    background: rgba(10, 10, 25, 0.88);
    padding: 14px 36px; /* Più imbottitura per dare importanza */
    border-radius: 50px;
    border: 1px solid rgba(0, 240, 255, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.3);
    transition: all 0.3s ease;
}

.logo-inline {
    height: 32px; /* Ingrandito insieme alla scritta */
    width: auto;
    display: inline-block;
    vertical-align: middle;
    filter: drop-shadow(0 0 6px rgba(0, 240, 255, 0.8));
    transition: all 0.3s ease;
}

.click-instruction:hover {
    border-color: var(--neon-blue);
    box-shadow: 0 0 40px rgba(0, 240, 255, 0.55);
}

.click-instruction:hover .logo-inline {
    filter: drop-shadow(0 0 12px rgba(0, 240, 255, 1));
    transform: scale(1.06);
}

.pulse-dot {
    width: 10px;
    height: 10px;
    background-color: var(--neon-blue);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--neon-blue);
    animation: dotPulse 1.5s infinite;
}

@keyframes dotPulse {
    0% { transform: scale(0.9); opacity: 0.6; }
    50% { transform: scale(1.2); opacity: 1; box-shadow: 0 0 16px var(--neon-blue); }
    100% { transform: scale(0.9); opacity: 0.6; }
}

/* ==========================================================================
   STATO DI ZOOM-IN (TRANSIZIONE DI TRANSITO VERSO IL POV)
   ========================================================================== */
#app.state-zoom-in #island-container {
    transform: translate(-50%, -50%) scale(12); /* Zoom dentro l'oculare del telescopio */
    opacity: 0;
}

#app.state-zoom-in #landing-ui {
    opacity: 0;
}

/* ==========================================================================
   STATO 2: POV TELESCOPIO (LENTE MENU)
   ========================================================================== */
#state-pov {
    background-color: #000002;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Contenitore della lente 16:9 responsivo */
#lens-container {
    position: relative;
    width: 100vw;
    height: 56.25vw;
    max-height: 100vh;
    max-width: 177.78vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

#img-lens {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Overlay per i click sui cerchi della lente */
#lens-hotspots {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
}

.lens-hotspot {
    position: absolute;
    background: transparent;
    border: none;
    outline: none;
    cursor: pointer;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.lens-hotspot:hover {
    transform: scale(1.04);
}



/* ==========================================================================
   PULSANTI OLOGRAFICI (HOLO-BUTTONS)
   ========================================================================== */
.holo-btn {
    position: absolute;
    background: var(--bg-card);
    border: 1px solid var(--border-holo);
    color: #ffffff;
    padding: 10px 22px;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.15rem;
    border-radius: 4px;
    cursor: pointer;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    transition: all 0.3s var(--t-smooth);
    z-index: 100;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

.holo-btn:hover {
    background: rgba(0, 240, 255, 0.15);
    border-color: var(--neon-blue);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.4);
    text-shadow: var(--text-glow);
    transform: translateY(-2px);
}

.holo-btn .icon {
    margin-right: 6px;
    font-size: 0.75rem;
}

/* Pulsante Zoom Out dal POV */
#btn-pov-back {
    bottom: 6%;
    left: 5%;
}

/* Pulsanti chiusura dettagli */
.btn-detail-close {
    top: 5%;
    right: 4%;
}

/* ==========================================================================
   STATO 3: SCHERMATE DI DETTAGLIO SEZIONI
   ========================================================================== */
#state-detail {
    background-color: var(--bg-dark);
}

.detail-view {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    pointer-events: none;
    background: radial-gradient(circle at 50% 50%, #050616 0%, #010103 100%);
    transition: transform 0.4s var(--t-smooth), filter 0.4s var(--t-smooth), opacity 0.4s var(--t-smooth);
    display: flex;
    justify-content: center;
    align-items: center;
}

.detail-view.active {
    opacity: 1;
    pointer-events: auto;
    z-index: 20;
}

/* Le immagini delle sezioni mantengono le proporzioni e ottimizzano il contrasto per la leggibilità dei testi integrati */
.detail-bg-img {
    width: 100vw;
    height: 56.25vw;
    max-height: 100vh;
    max-width: 177.78vh;
    object-fit: contain;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.8);
    filter: contrast(1.06) saturate(1.08) brightness(0.98); /* Ottimizzazione contrasto testi integrati */
}

/* ==========================================================================
   EFFETTI DI TRANSIZIONE DI SCALA E BLUR INGRESSO DA 0.2S
   ========================================================================== */

/* La nuova vista d'ingresso parte rimpicciolita e sfuocata */
.teleporting-in {
    transform: scale(0.95) !important;
    filter: blur(15px) brightness(0.6) !important;
    opacity: 0 !important;
}

/* Transizione rapida per POV e Dettagli quando passano allo stato attivo (effetto ingresso 0.25s) */
#state-pov, .detail-view {
    transition: filter 0.25s cubic-bezier(0.25, 1, 0.5, 1), transform 0.25s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.25s cubic-bezier(0.25, 1, 0.5, 1);
}

/* ==========================================================================
   VIDEO INTRO OVERLAY (TRANSIZIONE TELESCOPIO -> POV)
   ========================================================================== */
#intro-video-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

#intro-video-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

#intro-video-overlay.fade-out {
    opacity: 0;
    pointer-events: none;
}

#intro-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: transparent;
}

/* ==========================================================================
   CSS EDGE MIRRORING (SFONDO SPECULARE LATERALE CON MASK)
   ========================================================================== */
.mirror-img {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: contrast(1.06) saturate(1.08) brightness(0.65);
    z-index: -1; /* Dietro l'immagine principale nel container */
    pointer-events: none;
}

/* Ribalta orizzontalmente l'immagine e posizionala ai lati del container */
.mirror-left {
    right: 100%;
    transform: scaleX(-1);
    /* La maschera mantiene visibile solo il primissimo bordo originale (che ora tocca il container) e sfuma il resto per nascondere i testi */
    -webkit-mask-image: linear-gradient(to right, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 7%);
    mask-image: linear-gradient(to right, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 7%);
}

.mirror-right {
    left: 100%;
    transform: scaleX(-1);
    /* Sfuma partendo dal bordo destro originale verso l'interno */
    -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 7%);
    mask-image: linear-gradient(to left, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 7%);
}

/* ==========================================================================
   INTERACTIVE DETAIL VIEWS (MAP, CONTACTS, PARTNERS, SMART ZOOM)
   ========================================================================== */

/* Contenitore interattivo responsivo in 16:9 per le immagini di dettaglio */
.interactive-image-container {
    position: relative;
    width: 100vw;
    height: 56.25vw;
    max-height: 100vh;
    max-width: 177.78vh;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    container-type: inline-size;
    perspective: 800px;
}

/* Immagine di sfondo di dettaglio */
.detail-bg-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 0 40px rgba(0, 240, 255, 0.4);
    position: relative;
    z-index: 10;
}

/* Testi Partner e Collabs */
.partner-title-container {
    position: absolute;
    top: 5%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 15;
    pointer-events: none;
    width: 60%;
}

.partner-title-container h2 {
    font-family: var(--font-heading);
    font-size: 2.5vw;
    font-weight: 800;
    color: #ffffff;
    text-shadow: 0 0 15px rgba(0, 240, 255, 0.8), 0 0 5px rgba(0, 240, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.2rem;
    margin-bottom: 0.5vw;
}

.partner-title-container p {
    font-family: var(--font-body);
    font-size: 1.2vw;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
}

.partner-text {
    position: absolute;
    font-family: var(--font-body);
    font-size: 0.9vw;
    color: rgba(255, 255, 255, 0.85);
    text-align: center;
    z-index: 15;
    pointer-events: none;
    line-height: 1.3;
    text-shadow: 0 0 8px rgba(0, 0, 0, 0.9);
}

/* Riquadri Cliccabili per lo Zoom 3D (Completamente Trasparenti) */
.zoom-box {
    position: absolute;
    background: transparent;
    cursor: zoom-in;
    z-index: 10;
    transition: background-color 0.3s ease, border 0.3s ease;
    border-radius: 8px;
}

/* Feedback visivo leggerissimo all'hover per indicare l'interattività del riquadro */
.zoom-box:hover {
    background-color: rgba(0, 240, 255, 0.03);
    border: 1px dashed rgba(0, 240, 255, 0.25);
}

/* Mappa interattiva in Dove Siamo (Completamente Trasparente) */
.detail-map-link {
    position: absolute;
    background: transparent;
    cursor: pointer;
    z-index: 12;
    transition: background-color 0.3s ease, border 0.3s ease;
    border-radius: 12px;
}

.detail-map-link:hover {
    background-color: rgba(0, 240, 255, 0.04);
    border: 1px solid rgba(0, 240, 255, 0.3);
}

/* Hotspots trasparenti dei Contatti ( TELEFONO, EMAIL, SITO WEB, WHATSAPP ) */
.contact-hotspot {
    position: absolute;
    background: transparent;
    cursor: pointer;
    z-index: 12;
    transition: background-color 0.3s ease, border 0.3s ease;
    border-radius: 8px;
}

/* Feedback ciano leggerissimo all'hover sul riquadro dei contatti */
.contact-hotspot:hover {
    background-color: rgba(0, 240, 255, 0.04);
    border: 1px solid rgba(0, 240, 255, 0.25);
}

/* Hotspots trasparenti dei Partner (HP, TP-LINK, Kaspersky, Microsoft, Axcient, Threat Down, Datto) */
.partner-hotspot {
    position: absolute;
    background: transparent;
    cursor: pointer;
    z-index: 12;
    transition: background-color 0.3s ease, border 0.3s ease;
    border-radius: 10px;
}

/* Feedback ciano leggerissimo all'hover sul partner */
.partner-hotspot:hover {
    background-color: rgba(0, 240, 255, 0.04);
    border: 1px solid rgba(0, 240, 255, 0.3);
}

/* ==========================================================================
   MODAL LIGHTBOX - ZOOM 3D FLY-OUT DEI RIQUADRI
   ========================================================================== */
#zoom-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(2, 2, 8, 0.4); /* Sfondo scuro semi-trasparente */
    backdrop-filter: blur(40px); /* Sfocatura fortissima */
    -webkit-backdrop-filter: blur(40px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 20000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}



#zoom-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

#zoom-card {
    position: relative;
    background-image: url('assets/text_frame.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 8px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.9), 0 0 30px rgba(0, 240, 255, 0.1);
    cursor: zoom-out;
    transform: scale(0.4) rotateX(10deg);
    opacity: 0;
    transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.45s ease;
}

#zoom-overlay.active #zoom-card {
    transform: scale(1.5) rotateX(0deg); /* Vola in avanti verso l'utente */
    opacity: 1;
}

/* Rendi invisibili gli hotspot sul menu della lente */
.lens-hotspot {
    position: absolute;
    background: transparent !important;
    border: none !important;
    outline: none !important;
    cursor: pointer;
    border-radius: 50%;
    box-shadow: none !important;
    transition: transform 0.3s ease;
}

.lens-hotspot:hover {
    transform: scale(1.04);
    background: transparent !important;
    box-shadow: none !important;
}

/* ==========================================================================
   EMAIL MODAL STYLE (SCELTA PROVIDER)
   ========================================================================== */
#email-modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(1, 1, 3, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 30000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

#email-modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

#email-modal-card {
    background: rgba(5, 6, 22, 0.85);
    border: 1px solid rgba(0, 240, 255, 0.4);
    border-radius: 16px;
    box-shadow: 0 0 40px rgba(0, 240, 255, 0.2), inset 0 0 20px rgba(0, 240, 255, 0.1);
    padding: 30px 40px;
    text-align: center;
    max-width: 450px;
    width: 90%;
    transform: translateY(20px) scale(0.95);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

#email-modal-overlay.active #email-modal-card {
    transform: translateY(0) scale(1);
}

#email-modal-card h3 {
    font-family: var(--font-heading);
    color: var(--text-light);
    font-size: 1.5rem;
    margin-bottom: 10px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

#email-modal-card p {
    font-family: var(--font-body);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin-bottom: 25px;
}

.email-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 25px;
}

.email-btn {
    width: 100%;
    justify-content: center;
    font-size: 0.95rem;
    padding: 12px 20px;
}

.email-btn .icon {
    font-weight: bold;
    margin-right: 10px;
    font-size: 1.1rem;
}

.email-btn:hover {
    background: rgba(0, 240, 255, 0.25);
    transform: translateY(-2px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.8);
    box-shadow: none;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
    color: #fff;
}

/* ==========================================================================
   DYNAMIC TEXT ZOOM INTERACTION
   ========================================================================== */
.detail-view.active .dynamic-text {
    pointer-events: auto !important;
    cursor: zoom-in;
    transition: filter 0.3s ease;
}

.detail-view.active .dynamic-text:hover {
    filter: brightness(1.3) drop-shadow(0 0 8px rgba(0, 240, 255, 0.6));
}

#zoom-overlay.active #zoom-card .dynamic-text {
    pointer-events: auto !important;
    cursor: zoom-out !important;
}

/* ==========================================================================
   HUD DECORATIONS FOR ZOOM CARD
   ========================================================================== */
.hud-decoration {
    position: absolute;
    left: 0;
    width: 100%;
    padding: 0 30px;
    display: flex;
    align-items: center;
    gap: 12px;
    pointer-events: none;
    opacity: 0.7;
}

.hud-top {
    top: 20px;
}

.hud-bottom {
    bottom: 20px;
    justify-content: flex-end;
}

.hud-dot {
    width: 6px;
    height: 6px;
    background: var(--neon-blue);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--neon-blue);
    animation: pulseDot 2s infinite;
}

.hud-line {
    flex-grow: 1;
    height: 1px;
    background: linear-gradient(90deg, rgba(0, 240, 255, 0.6), transparent);
}

.hud-bottom .hud-line {
    background: linear-gradient(270deg, rgba(0, 240, 255, 0.6), transparent);
}

.hud-text {
    font-family: var(--font-heading);
    font-size: 0.65rem;
    color: var(--neon-blue);
    letter-spacing: 0.2rem;
    text-transform: uppercase;
    text-shadow: 0 0 8px rgba(0, 240, 255, 0.5);
}

@keyframes pulseDot {
    0% { opacity: 0.4; transform: scale(0.8); }
    50% { opacity: 1; transform: scale(1.3); }
    100% { opacity: 0.4; transform: scale(0.8); }
}

/* ==========================================================================
   BEAUTIFUL ZOOMED TEXT
   ========================================================================== */
.beautiful-zoomed-text {
    font-family: var(--font-heading) !important;
    text-align: center !important;
    background: linear-gradient(135deg, #ffffff 0%, #a5f3fc 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    text-shadow: 0 0 30px rgba(0, 240, 255, 0.4), 0 0 10px rgba(0, 240, 255, 0.2) !important;
    letter-spacing: 0.03em !important;
    font-weight: 400 !important;
    padding: 0 20px !important;
    line-height: 1.5 !important;
    position: relative !important;
    z-index: 2 !important;
}

#zoom-card.glass-panel {
    background: linear-gradient(135deg, rgba(20, 25, 45, 0.6) 0%, rgba(5, 5, 15, 0.8) 100%) !important;
    backdrop-filter: blur(25px) !important;
    -webkit-backdrop-filter: blur(25px) !important;
    border: 1px solid rgba(0, 240, 255, 0.4) !important;
    border-top: 1px solid rgba(0, 240, 255, 0.7) !important;
    border-left: 1px solid rgba(0, 240, 255, 0.6) !important;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.8),
        0 0 50px rgba(0, 240, 255, 0.15), 
        inset 0 0 30px rgba(0, 240, 255, 0.1) !important;
    border-radius: 20px !important;
    position: relative;
    overflow: hidden !important;
}

#zoom-card.glass-panel::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.05) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg);
    animation: glassShine 6s infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes glassShine {
    0% { left: -150%; }
    20% { left: 200%; }
    100% { left: 200%; }
}
