:root {
    --bg-color: #000000;
    --text-primary: #a1a1aa; /* Zinc 400 grayish text */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    user-select: none;
    -webkit-user-select: none;
    -webkit-user-drag: none;
    draggable: false;
    cursor: default;
}

/* Remove blue selection highlight */
::selection {
    background: transparent;
    color: inherit;
}

::-moz-selection {
    background: transparent;
    color: inherit;
}


body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-family);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.maintenance-container {
    padding: 32px;
    max-width: 600px;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.logo {
    width: 160px;
    height: auto;
    opacity: 0.9;
    pointer-events: none;
}

.status-text {
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-primary);
    letter-spacing: -0.01em;
    pointer-events: none;
}
