html, body {
    margin: 0;
    padding: 0;
    background-color: #000000;
}

#loading-skeleton {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.splash-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 800px;
    margin-bottom: 2rem;
}

.splash-logo {
    width: 100%;
    max-width: min(53.333vw, 461px);
    height: auto;
    animation: fadePulse 2s ease-in-out infinite;
}

.spacer-placeholder {
    min-height: 240px;
    width: 100%;
    max-width: 600px;
    display: flex;
    align-items: center;
}

.splash-decoration {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 6rem;
    height: auto;
    z-index: 1;
}

@keyframes fadePulse {
    0% { opacity: 0.15; }
    30% { opacity: 1; }
    70% { opacity: 1; }
    100% { opacity: 0.15; }
}

.app-loaded #loading-skeleton {
    display: none;
}
