/* Дополнения поверх Tailwind. */
html { -webkit-text-size-adjust: 100%; }
body { overflow-x: hidden; }

/* Мягкое свечение фоном, как на swagwater.xyz. */
body::before {
    content: "";
    position: fixed;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    max-width: 100%;
    height: 400px;
    background: radial-gradient(closest-side, rgba(124, 92, 255, 0.15), transparent);
    pointer-events: none;
    z-index: 0;
}
main, nav, footer { position: relative; z-index: 1; }

input:focus { outline: none; }

/* Тонкий скроллбар для таблиц. */
.overflow-x-auto::-webkit-scrollbar { height: 8px; }
.overflow-x-auto::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.12); border-radius: 8px; }
