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

:root {
    --pulse-dark: #0f172a;
    --pulse-card: #1e293b;
    --pulse-primary: #8b5cf6;
    --pulse-secondary: #06b6d4;
    --pulse-accent: #f43f5e;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--pulse-dark);
    color: #f8fafc;
    overflow-x: hidden;
}

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

::-webkit-scrollbar-track {
    background: var(--pulse-dark);
}

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

::-webkit-scrollbar-thumb:hover {
    background: var(--pulse-primary);
}

/* Utilities */
.hide-scrollbar::-webkit-scrollbar {
    display: none;
}

.hide-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Animations */
.fade-in {
    animation: fadeIn 0.5s ease-in-out;
}

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

/* Spoiler handling */
.spoiler-content {
    display: none;
}

.spoiler-content.visible {
    display: block;
    animation: fadeIn 0.3s ease-in;
}

.spoiler-warning.hidden {
    display: none;
}