body {
    font-family: 'Inter', sans-serif;
    background-color: #0f172a;
    color: #f8fafc;
}
.tech-font {
    font-family: 'Orbitron', sans-serif;
}
.card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -5px rgba(56, 189, 248, 0.25);
}
.text-gradient {
    background: linear-gradient(to right, #38bdf8, #818cf8);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.section-header {
    position: relative;
    display: inline-block;
    margin-bottom: 3rem;
}
.section-header::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: #38bdf8;
    border-radius: 2px;
}
/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #0f172a;
}
::-webkit-scrollbar-thumb {
    background: #334155;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #475569;
}

/* Scroll Animation Classes */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Endgame Highlight */
.highlight {
    animation: highlightPulse 2s ease-in-out;
}

@keyframes highlightPulse {
    0% { background-color: rgba(56, 189, 248, 0.1); border-color: rgba(56, 189, 248, 0.3); }
    50% { background-color: rgba(56, 189, 248, 0.3); border-color: rgba(56, 189, 248, 0.8); }
    100% { background-color: rgba(56, 189, 248, 0.1); border-color: rgba(56, 189, 248, 0.3); }
}

/* Endgame Link Styling */
.endgame-link {
    color: #38bdf8;
    text-decoration: underline;
    text-decoration-color: #38bdf8;
    transition: color 0.3s ease;
}

.endgame-link:hover {
    color: #0ea5e9;
    text-decoration-color: #0ea5e9;
}