/* Reset et base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Comic Neue', cursive;
  line-height: 1.6;
  color: #333;
  background-color: #f8f9fa;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Section financement avec arrière-plan comics vif */
.financement-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #74b9ff 0%, #fd79a8 50%, #fdcb6e 100%);
    background-size: 400% 400%;
    animation: comicGradientMove 10s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.financement-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, #333 2.5px, transparent 2.5px),
        radial-gradient(circle at 75% 75%, #333 1.8px, transparent 1.8px);
    background-size: 55px 55px, 85px 85px;
    opacity: 0.1;
    animation: comicPatternMove 20s linear infinite;
}

.financement-section .container {
    position: relative;
    z-index: 2;
}

.financement-title {
    font-family: 'Bangers', cursive;
    font-size: 3.2em;
    color: #fff;
    text-shadow: 4px 4px 0 #333;
    text-align: center;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.financement-subtitle {
    font-size: 1.3em;
    color: #fff;
    text-shadow: 2px 2px 0 #333;
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.financement-option {
    background: #fff;
    border-radius: 20px;
    border: 4px solid #333;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.financement-option:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

.financement-logo {
    width: 150px;
    height: auto;
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
}

.financement-details h2 {
    font-family: 'Bangers', cursive;
    font-size: 2.2em;
    color: #333;
    margin-bottom: 15px;
    text-transform: uppercase;
    text-shadow: 2px 2px 0 #fff;
}

.financement-details p {
    font-size: 1.1em;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.btn-comic {
    display: inline-block;
    padding: 15px 30px;
    font-family: 'Bangers', cursive;
    font-size: 1.2em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 25px;
    border: 3px solid #333;
    background: linear-gradient(135deg, #4ecdc4 0%, #44a08d 100%);
    color: #fff;
    text-shadow: 2px 2px 0 #333;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 
        4px 4px 0 #333,
        8px 8px 0 rgba(0,0,0,0.15);
}

.btn-comic:hover {
    transform: translate(-2px, -2px);
    box-shadow: 
        6px 6px 0 #333,
        12px 12px 0 rgba(0,0,0,0.2);
}

/* Section moyens de paiement */
.payment-methods-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #36d1dc 0%, #5b86e5 50%, #fd79a8 100%);
    background-size: 400% 400%;
    animation: comicGradientMove 12s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.payment-methods-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 30% 70%, #333 2px, transparent 2px),
        radial-gradient(circle at 70% 30%, #333 1.5px, transparent 1.5px);
    background-size: 65px 65px, 95px 95px;
    opacity: 0.1;
    animation: comicPatternMove 25s linear infinite;
}

.payment-methods-section .container {
    position: relative;
    z-index: 2;
}

.payment-title {
    font-family: 'Bangers', cursive;
    font-size: 3.2em;
    color: #fff;
    text-shadow: 4px 4px 0 #333;
    text-align: center;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.payment-subtitle {
    font-size: 1.3em;
    color: #fff;
    text-shadow: 2px 2px 0 #333;
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.payment-card {
    background: #fff;
    border-radius: 20px;
    border: 4px solid #333;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.payment-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

.payment-card.accepted {
    border-color: #27ae60;
    background: linear-gradient(135deg, #d5f5d5 0%, #fff 100%);
}

.payment-card.not-accepted {
    border-color: #e74c3c;
    background: linear-gradient(135deg, #f5d5d5 0%, #fff 100%);
}

.payment-icon {
    font-size: 4em;
    margin-bottom: 20px;
    display: block;
}

.payment-card.accepted .payment-icon {
    color: #27ae60;
}

.payment-card.not-accepted .payment-icon {
    color: #e74c3c;
}

.payment-name {
    font-family: 'Bangers', cursive;
    font-size: 1.8em;
    margin-bottom: 15px;
    text-transform: uppercase;
    color: #333;
}

.payment-status {
    font-size: 1.1em;
    font-weight: bold;
    margin-bottom: 10px;
}

.payment-card.accepted .payment-status {
    color: #27ae60;
}

.payment-card.not-accepted .payment-status {
    color: #e74c3c;
}

.payment-description {
    font-size: 1em;
    color: #666;
    line-height: 1.5;
}

/* Animations pour les trames comics */
@keyframes comicGradientMove {
    0%, 100% { 
        background-position: 0% 50%; 
    }
    50% { 
        background-position: 100% 50%; 
    }
}

@keyframes comicPatternMove {
    0% { 
        transform: translateX(0) translateY(0); 
    }
    25% { 
        transform: translateX(10px) translateY(-10px); 
    }
    50% { 
        transform: translateX(20px) translateY(0); 
    }
    75% { 
        transform: translateX(10px) translateY(10px); 
    }
    100% { 
        transform: translateX(0) translateY(0); 
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .financement-title, .payment-title {
        font-size: 2.5em;
    }
    
    .financement-subtitle, .payment-subtitle {
        font-size: 1.1em;
    }
    
    .financement-details h2 {
        font-size: 1.8em;
    }
    
    .payment-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .financement-section, .payment-methods-section {
        padding: 80px 0;
    }
    
    .financement-title, .payment-title {
        font-size: 2em;
    }
    
    .financement-option {
        padding: 30px 20px;
    }
    
    .payment-card {
        padding: 30px 20px;
    }
}
        .comic-title {
            font-family: 'Bangers', cursive;
            font-size: 3.5rem;
            color: #fff;
            text-shadow: 
                4px 4px 0px #000,
                -1px -1px 0px #000,
                1px -1px 0px #000,
                -1px 1px 0px #000,
                1px 1px 0px #000;
            margin-bottom: 20px;
            transform: perspective(500px) rotateX(15deg);
            text-align: center;
        }