#knk-splash {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: #000;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 48px 24px 32px;
    overflow-y: auto;
    transition: opacity 0.4s ease;
}

#knk-splash.knk-splash-hiding {
    opacity: 0;
    pointer-events: none;
}

.knk-splash-inner {
    max-width: 520px;
    width: 100%;
    font-family: 'Roboto', sans-serif;
}

/* Title — h1 */
.knk-splash-title {
    color: #fff;
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.25;
    margin: 0 0 10px;
    opacity: 0;
    transform: translateY(10px);
    animation: knk-fade-in 0.45s ease 0.05s forwards;
}

/* Subtitle — category chips or city name */
.knk-splash-subtitle {
    color: #aaa;
    font-size: 0.9rem;
    margin: 0 0 14px;
    opacity: 0;
    transform: translateY(8px);
    animation: knk-fade-in 0.45s ease 0.2s forwards;
}

/* Description paragraph */
.knk-splash-desc {
    color: #888;
    font-size: 0.85rem;
    line-height: 1.55;
    margin: 0 0 16px;
    opacity: 0;
    transform: translateY(6px);
    animation: knk-fade-in 0.45s ease 0.35s forwards;
}

/* List of top locations or cities */
.knk-splash-list {
    list-style: none;
    margin: 0 0 8px;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 6px 12px;
    opacity: 0;
    animation: knk-fade-in 0.45s ease 0.5s forwards;
}

.knk-splash-list li {
    color: #666;
    font-size: 0.82rem;
    position: relative;
}

.knk-splash-list li:not(:last-child)::after {
    content: '·';
    position: absolute;
    right: -8px;
    color: #444;
}

@keyframes knk-fade-in {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.knk-splash-loader {
    margin-top: 28px;
    width: 32px;
    height: 32px;
    border: 2px solid rgba(255, 255, 255, 0.12);
    border-left-color: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    animation: knk-spin 0.9s linear infinite;
    opacity: 0;
    animation-delay: 0.65s;
    animation-fill-mode: forwards;
}

@keyframes knk-spin {
    to { transform: rotate(360deg); }
}
