/* ═══════════════════════════════════════════════════════════════
   XPRESS GENOMICS — SPLASH
   Self-contained overlay, removed after animation.
   ─────────────────────────────────────────────────────────────── */

.xg-splash {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: #0a0a14;
    transition: opacity 0.8s ease;
    overflow: hidden;
}

.xg-splash.xg-splash-hidden {
    opacity: 0;
    pointer-events: none;
}

.xg-splash canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
}

.xg-splash-skip {
    position: absolute;
    top: 28px;
    right: 32px;
    z-index: 2;
    font-family: 'SuisseIntl', Helvetica, Arial, sans-serif;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px 12px;
    transition: color 0.25s ease;
}

.xg-splash-skip:hover,
.xg-splash-skip:focus {
    color: #ffffff;
    outline: none;
}

/* Prevent body scroll while splash is active */
body.xg-splash-active {
    overflow: hidden;
}

@media (max-width: 768px) {
    .xg-splash-skip {
        top: 20px;
        right: 20px;
        font-size: 10px;
    }
}
