:root {
    --color-background: #080A0C;
    --color-surface: #111418;
    --color-surface-light: #1C2128;
    --color-primary: #00F5FF;
    --color-primary-dark: #40E0FF;
    --color-secondary: #7000FF;
    --color-text-body: #94A3B8;
}

/* Glassmorphism Utility */
.glass {
    background-color: rgba(11, 13, 16, 0.7);
    /* bg-background/70 */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Card Hover Effects */
.card-hover {
    transition: all 0.3s ease;
}

.card-hover:hover {
    border-color: rgba(0, 245, 255, 0.5);
    /* border-primary/50 */
    box-shadow: 0 0 30px -10px rgba(0, 245, 255, 0.3);
}

/* Scroll Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(2rem);
    /* translate-y-8 */
    transition: all 0.7s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Custom Scrollbar (Optional but professional) */
::-webkit-scrollbar {
    width: 8px;
}

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

::-webkit-scrollbar-thumb {
    background: var(--color-surface-light);
    border-radius: 4px;
}

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