:root {
    --background-primary: #000000;
    --background-secondary: #000000;
    --background-tertiary: #000000;
    --background-accent: #000000;
    --background-floating: #000000;
    --text-normal: #dcddde;
    --text-muted: #72767d
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Roboto, sans-serif
}

body {
    height: 100%;
    width: 100%;
    min-height: 100vh;
    background-color: var(--background-primary);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    color: var(--text-normal)
}

#loading {
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100%;
    background-color: var(--background-primary);
    display: flex;
    justify-content: center;
    align-items: center
}

#loading>div {
    width: 32px;
    height: 32px;
    border: 4px solid var(--text-normal);
    border-left-color: transparent;
    border-right-color: transparent;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spinner .5s infinite linear
}

#wrapper {
    width: 100%;
    height: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

footer {
    position: fixed;
    bottom: 16px;
    right: 16px;
    user-select: none
}

.tippy-box[data-theme~=dark] {
    background-color: #141414
}

.tippy-box[data-theme~=dark][data-placement^=top]>.tippy-arrow::before {
    border-top-color: #141414
}

.tippy-box[data-theme~=dark][data-placement^=bottom]>.tippy-arrow::before {
    border-bottom-color: #141414
}

.tippy-box[data-theme~=dark][data-placement^=left]>.tippy-arrow::before {
    border-left-color: #141414
}

.tippy-box[data-theme~=dark][data-placement^=right]>.tippy-arrow::before {
    border-right-color: #141414
}

@keyframes spinner {
    from {
        transform: rotateZ(0)
    }

    to {
        transform: rotateZ(360deg)
    }
}

#entry-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #000000;
    color: #ffffff;
    z-index: 999;
    backdrop-filter: none;
}

#entry-overlay.hidden { display: none; }

#entry-overlay .overlay-content {
    max-width: 600px;
    padding: 24px 32px;
    border-radius: 10px;
    border: none;
    box-shadow: none;
    background: transparent;
}

#entry-overlay h1 {
    font-family: Montserrat, sans-serif;
    font-size: 28px;
    margin-bottom: 10px
}

#entry-overlay p { margin-bottom: 12px; color: #dcddde }

#enter-btn {
    padding: 0;
    border-radius: 0;
    border: none;
    background: transparent;
    color: #ffffff;
    font-weight: 700;
    font-size: 22px;
    cursor: pointer;
    transition: opacity .2s ease;
    outline: none;
    box-shadow: none;
    appearance: none;
    -webkit-appearance: none;
    text-decoration: none;
}
#enter-btn:focus,
#enter-btn:focus-visible,
#enter-btn:active {
    outline: none;
    box-shadow: none;
}
#enter-btn:hover { opacity: 0.85 }

#bg-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.25;
}