/* --- COMING SOON SPECIFIC --- */

/* Body styles inherited from base.css */

/* Grana dello sfondo */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.05'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 2;
}

.container {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
}

/* --- LOGO STYLES --- */
.logo-container {
    position: absolute;
    top: calc(50% - 350px); 
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.main-logo {
    width: 165px; 
    height: auto;
}

.mini-logo-container {
    position: absolute;
    top: calc(50% - 180px); /* Adjusted -60px further up from -120px */
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.mini-logo {
    width: 36px; 
    height: auto;
}

/* Contenitore canvas 3D */
#canvas-container {
    width: 200px;
    height: 200px;
    margin-bottom: 40px;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

h1 {
    color: #080808;
    font-size: 2rem;
    margin: 0;
    padding-bottom: 10px;
    opacity: 0;
    text-transform: lowercase;
    transition: opacity 1.5s ease-in-out, filter 0.3s ease-in-out, color 0.3s ease-in-out;
}

h1:hover {
    filter: blur(1px);
    color: #B8B8B8;
    opacity: 0.8;
}

svg#center-line {
    width: 99vw;
    height: 8px;
    overflow: visible;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

#tagline-text {
    color: #080808;
    font-size: 10pt;
    margin-top: 15px;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    text-transform: lowercase;
}

#hidden-corner {
    position: fixed;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    z-index: 9998;
    cursor: none;
}

#hidden-corner a {
    display: block;
    width: 100%;
    height: 100%;
    text-indent: -9999px;
}

/* --- Controlli Audio & Effetti --- */
.audio-controls {
    position: absolute;
    bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    font-size: 0.8rem;
    text-transform: lowercase;
    opacity: 0; 
    transition: opacity 0.5s ease-in-out;
}

.audio-controls button {
    background: none;
    border: none;
    font-family: 'Rajdhani', sans-serif;
    font-size: inherit;
    color: #080808;
    cursor: none;
    transition: color 0.3s ease-in-out, filter 0.3s ease-in-out;
}

.audio-controls button:hover {
    color: #B8B8B8;
    filter: blur(1px);
}

.audio-controls button.active {
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 6px;
}