/* İlk açılış / sayfa yüklenirken boot splash — beyaz ekran yerine */
html.app-booting {
    background: #f1f5f9;
}

.app-boot-loader {
    position: fixed;
    inset: 0;
    z-index: 2147483000;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(900px 420px at 80% -10%, rgba(37, 99, 235, .1), transparent 55%),
        #f1f5f9;
    transition: opacity .28s ease, visibility .28s ease;
    -webkit-font-smoothing: antialiased;
}

.app-boot-loader.is-done {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.app-boot-inner {
    text-align: center;
    padding: 28px 20px;
    max-width: 280px;
}

.app-boot-logo {
    display: block;
    width: auto;
    height: auto;
    max-height: 48px;
    max-width: min(220px, 70vw);
    margin: 0 auto 20px;
    object-fit: contain;
}

.app-boot-name {
    margin: 0 0 20px;
    font-family: Inter, Figtree, system-ui, -apple-system, sans-serif;
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -.03em;
    color: #0b2740;
}

.app-boot-spinner {
    width: 36px;
    height: 36px;
    margin: 0 auto 14px;
    border: 3px solid #dbeafe;
    border-top-color: #2563eb;
    border-radius: 50%;
    animation: appBootSpin .7s linear infinite;
}

.app-boot-text {
    margin: 0;
    font-family: Inter, Figtree, system-ui, -apple-system, sans-serif;
    font-size: .88rem;
    font-weight: 600;
    color: #64748b;
}

@keyframes appBootSpin {
    to { transform: rotate(360deg); }
}
