.pulse-gradient {
    background: linear-gradient(135deg, #FFDD00 0%, #FFA500 100%);
}

.pulse-gradient-text {
    background: linear-gradient(135deg, #FFDD00 0%, #FFA500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.pulse-border-bottom::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #FFDD00 0%, #FFA500 100%);
    transition: width 0.3s ease;
}

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

.glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}
