/* General resets and font */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background: #0d1117;
    color: #f6f8fa;
}

    /* Hide scrollbars for a modern look */
    body::-webkit-scrollbar {
        width: 0.5em;
        background: transparent;
    }

body {
    min-height: 100vh;
    overflow-x: hidden;
    background: #0d1117;
}

/* Error message UI (Blazor default) */
#blazor-error-ui {
    background: #161b22;
    color: #fff;
    border: 1px solid #e01111;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 0.75rem 1.5rem;
    z-index: 1000;
    display: none;
}

    #blazor-error-ui .dismiss {
        cursor: pointer;
        position: absolute;
        right: 1.25rem;
        top: 0.5rem;
    }

/* Custom landing styling */
.landing-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
    background: rgba(22, 27, 34, 0.98);
    border-radius: 2rem;
    box-shadow: 0 6px 36px #007fff30;
    margin: 5vh 0 0 0;
    padding: 2.5rem 1rem 2rem 1rem;
    transition: box-shadow 0.3s;
}

.logo-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    user-select: none;
}

.logo-img {
    height: 70px;
    width: 70px;
    border-radius: 20%;
    box-shadow: 0 0 16px #00aaff88;
    background: #111;
    padding: 0.25rem;
    transition: box-shadow 0.3s;
}

    .logo-img:hover {
        box-shadow: 0 0 32px #79c0ff88, 0 0 8px #2f81f7;
    }

.logo-text {
    font-size: 2.7rem;
    color: #fff;
    font-weight: 900;
    letter-spacing: -2px;
    text-shadow: 0 2px 18px #2f81f7cc;
    font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
}

h1 {
    color: #f6f8fa;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 0.7rem;
    text-align: center;
    letter-spacing: -1px;
    font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
}

.subtitle {
    color: #a4b1cd;
    font-size: 1.18rem;
    margin-bottom: 1.8rem;
    text-align: center;
}

.powered {
    margin-top: 1.4rem;
    font-size: 1.12rem;
    color: #3fb950;
    background: #161b22;
    border-radius: 0.6rem;
    padding: 0.5rem 1.2rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 0 14px #00ff8877;
    user-select: none;
    font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
}

/* Responsive adjustments */
@media (max-width: 700px) {
    .landing-container {
        padding: 1rem 0.2rem;
        min-width: 0;
        border-radius: 1.2rem;
    }

    .logo-img {
        height: 48px;
        width: 48px;
    }

    .logo-text {
        font-size: 1.45rem;
    }

    h1 {
        font-size: 1.3rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .powered {
        font-size: 1rem;
        padding: 0.35rem 0.7rem;
    }
}

/* Remove unwanted Bootstrap and sample content styles */
a, .btn-link, .btn-primary, .btn, .content,
.valid.modified:not([type=checkbox]),
.invalid,
.validation-message,
.loading-progress, .loading-progress-text, code {
    all: unset;
    display: revert;
}
