/* /Components/ConstructionBanner.razor.rz.scp.css */
.construction-banner[b-x15nl9x5dw] {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 14px 40px;
    margin: 0 6px;
    min-width: 260px;
    background: #1a1a1a;
    color: #facc15;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
    border-radius: 4px;
    overflow: hidden;
}

.construction-banner[b-x15nl9x5dw]::before,
.construction-banner[b-x15nl9x5dw]::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 5px;
    background: repeating-linear-gradient(-45deg, #facc15 0 10px, #1a1a1a 10px 20px);
    background-size: 200% 100%;
    animation: cb-stripe-scroll-b-x15nl9x5dw 1.2s linear infinite;
}

.construction-banner[b-x15nl9x5dw]::before {
    top: 0;
}

.construction-banner[b-x15nl9x5dw]::after {
    bottom: 0;
}

.construction-banner__icon[b-x15nl9x5dw] {
    color: #facc15 !important;
    animation: cb-wiggle-b-x15nl9x5dw 1.6s ease-in-out infinite;
}

@keyframes cb-stripe-scroll-b-x15nl9x5dw {
    from {
        background-position: 0 0;
    }
    to {
        background-position: 28px 0;
    }
}

@keyframes cb-wiggle-b-x15nl9x5dw {
    0%, 100% {
        transform: rotate(-12deg);
    }
    50% {
        transform: rotate(12deg);
    }
}

@media (prefers-reduced-motion: reduce) {
    .construction-banner[b-x15nl9x5dw]::before,
    .construction-banner[b-x15nl9x5dw]::after,
    .construction-banner__icon[b-x15nl9x5dw] {
        animation: none;
    }
}
/* /Components/TypewriterText.razor.rz.scp.css */
.typewriter-container[b-fp0w10u0np] {
    display: inline-flex;
    align-items: center;
}

.typewriter-text[b-fp0w10u0np] {
    white-space: pre-wrap;
    word-break: break-word;
    color: var(--mud-palette-secondary);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.typewriter-cursor[b-fp0w10u0np] {
    margin-left: 2px;
    animation: blink-b-fp0w10u0np 1s step-end infinite;
    font-weight: bold;
    color: var(--mud-palette-secondary);
}

@keyframes blink-b-fp0w10u0np {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
}
