body, html {
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', Arial, sans-serif;
    height: 100%;
}

#site-loading-header {
    position: fixed;
    top: 0;
    left: 0;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    transform: none;
    font-size: 70px;
    font-weight: 400;
    text-align: center;
    font-family: "BBH Sans Hegarty", serif;
    background: #ff1e00;
    background: -webkit-linear-gradient(67deg, rgba(255, 30, 0, 1) 0%, rgba(255, 102, 0, 1) 50%, rgba(247, 58, 0, 1) 100%);
    background: -moz-linear-gradient(67deg, rgba(255, 30, 0, 1) 0%, rgba(255, 102, 0, 1) 50%, rgba(247, 58, 0, 1) 100%);
    background: linear-gradient(67deg, rgba(255, 30, 0, 1) 0%, rgba(255, 102, 0, 1) 50%, rgba(247, 58, 0, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FF1E00", endColorstr="#F73A00", GradientType=0);
    z-index: 10;
    width: 101vw;
    height: 101vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.letter {
    display: inline-block;
    position: relative;
    color: black;
    background: black;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#construction-banner {
    width: 100vw;
    padding: 1rem;
    pointer-events: none;
    content: '';
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 342 36"><g transform="translate(0 0)"><path d="M 5.456 0 C -54.232 0 396.772 0 336.428 0 C 276.084 0 312.723 36 253.697 36 C 194.671 36 108.098 36 89.438 36 C 27.285 36 65.144 0 5.456 0 Z" fill="%23111111"></path></g></svg>');
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: top center;
    font-family: 'Outfit', Arial, sans-serif;
    font-size: 1rem;
    position: fixed;
    z-index: 101;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    opacity: 0;
    transform: translateY(-100%);
    transition: opacity 0.8s, transform 0.5s cubic-bezier(.65,.01,.80,1.13);
    margin: auto -0.5rem;
}
.banner-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    background: #2e2e2e;
    border-radius: 70%;
    box-shadow: 0 0 1px #2e2e2e;
    animation: dot-pulse 0.7s infinite alternate;
    transition: background 0.7s, box-shadow 0.7s;
}
@keyframes dot-pulse {
    to { box-shadow: 0 0 22px #2e2e2e; }
}

.banner-text {
    color: #ffffff;
    opacity: 1;
}
.banner-letter {
    color: #ffffff;
    font-weight: 300;
    background: none;
    background-clip: unset;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
    left: 0;
    bottom: 0.72rem;
    transform: translateY(2px);
}
#construction-banner.show {
    opacity: 1;
    transform: translateY(0);
}