/* Corpo principale */
body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(135deg, #001f3f, #005f99);
    color: #ffffff;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

/* Contenitore principale */
.landing-container {
    text-align: center;
    max-width: 800px;
    animation: fadeIn 2s ease-in-out;
}

/* Branding */
.branding h1 {
    font-size: 4.5rem;
    font-weight: bold;
    text-transform: uppercase;
    margin: 0;
    letter-spacing: 0.05em;
}

.branding .guest {
    color: #00d1ff;
    font-weight: 300;
    text-transform: lowercase;
}

.branding .id {
    color: #ffffff;
    font-weight: 700;
    text-shadow: 0px 0px 15px #00d1ff;
}

.branding h2 {
    font-size: 1.8rem;
    color: #b0e6ff;
    margin: 10px 0 20px;
}

/* Contenitore grafico */
.graphic {
    margin: 30px 0;
    position: relative;
    width: 300px;
    height: 300px;
    margin: 0 auto;
}

/* Scanner */
.scanner-container {
    position: relative;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    box-shadow: 0px 0px 20px rgba(255, 255, 255, 0.3);
    overflow: hidden;
}

/* Silhouette del mezzo busto */
.bust {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    fill: rgba(255, 255, 255, 0.2);
}

/* Serratura */
.lock {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    fill: none;
    stroke: rgba(255, 255, 255, 0.4);
    stroke-dasharray: 440;
    stroke-dashoffset: 440;
    animation: lockAnimation 4s ease-in-out infinite;
}

/* Linea di scansione */
.scan-line {
    position: absolute;
    width: 100%;
    height: 3px;
    background: rgba(0, 209, 255, 0.8);
    animation: scan 4s linear infinite;
    z-index: 2;
}

/* Animazioni */
@keyframes scan {
    0% {
        top: 0%;
    }
    50% {
        top: 50%;
    }
    100% {
        top: 100%;
    }
}

/* @keyframes lockAnimation {
    0% {
        stroke-dashoffset: 440;
    }
    50% {
        stroke-dashoffset: 0;
    }
    100% {
        stroke-dashoffset: 440;
    }
} */

/* Testo */
p.coming-soon {
    font-size: 1.2rem;
    color: #b0e6ff;
    margin: 10px 0 30px;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 1rem;
    font-size: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 10px 20px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.3);
}

.countdown span {
    font-weight: bold;
    font-size: 2rem;
    color: #00d1ff;
    text-shadow: 0px 0px 5px #00d1ff;
}
