@tailwind base;
@tailwind components;
@tailwind utilities;

:root {
    --bg-color: #050505;
    --accent-white: #ffffff;
    --text-muted: #a3a3a3;
}

body {
    background-color: var(--bg-color);
    color: var(--text-muted);
}

.text-gradient {
    background: linear-gradient(to right, #ffffff, #525252);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.glass-card {
    background: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.glass-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.timeline-line {
    background: linear-gradient(to bottom, transparent, #262626, #525252, #262626, transparent);
}