/* --- GLOBAL VARIABLES --- */
:root {
    --bg-color: #050505;
    --card-bg: #111111;
    --text-main: #ffffff;
    --text-muted: #a0a0a0;
    --neon-green: #00ff41;
    --neon-glow: 0 0 15px rgba(0, 255, 65, 0.4);
}

/* --- RESET & BASIC SETUP --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Rajdhani', sans-serif;
    text-transform: uppercase;
}

span {
    color: var(--neon-green);
    text-shadow: var(--neon-glow);
}

/* --- HEADER --- */
header {
    padding: 20px 50px;
    display: flex;
    justify-content: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background-color: rgba(5, 5, 5, 0.9);
    position: relative;
    z-index: 10;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.logo-img {
    width: 45px;
    height: 45px;
    border-radius: 5px;
}

/* --- HERO SECTION --- */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 150px 20px;
    position: relative;
    overflow: hidden;
}

.back-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1;
    transform: translateX(-50%) translateY(-50%);
    object-fit: cover;
    opacity: 0.5; /* Assombrit légèrement la vidéo pour rendre le texte lisible */
}

.hero-content {
    position: relative;
    z-index: 1;
    background: rgba(5, 5, 5, 0.75); /* Fond semi-transparent derrière le texte */
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 65, 0.2);
    box-shadow: 0 0 30px rgba(0,0,0,0.8);
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero p {
    color: var(--text-muted);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 40px auto;
}

.cta-button {
    background-color: var(--neon-green);
    color: #000;
    text-decoration: none;
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 5px;
    box-shadow: var(--neon-glow);
    transition: all 0.3s ease;
    display: inline-block;
}

.cta-button:hover {
    background-color: #00e63a;
    box-shadow: 0 0 30px rgba(0, 255, 65, 0.7);
    transform: translateY(-2px);
}

/* --- FEATURES SECTION --- */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 80px 10%;
    background-color: #0a0a0a;
    border-top: 1px solid rgba(0, 255, 65, 0.1);
}

.feature-card {
    background-color: var(--card-bg);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(0, 255, 65, 0.1);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--neon-green);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    border-radius: 10px;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* --- PERFORMANCE SECTION --- */
.performance {
    padding: 80px 10%;
    text-align: center;
    background-color: var(--bg-color);
}

.performance h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.section-subtitle {
    color: var(--text-muted);
    margin-bottom: 50px;
}

.performance-grid {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.trade-pair {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    background-color: var(--card-bg);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.image-wrapper {
    flex: 1;
    max-width: 500px;
    position: relative;
    overflow: hidden; /* Nécessaire pour que l'image ne dépasse pas pendant le zoom */
    border-radius: 5px;
}

.img-label {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: var(--neon-green);
    color: #000;
    padding: 5px 10px;
    font-size: 0.8rem;
    font-weight: bold;
    border-radius: 5px;
    z-index: 2;
}

.image-wrapper img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    border: 1px solid rgba(0, 255, 65, 0.2);
    transition: transform 0.5s ease; /* Animation fluide pour le zoom */
}

.image-wrapper:hover img {
    transform: scale(1.05); /* Effet de zoom au survol */
}

/* --- PRICING SECTION --- */
.pricing {
    padding: 80px 10%;
    text-align: center;
    background-color: #0a0a0a;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.pricing-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.price-card {
    background-color: var(--card-bg);
    padding: 40px 30px;
    border-radius: 10px;
    width: 320px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.price-card.popular {
    border-color: var(--neon-green);
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.1);
    transform: scale(1.05);
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--neon-green);
    color: #000;
    padding: 5px 15px;
    font-size: 0.8rem;
    font-weight: bold;
    border-radius: 20px;
}

.price-badge-img {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
    border-radius: 5px;
}

.price-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--text-main);
}

.price {
    font-size: 3rem;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--neon-green);
}

.price span {
    font-size: 1rem;
    color: var(--text-muted);
    text-shadow: none;
}

.price-card ul {
    list-style: none;
    margin-bottom: 40px;
    text-align: left;
    flex-grow: 1;
    width: 100%;
}

.price-card ul li {
    margin-bottom: 15px;
    color: #e0e0e0;
    font-size: 0.95rem;
}

.price-btn {
    display: block;
    width: 100%;
    padding: 15px;
    background-color: var(--neon-green);
    color: #000;
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    transition: 0.3s;
    text-align: center;
}

.price-btn:hover {
    background-color: #00e63a;
}

.price-btn.outline {
    background-color: transparent;
    border: 1px solid var(--neon-green);
    color: var(--neon-green);
}

.price-btn.outline:hover {
    background-color: rgba(0, 255, 65, 0.1);
}

/* --- FOOTER & LEGAL --- */
footer {
    background-color: #020202;
    padding: 40px 20px 20px 20px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.legal-links {
    margin: 20px 0 30px 0;
}

.legal-links a {
    color: var(--text-muted);
    text-decoration: none;
    margin: 0 15px;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.legal-links a:hover {
    color: var(--neon-green);
}

/* --- BOTTOM DISCLAIMER --- */
.bottom-disclaimer {
    max-width: 1000px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.bottom-disclaimer p {
    font-size: 0.75rem;
    color: #666;
    line-height: 1.5;
    text-align: justify;
    text-align-last: center;
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    .price-card.popular {
        transform: scale(1);
    }
    .pricing-container {
        flex-direction: column;
        align-items: center;
    }
    .trade-pair {
        flex-direction: column;
    }
}