/* Raafay Funny CSS Overrides */

/* Funny Animations */
@keyframes spin {
    100% { transform: rotate(360deg); }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-30px); }
}

@keyframes wobble {
    0%, 100% { transform: rotate(-5deg); }
    50% { transform: rotate(5deg) scale(1.1); }
}

@keyframes rainbow {
    0% { color: #ff0000; text-shadow: 0 0 10px #ff0000; }
    20% { color: #ff7f00; text-shadow: 0 0 10px #ff7f00; }
    40% { color: #ffff00; text-shadow: 0 0 10px #ffff00; }
    60% { color: #00ff00; text-shadow: 0 0 10px #00ff00; }
    80% { color: #0000ff; text-shadow: 0 0 10px #0000ff; }
    100% { color: #8b00ff; text-shadow: 0 0 10px #8b00ff; }
}

.spin-fast { animation: spin 2s linear infinite; }
.spin-slow { animation: spin 8s linear infinite; }
.bounce-fast { animation: bounce 1s ease-in-out infinite; }
.wobble-fast { animation: wobble 0.5s ease-in-out infinite; }
.wobble-slow { animation: wobble 3s ease-in-out infinite; }
.rainbow-text { animation: rainbow 3s linear infinite; }

.raafay-header {
    text-align: center;
    margin-bottom: 40px;
    font-family: var(--font-heading);
}

.raafay-header h1 {
    font-size: clamp(3rem, 6vw, 5rem);
    margin: 0;
}

.raafay-header h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin: 0;
}

.images-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.funny-img {
    width: 250px;
    height: 250px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px dashed #00ffff;
    box-shadow: 0 0 40px #ff00ff;
}

.funny-card {
    background: rgba(20, 0, 40, 0.8) !important;
    border: 3px solid #ff00ff !important;
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.5) !important;
}

.funny-tag {
    background: #ffff00 !important;
    color: #000 !important;
    border: 2px solid #ff0000 !important;
    font-weight: bold;
    font-size: 14px !important;
    animation: wobble 2s infinite;
}

.marquee-header {
    color: #ffff00;
    font-family: var(--font-heading);
    font-weight: bold;
    animation: rainbow 1s infinite;
    flex-grow: 1;
    text-align: center;
}
