/* Add these styles to your existing effects.css */
.gradient-border-animation {
    position: relative;
    background: linear-gradient(60deg, #ff7d00, #00cc00, #ff7d00);
    background-size: 200% 200%;
    animation: gradient-shift 2s linear infinite;
}

@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.pulse-ring {
    animation: pulse-ring 1.5s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

@keyframes pulse-ring {
    0% {
        transform: scale(0.95);
        opacity: 0.5;
    }
    50% {
        transform: scale(1);
        opacity: 0.3;
    }
    100% {
        transform: scale(0.95);
        opacity: 0.5;
    }
}

.floating-subtle {
    animation: floating-subtle 3s ease-in-out infinite;
}

@keyframes floating-subtle {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
    100% { transform: translateY(0px); }
}

.shine-effect {
    position: relative;
    overflow: hidden;
}

.shine-effect::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to bottom right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.1) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

.highlight-pulse {
    animation: highlight-pulse 2s infinite;
}

@keyframes highlight-pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 125, 0, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(255, 125, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 125, 0, 0); }
}

.bubble-float {
    position: relative;
}

.bubble {
    position: absolute;
    background: rgba(255, 125, 0, 0.1);
    border-radius: 50%;
    animation: float-up 3s ease-in infinite;
}

@keyframes float-up {
    0% { transform: translateY(0) scale(1); opacity: 0.8; }
    100% { transform: translateY(-100px) scale(0); opacity: 0; }
}
