body {
    font-family: 'Inter', sans-serif;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Dynamic glow and gradients */
.glow-cyan {
    box-shadow: 0 0 25px rgba(6, 182, 212, 0.4);
}

.glow-purple {
    box-shadow: 0 0 25px rgba(139, 92, 246, 0.4);
}

.text-gradient {
    background: linear-gradient(135deg, #06b6d4 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Hide scrollbar but keep functionality */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}

.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Font sizing safety guardrail */
.text-2xs {
    font-size: 0.65rem;
}
.text-3xs {
    font-size: 0.55rem;
}