
* { font-family: 'Noto Sans SC', sans-serif; }
.gradient-text {
    background: linear-gradient(135deg, #C9A227, #D4AF37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero-bg {
    background: linear-gradient(180deg, #0D0D0D 0%, #1A1A1A 50%, #0D0D0D 100%);
}
.card-hover {
    transition: all 0.3s ease;
}
.card-hover:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(201, 162, 39, 0.15);
}
.nav-link {
    position: relative;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #C9A227;
    transition: width 0.3s ease;
}
.nav-link:hover::after {
    width: 100%;
}
.mobile-menu {
    transition: transform 0.3s ease;
}
.timeline-line {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, #C9A227, #D4AF37);
}
