/* ================================================================
   Ktown Team — Base Stylesheet
   ================================================================ */

/* --- Reset ------------------------------------------------------- */
*, *::before, *::after {
    box-sizing: border-box;
}

/* --- Scrollbar ---------------------------------------------------- */
::-webkit-scrollbar       { width: 8px; }
::-webkit-scrollbar-track { background: #1a1d72; }
::-webkit-scrollbar-thumb { background: #070A61; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #141669; }

/* --- Base --------------------------------------------------------- */
html, body {
    margin: 0;
    padding: 0;
    font-family: "Sofia Pro", sans-serif;
    font-size: 16px;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: inherit;
}

/* --- Utilities ---------------------------------------------------- */
.click { cursor: pointer; }
.click:hover { color: #FDB322; }

/* --- Animation ---------------------------------------------------- */
@keyframes spin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}
