/* HızlıOku özel stilleri */
.hero-gradient {
    background: linear-gradient(120deg, #6366F1 0%, #8B5CF6 50%, #EC4899 100%);
    position: relative;
    overflow: hidden;
}

.text-gradient {
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    background-image: linear-gradient(135deg, #6366F1, #EC4899);
}

/* Yüklenmemiş görseller için arkaplan renkleri */
.placeholder-bg {
    background-color: #6366F1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
}

/* Animasyonlar */
.animate-float {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

.animate-pulse-slow {
    animation: pulse 4s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
} 