/* Custom Gold Gradient Text */
.text-gradient-gold {
    background: linear-gradient(to right, #C5A028, #E5C565, #C5A028);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: shine 4s linear infinite;
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

/* Glass / Card Effects */
.glass-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.gold-border-bottom {
    position: relative;
}

.gold-border-bottom::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: #C5A028;
    transition: width 0.3s ease;
}

.gold-border-bottom:hover::after {
    width: 100%;
}