/* ================================================================
   TSBC Global Styles
   Shared base styles used across all pages.
   ================================================================ */

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

/* ── Base ──────────────────────────────────────────────────────── */
html, body {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #0a0a0a;
    color: white;
    margin: 0;
    scroll-behavior: smooth;
}

/* ── Glass Card Utility ───────────────────────────────────────── */
.glass {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

/* ── Custom Scrollbar ─────────────────────────────────────────── */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0a0a0a;
}

::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #dc2626;
}

/* ── Navigation Links ─────────────────────────────────────────── */
.nav-link {
    cursor: pointer;
    transition: all 0.3s ease;
}

/* ── Page Transition Animation ────────────────────────────────── */
.page-transition {
    animation: fadeIn 0.4s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── Utility ──────────────────────────────────────────────────── */
[hidden] {
    display: none !important;
}
