@import url('https://fonts.googleapis.com/css2?family=Prompt:wght@300;400;500;600;700&display=swap');

@font-face {
    font-family: 'Gotham-Bold';
    src: url('fonts/Gotham-Bold.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

:root {
    --font-display: 'Gotham-Bold', 'Prompt', sans-serif;
    --font-thai: 'Prompt', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: var(--font-thai);
    background-color: #070C26;
    color: #ffffff;
    -webkit-font-smoothing: antialiased;
}

* {
    box-sizing: border-box;
}

a, .btn-link {
    color: #00e5ff;
    text-decoration: none;
}

a:hover {
    color: #69f0ae;
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
}
::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.4);
}