* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth; /* Défilement fluide */
}

body {
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.visits-website {
    color:#e9594c  ;
    font-weight: bold;
    text-decoration: none;
}

.visits-website:hover {
    color: #313895;
}

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

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideIn {
    from { opacity: 0; transform: translateX(-20px); }
    to { opacity: 1; transform: translateX(0); }
}

.animate-fade { animation: fadeInUp 1s ease-out; }
.animate-slide { animation: slideIn 1s ease-out; }

/* Header */
header {
    padding: 20px 0;
    /* position: fixed; */
    width: 100%;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);

}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header img {
    position: absolute;
    top: 18px;
}

.logo {
    color: #313895;;
    font-size: 26px;
    font-weight: 700;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    color: #313895;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #e9594c;
}

#cryptocurrencies img {
    height: 50px;
    width: 50px;
}

.wallet-1{
    position: absolute !important;
    height: 17px !important;
    left: 49%;
    top: 20px;
}


.wallet-2{
    position: absolute !important;
    height: 17px !important;
    left: 128px;
    top: 40px;
}

.cta-btn {
    background: #e9594c;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5chetto;
    font-weight: 600;
    transition: transform 0.3s, background 0.3s;
}

.cta-btn:hover {
    background: #d13e31;
    transform: scale(1.05);
}

/* Hero Section */
.hero {
    background: #f5f7fa;
    padding: 150px 0 100px;
    text-align: center;
}

.hero h1 {
    font-size: 48px;
    color: #313895;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease-out;
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
    animation: fadeInUp 1.2s ease-out;
}

/* Crypto Section */
.crypto-section {
    padding: 80px 0;
    background: #fff;
}

.crypto-section h2 {
    text-align: center;
    font-size: 36px;
    color: #313895;
    margin-bottom: 35px;
    animation: fadeInUp 1s ease-out;
}

.crypto-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.crypto-card {
    position: relative;
    background: #fff;
    border: 1px solid #eee;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.crypto-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.crypto-card img {
    width: 50px;
    margin-bottom: 15px;
}

.crypto-card h3 {
    font-size: 22px;
    color: #313895;
}

.crypto-card .percentage {
    font-size: 24px;
    font-weight: 700;
    color: #e9594c;
    margin: 10px 0;
}

.delegate-btn {
    display: inline-block;
    background: #313895;
    color: #fff;
    padding: 8px 15px;
    text-decoration: none;
    border-radius: 5px;
    margin: 10px 0;
    transition: background 0.3s, transform 0.3s;
}

.delegate-btn:hover {
    background: #252c6e;
    transform: scale(1.05);
}

/* Pourquoi nous */
.why-us {
    background: #313895;
    color: #fff;
    padding: 80px 0;
}

.why-us h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 35px;
    animation: fadeInUp 1s ease-out;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: center;
}

.why-item {
    animation: slideIn 1.2s ease-out;
}

.why-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

/* Comment déléguer */
.how-to {
    padding: 80px 0;
    background: #f5f7fa;
    text-align: center;
}

.how-to h2 {
    font-size: 36px;
    color: #313895;
    margin-bottom: 40px;
}

.how-to p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto 20px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.step-item {
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: #fff;
    text-align: center;
}

.contact h2 {
    font-size: 36px;
    color: #313895;
    margin-bottom: 40px;
}

.contact p {
    font-size: 18px;
    margin-bottom: 20px;
}

.contact-links a {
    color: #313895;
    text-decoration: none;
    margin: 0 15px;
    font-weight: 600;
    transition: color 0.3s;
}

.contact-links a:hover {
    color: #e9594c;
}

/* Footer */
footer {
    background: #313895;
    color: #fff;
    padding: 40px 0 20px;
}

footer .container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-links a {
    color: #fff;
    margin-right: 20px;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #e9594c;
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
}

.partner-wallets {
    text-align: center;
    padding: 50px 20px;
    background: #f8f9fa;
}

.partner-wallets h2{
    text-align: center;
    font-size: 36px;
    color: #313895;
    margin-bottom: 35px;
    animation: fadeInUp 1s ease-out;
}




.wallet-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.wallet-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 300px;
}

.wallet-card img {
    width: 80px;
    margin-bottom: 15px;
}

.wallet-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    background: #4a90e2;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.wallet-btn:hover{
    background: #4a90e2c4;
}


/* Responsive */
@media (max-width: 1000px) {
    header .container {
        flex-direction: column;
        justify-content: center;
        align-items: start;
    }
    nav ul {
        margin-top: 20px;
    }
    .hero h1 {
        font-size: 32px;
    }
    .crypto-grid, .why-grid, .steps-grid {
        grid-template-columns: 1fr;
    }
}