/* Footer StoryBank - Contour Royal */
.storybank-footer {
    background: linear-gradient(135deg, #111827 0%, #1f2937 50%, #111827 100%);
    padding: 30px 20px 20px;
    text-align: center;
    position: relative;
    margin-top: auto;
}

.storybank-footer .quote-container {
    border: 4px solid transparent;
    background: 
        linear-gradient(#1f2937, #1f2937) padding-box,
        linear-gradient(45deg, #ffd700, #4facfe, #00f2fe, #ffd700) border-box;
    border-radius: 35px;
    padding: 35px 30px 25px;
    position: relative;
    max-width: 800px;
    margin: 0 auto 15px auto;
    box-shadow: 
        0 0 25px rgba(79, 172, 254, 0.3),
        inset 0 0 15px rgba(255, 215, 0, 0.1);
}

.storybank-footer .quote-container::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 43px;
    z-index: -1;
}

.storybank-footer .quote {
    font-size: 1.4rem;
    background: linear-gradient(45deg, #f8fafc, #4facfe, #00f2fe, #ffd700, #f8fafc);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: slowRainbow 14s ease-in-out infinite;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 20px;
    direction: rtl;
}

.storybank-footer .quote-line {
    display: block;
    margin-bottom: 8px;
}

.storybank-footer .quote-line:last-child {
    margin-bottom: 0;
}

.storybank-footer .attribution {
    font-size: 0.95rem;
    color: #ffd700;
    font-style: italic;
    text-align: left;
    border-top: 2px solid rgba(255, 215, 0, 0.4);
    padding-top: 15px;
    font-weight: 500;
    direction: rtl;
}

.storybank-footer .attribution a {
    color: #ffd700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.storybank-footer .attribution a:hover {
    color: #4facfe;
    text-shadow: 0 0 8px rgba(79, 172, 254, 0.6);
}

.storybank-footer .copyright {
    font-size: 0.8rem;
    color: #6b7280;
    direction: rtl;
}

@keyframes slowRainbow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Responsive */
@media (max-width: 768px) {
    .storybank-footer {
        padding: 25px 15px 15px;
    }
    
    .storybank-footer .quote-container {
        padding: 25px 20px 20px;
        border-radius: 25px;
    }
    
    .storybank-footer .quote {
        font-size: 1.1rem;
    }
    
    .storybank-footer .attribution {
        font-size: 0.85rem;
        text-align: center;
    }
    
    .storybank-footer .copyright {
        font-size: 0.75rem;
    }
}

/* Pause animation au hover pour la lecture */
.storybank-footer .quote:hover {
    animation-play-state: paused;
} 