/*  
Theme Name: PapyStream62 Theme Full
Theme URI: https://papystream62.be
Author: PapyStream62
Author URI: https://papystream62.be
Description: Un thème racing pour le site de PapyStream62 avec animations complètes
Version: 1.3
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: papystream62-theme-full
*/

body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background-color: #0b0b0b;
    color: #fff;
    text-align: center;
    overflow-x: hidden;
}

header {
    background-color: #c00000;
    padding: 1rem;
    position: relative;
    overflow: hidden;
    animation: slideIn 1s ease-out;
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
}

header h1 {
    margin: 0;
    font-size: 2.5rem;
    animation: slideIn 1s ease-out;
}

.banner {
    width: 100%;
    max-width: 1000px;
    margin: 1rem auto;
    animation: fadeIn 1.5s ease-out;
    box-shadow: 0 15px 30px rgba(0,0,0,0.7);
}

.banner img {
    width: 100%;
    border-radius: 12px;
    animation: zoomIn 1.2s ease-out;
    box-shadow: 0 15px 30px rgba(0,0,0,0.7);
}

.links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem auto;
    max-width: 400px;
    animation: slideUp 1.2s ease-out;
}

.links a {
    background-color: #d10000;
    color: white;
    padding: 1rem;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.2rem;
    transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
    text-shadow: 0 0 5px #fff, 0 0 10px #f00, 0 0 15px #f00, 0 0 20px #f00;
}

.links a:hover {
    background-color: #a00000;
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 10px 30px rgba(0,0,0,0.7);
    text-shadow: 0 0 10px #fff, 0 0 20px #f00, 0 0 30px #f00, 0 0 40px #f00;
}

footer {
    margin-top: 2rem;
    color: #888;
    animation: fadeIn 1.5s ease-out;
}

/* Animations */
@keyframes slideIn {
    from { transform: translateX(-100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes slideUp {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes zoomIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.logo {
    width: 250px;
    margin: 0 auto;
    display: block;
    margin-top: 20px;
    animation: zoomIn 1s ease-out;
    box-shadow: 0 15px 30px rgba(0,0,0,0.7);
    filter: drop-shadow(0 0 15px #f00) drop-shadow(0 0 30px #f00) drop-shadow(0 0 45px #f00);
}
