/* Reset et base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #0a0a0a;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 255, 136, 0.2);
    box-shadow: 0 4px 20px rgba(0, 255, 136, 0.1);
    transition: background 0.3s ease;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.8rem;
    font-weight: 700;
    color: #00ff88;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.logo img {
    width: 50px;
    height: 50px;
    filter: drop-shadow(0 0 10px rgba(0, 255, 136, 0.5));
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background: linear-gradient(45deg, #00ff88, #4ecdc4);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: #00ff88;
}

/* Section Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 120px 0 50px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 255, 136, 0.2) 0%, transparent 70%);
    z-index: -1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    font-size: 5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #00ff88, #4ecdc4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
}

.hero-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #ffffff;
    opacity: 0.9;
}

.hero-text p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.85;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #00ff88, #4ecdc4);
    color: #0a0a0a;
    padding: 1.2rem 3rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.4);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.4s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 255, 136, 0.5);
}

.hero-image {
    position: relative;
    perspective: 1000px;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 255, 136, 0.3);
    transition: transform 0.5s ease;
}

.hero-image img:hover {
    transform: rotateY(10deg) rotateX(5deg);
}

/* Section Comment acheter */
.how-to-buy {
    padding: 120px 0;
    background: #111111;
    position: relative;
    overflow: hidden;
}

.how-to-buy::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/img/hero-image.png') center/cover no-repeat;
    opacity: 0.05;
    z-index: -1;
}

.how-to-buy h2 {
    text-align: center;
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: #00ff88;
    text-shadow: 0 0 15px rgba(0, 255, 136, 0.5);
}

.section-subtitle {
    text-align: center;
    font-size: 1.3rem;
    margin-bottom: 4rem;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.step-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(0, 255, 136, 0.2);
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.2), transparent);
    transition: left 0.5s ease;
}

.step-card:hover::before {
    left: 100%;
}

.step-card:hover {
    transform: translateY(-8px);
    border-color: #00ff88;
    box-shadow: 0 15px 40px rgba(0, 255, 136, 0.2);
}

.step-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: #00ff88;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.step-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
    color: #ffffff;
}

/* Section Tokenomics */
.tokenomics {
    padding: 120px 0;
    background: #0a0a0a;
    position: relative;
}

.tokenomics h2 {
    text-align: center;
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: #00ff88;
    text-shadow: 0 0 15px rgba(0, 255, 136, 0.5);
}

.tokenomics-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 4rem;
    margin-top: 4rem;
}

.supply-info, .distribution {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(0, 255, 136, 0.2);
    text-align: center;
    transition: all 0.4s ease;
}

.supply-info:hover, .distribution:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 255, 136, 0.2);
}

.supply-number {
    font-size: 3rem;
    font-weight: 700;
    color: #00ff88;
    margin-top: 1.5rem;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.distribution-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.2leau;
}

.color-indicator {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
}

/* Section Roadmap */
.roadmap {
    padding: 120px 0;
    background: #111111;
    position: relative;
}

.roadmap h2 {
    text-align: center;
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: #00ff88;
    text-shadow: 0 0 15px rgba(0, 255, 136, 0.5);
}

.roadmap-phases {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.phase-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(0, 255, 136, 0.2);
    transition: all 0.4s ease;
}

.phase-card:hover {
    transform: translateY(-8px);
    border-color: #00ff88;
    box-shadow: 0 15px 40px rgba(0, 255, 136, 0.2);
}

.phase-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #00ff88;
}

.phase-card ul {
    list-style: none;
}

.phase-card li {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 1.2rem;
    padding: 0.8rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.phase-card li:hover {
    background: rgba(255, 255, 255, 0.08);
}

.phase-card li.completed {
    opacity: 0.7;
}

/* Section FAQ */
.faq {
    padding: 120px 0;
    background: #0a0a0a;
}

.faq h2 {
    text-align: center;
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: #00ff88;
    text-shadow: 0 0 15px rgba(0, 255, 136, 0.5);
}

.faq-list {
    max-width: 900px;
    margin: 4rem auto 0;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    margin-bottom: 1.5rem;
    border-radius: 20px;
    border: 1px solid rgba(0, 255, 136, 0.2);
    overflow: hidden;
    transition: all 0.4s ease;
}

.faq-item:hover {
    border-color: #00ff88;
    box-shadow: 0 15px 40px rgba(0, 255, 136, 0.2);
}

.faq-item h3 {
    padding: 1.8rem;
    font-size: 1.4rem;
    color: #00ff88;
    border-bottom: 1px solid rgba(0, 255, 136, 0.2);
}

.faq-item p {
    padding: 1.8rem;
    opacity: 0.9;
}

/* Footer */
.footer {
    background: rgba(17, 17, 17, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 3rem 0;
    border-top: 1px solid rgba(0, 255, 136, 0.2);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.social-links {
    display: flex;
    gap: 3rem;
}

.social-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: color 0.3s ease;
    position: relative;
}

.social-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background: #00ff88;
    transition: width 0.3s ease;
}

.social-links a:hover::after {
    width: 100%;
}

.social-links a:hover {
    color: #00ff88;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 3rem;
    }
    
    .hero-text h2 {
        font-size: 1.8rem;
    }

    .nav-links {
        display: none;
    }
    
    .hamburger {
        display: block !important;
    }
    
    .tokenomics-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .roadmap-phases {
        grid-template-columns: 1fr;
    }
}