#intro-overlay {
    position: fixed;
    inset: 0;
    background: #000;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}
#intro-logo-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    transform-origin: top left;
}
#intro-logo {
    width: 110px;
    height: 110px;
    object-fit: contain;
    transform-origin: top left;
    filter: drop-shadow(0 0 30px rgba(255,255,255,0.25));
}
#intro-name {
    font-family: 'Inter', 'DM Sans', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    letter-spacing: 10px;
    text-transform: uppercase;
    white-space: nowrap;
}
#cursor-blink {
    display: inline-block;
    animation: blink 0.7s step-end infinite;
    color: #4fc3f7;
    margin-left: 2px;
}
@keyframes blink {
    50% { opacity: 0; }
}

/* Brand name two-tone style matching logo */
.brand-text {
    font-family: 'Inter', 'DM Sans', sans-serif !important;
    font-weight: 900 !important;
    letter-spacing: 6px !important;
    text-transform: uppercase !important;
    font-size: inherit;
}
.brand-aura {
    background: linear-gradient(to right, #0052D4, #4fc3f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    font-weight: 900 !important;
}
.brand-shield {
    background: linear-gradient(to right, #e0e0e0, #ffffff, #e0e0e0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    font-weight: 900 !important;
}
