/* main.css */

:root {
    --primary-gradient: linear-gradient(135deg, #9d4edd, #5a189a);
    --secondary-gradient: linear-gradient(135deg, #3c096c, #10002b);
    --accent-gradient: linear-gradient(45deg, #ff00ff, #9d4edd);
    --glass-bg: rgba(90, 24, 154, 0.1);
    --neon-glow: 0 0 20px rgba(157, 78, 221, 0.5);
    /* Des couleurs plus douces et sophistiquées */
    --primary-dark: #2d1b44;
    --primary-light: #6b4d8a;
    --accent: #8a6fb0;
    --background-start: #1a1025;
    --background-end: #2d1b44;
    --text-color: #e4d9f2;
    --card-bg: rgba(45, 27, 68, 0.4);
    --animation-speed: 0.3s;
    --animation-curve: cubic-bezier(0.4, 0, 0.2, 1);
    --hover-lift: translateY(-8px);
    --card-shadow: 0 8px 32px rgba(90, 24, 154, 0.15);
    --text-glow: 0 0 15px rgba(157, 78, 221, 0.6);
    --primary-color: #9d4edd;
    --secondary-color: #ff00ff;
    --bg-dark: #1a1033;
    --bg-lighter: #2d1b4e;
    --text-light: rgba(255, 255, 255, 0.9);
    --glass-border: rgba(255, 255, 255, 0.05);
    /* Responsive variables */
    --navbar-height: 70px;
    --container-padding-mobile: 1rem;
    --container-padding-tablet: 2rem;
    --container-padding-desktop: 4rem;
}

/* Global Styles */
body {
    background: var(--bg-dark);
    overflow-x: hidden;
    min-height: 100vh;
    will-change: transform;
    color: white;
    font-family: 'Inter', sans-serif;
    margin: 0;
    line-height: 1.6;
}

header {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 20px;
    text-align: center;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
    background-color: transparent !important;
}

h1, h2 {
    font-size: 2.5em;
    background: linear-gradient(45deg, var(--text-color), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: var(--neon-glow);
}

h2 {
    font-size: 2em;
}

p {
    font-size: 1.2em;
}

a {
    color: #ffffff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.container {
    padding: 20px;
}

.footer {
    text-align: center;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.5);
    background: rgba(26, 16, 37, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--glass-border);
    padding: 4rem 2rem 2rem;
    margin-top: 6rem;
}

/* Hero section */
.hero {
    min-height: 100vh;
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(145deg, 
        rgba(26, 16, 37, 0.98) 0%,
        rgba(90, 24, 154, 0.98) 100%
    );
    margin-top: 0 !important;
    padding-top: 0 !important; /* Supprime le padding qui crée l'espace */
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    text-align: center;
    background: rgba(26, 16, 37, 0.8);
    backdrop-filter: blur(12px);
    border-radius: 30px;
    padding: 4rem;
    border: 1px solid rgba(157, 78, 221, 0.2);
    margin-bottom: 2rem;
}

.hero-subtitle {
    max-width: 700px;
    margin: 2rem auto;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.hero-description {
    max-width: 600px;
    margin: 2rem auto;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 3rem;
}

.primary-btn, .secondary-btn {
    padding: 1rem 2.5rem;
    border-radius: 30px;
    font-weight: 600;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    background: linear-gradient(45deg, var(--secondary-color), var(--primary-color));
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    width: auto;
    min-height: 44px; /* Accessibility touch target size */
    white-space: normal;
}

.primary-btn {
    background: linear-gradient(45deg, var(--primary-light), var(--primary-dark), var(--primary-light));
    background-size: 200% auto;
    transition: all 0.5s var(--animation-curve);
    animation: gradientMove 3s linear infinite;
    border: none;
    color: white;
    background: linear-gradient(45deg, #ff00ff, #9d4edd);
    color: white;
    border: none;
}

.primary-btn:hover {
    background-position: right center;
    transform: translateY(-3px);
    box-shadow: 0 0 20px rgba(157, 78, 221, 0.5),
                0 0 40px rgba(157, 78, 221, 0.3);
    opacity: 1;
}

.secondary-btn {
    background: transparent;
    border: 2px solid var(--primary-light);
    color: var(--text-color);
    background: rgba(157, 78, 221, 0.1);
    color: white;
    border: 1px solid rgba(157, 78, 221, 0.3);
}

.secondary-btn:hover {
    background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
    color: white;
    border-color: transparent;
    transform: translateY(-3px);
    border-color: rgba(157, 78, 221, 0.5);
}

.hero-text-container {
    margin: 2rem auto 3rem;
    max-width: 800px;
    text-align: center;
}

.glow-text {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    position: relative;
}

.text-gradient {
    background: linear-gradient(45deg, #ff00ff, #9d4edd);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
}

.hero-tagline {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 1.5rem 0;
    font-weight: 600;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.cta-section {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
}

.primary-btn,
.secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    min-width: 200px;
}

.btn-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center,
        rgba(255, 255, 255, 0.2),
        transparent 70%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.primary-btn:hover .btn-glow,
.secondary-btn:hover .btn-glow {
    opacity: 1;
}

@media (max-width: 768px) {
    .glow-text {
        font-size: 2.8rem;
    }

    .hero-tagline {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .cta-section {
        flex-direction: column;
        padding: 0 1rem;
    }

    .primary-btn, .secondary-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .cta-section {
        padding: 0 1rem;
    }

    .primary-btn,
    .secondary-btn {
        width: 100%;
        min-width: unset;
    }

    .hero-content {
        padding: 1rem;
    }

    .support-actions {
        flex-direction: column;
    }

    .action-card {
        width: 100%;
    }
}

/* Hero UI Elements */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(157, 78, 221, 0.15);
    border: 1px solid rgba(157, 78, 221, 0.2);
    padding: 1rem 2rem;
    border-radius: 30px;
    margin-bottom: 3rem;
    animation: softPulse 3s infinite;
}

.mini-logo {
    height: 24px;
    filter: drop-shadow(0 0 8px rgba(157, 78, 221, 0.5));
}

.hero-features {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin: 4rem 0;
}

.feature-pill {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem 2rem;
    background: rgba(157, 78, 221, 0.15);
    border: 1px solid rgba(157, 78, 221, 0.3);
    border-radius: 20px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.feature-pill.highlight {
    border-color: rgba(157, 78, 221, 0.4);
    box-shadow: 0 0 20px rgba(157, 78, 221, 0.2);
    transform: scale(1.05);
}

.feature-pill .emoji {
    font-size: 1.2rem;
}

.feature-pill:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 10px 30px rgba(157, 78, 221, 0.2);
    border-color: rgba(157, 78, 221, 0.5);
}

.launch-info {
    margin: 3rem 0;
    padding: 2rem;
    background: rgba(157, 78, 221, 0.05);
    border-radius: 25px;
    border: 1px solid rgba(157, 78, 221, 0.2);
}

.countdown-wrapper {
    margin: 5rem 0;
    padding: 3rem;
    background: rgba(157, 78, 221, 0.1);
    border-radius: 25px;
    border: none;
    position: relative;
    width: 100%;
    max-width: 100%;
    padding-left: var(--container-padding-mobile);
    padding-right: var(--container-padding-mobile);
    box-sizing: border-box;
    margin-left: auto;
    margin-right: auto;
}

.countdown-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 25px;
    padding: 2px;
    background: linear-gradient(45deg, #ff00ff, #9d4edd);
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask-composite: exclude;
}

.countdown-label {
    font-size: 1.2rem;
    opacity: 0.8;
    margin-bottom: 0.5rem;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1.5rem;
}

.time-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 120px;
    padding: 1.5rem;
    background: rgba(157, 78, 221, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(157, 78, 221, 0.2);
    transition: transform 0.3s ease;
}

.time-block:hover {
    transform: translateY(-5px);
}

.time {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(45deg, #ff00ff, #9d4edd);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.launch-date {
    font-size: 2rem;
    font-weight: 700;
    color: #ff00ff;
    margin-bottom: 2rem;
}

.highlight {
    background: rgba(157, 78, 221, 0.2);
    transform: scale(1.05);
}

/* Features section */
.features {
    padding-top: 3rem;
    margin-top: -2rem;
    position: relative;
    z-index: 4;
    padding: 3rem 2rem;
    background: rgba(26, 16, 37, 0.4);
    position: relative;
    margin-top: -2rem; /* Reduce gap between about and features */
}

.features h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 0 2rem;
    width: 100%;
    max-width: 100%;
    padding-left: var(--container-padding-mobile);
    padding-right: var(--container-padding-mobile);
    box-sizing: border-box;
    margin-left: auto;
    margin-right: auto;
}

.feature-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(138, 111, 176, 0.2);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: transform var(--animation-speed) var(--animation-curve),
                box-shadow var (--animation-speed) var(--animation-curve);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transform: perspective(1000px) rotateX(0) rotateY(0);
    will-change: transform;
    border: 1px solid rgba(157, 78, 221, 0.3);
    animation: borderNeon 3s infinite;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent-gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: perspective(1000px) rotateX(2deg) rotateY(2deg) var(--hover-lift);
    box-shadow: var(--card-shadow);
    border-color: rgba(138, 111, 176, 0.4);
    box-shadow: 0 6px 20px rgba(138, 111, 176, 0.15);
}

.feature-card i {
    font-size: 2rem;
    background: linear-gradient(45deg, #ff00ff, #9d4edd);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.feature-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--mouse-x) var(--mouse-y),
                rgba(157, 78, 221, 0.2),
                transparent 100px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover::after {
    opacity: 1;
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem;
    background: rgba(90, 24, 154, 0.2);
    backdrop-filter: blur(10px);
}

/* Gradient Backgrounds */
.gradient-bg {
    background: linear-gradient(180deg, 
        rgba(26, 16, 37, 1) 0%,
        rgba(90, 24, 154, 0.8) 100%
    );
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    background-attachment: fixed;
    will-change: transform;
}

.gradient-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(157, 78, 221, 0.15), transparent);
    z-index: 1;
}

.gradient-bg-2 {
    background: linear-gradient(180deg, 
        rgba(90, 24, 154, 0.8) 0%,
        rgba(26, 16, 37, 1) 100%
    );
    backdrop-filter: blur(8px);
    position: relative;
    background-attachment: fixed;
    will-change: transform;
}

/* Sections */
.about {
    position: relative;
    z-index: 2;
    padding: 4rem 2rem;
    background: linear-gradient(180deg, 
        rgba(26, 16, 37, 0.95) 0%,
        rgba(26, 16, 37, 1) 100%
    );
    min-height: 50vh;
    display: flex;
    align-items: center;
}

.section-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    padding-left: var(--container-padding-mobile);
    padding-right: var(--container-padding-mobile);
    box-sizing: border-box;
    margin-left: auto;
    margin-right: auto;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.animated-text {
    font-size: 1.2rem;
    line-height: 1.6;
}

.highlight-text {
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1.4;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.stat-card {
    background: rgba(157, 78, 221, 0.1);
    border: 1px solid rgba(157, 78, 221, 0.2);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
    background: linear-gradient(45deg, #ff00ff, #9d4edd);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 15px rgba(157, 78, 221, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .about-stats {
        grid-template-columns: 1fr;
    }
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.animated-text {
    font-size: 1.2rem;
    line-height: 1.6;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.highlight-text {
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1.4;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.stat-card {
    background: rgba(157, 78, 221, 0.1);
    border: 1px solid rgba(157, 78, 221, 0.2);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: rgba(157, 78, 221, 0.4);
    box-shadow: 0 0 20px rgba(157, 78, 221, 0.2);
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }
}

/* Animation classes */
.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.about p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.2rem;
    line-height: 1.8;
}

/* Animations */
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.gradient-bg, .gradient-bg-2 {
    background-size: 200% 200%;
    animation: gradientShift 15s ease infinite;
}

/* Responsive design additions */
@media (max-width: 768px) {
    nav ul {
        gap: 1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-features {
        flex-direction: column;
        align-items: center;
    }

    .feature-pill {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

/* Text Styles */
.glow-text {
    font-size: 5rem;
    letter-spacing: -1px;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #ff00ff, #9d4edd);
    background-size: 200% auto;
    animation: gradientFlow 6s linear infinite;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(157, 78, 221, 0.5);
}

.gradient-text {
    background: linear-gradient(120deg, #ff00ff, #9d4edd, #ff00ff);
    background-size: 200% auto;
    animation: shimmer 3s linear infinite;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
}

.animated-text {
    font-size: 1.2rem;
    line-height: 1.8;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s var(--animation-curve) forwards;
    animation-delay: calc(var(--delay, 0) * 0.1s);
}

/* Cards and Sections */
.stat-card {
    background: rgba(157, 78, 221, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(157, 78, 221, 0.2);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card.glow-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(157, 78, 221, 0.3);
    border-color: rgba(157, 78, 221, 0.4);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s var(--animation-curve);
}

.stat-card:hover::before {
    transform: translateX(100%);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
}

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

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes shimmer {
    to {
        background-position: 200% center;
    }
}

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes floatAnimation {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Enhanced Section Transitions */
.section-content {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.section-content.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
    font-size: calc(15px + 0.390625vw);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .feature-card {
        transform: none !important;
    }
    
    .primary-btn, .secondary-btn {
        width: 100%;
        max-width: 300px;
        margin: 0.5rem auto;
    }
}

/* Token Page Specific Styles */
.tokens-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem;
    margin-top: 2rem;
    padding-top: 2rem;
    width: 100%;
    max-width: 100%;
    padding-left: var(--container-padding-mobile);
    padding-right: var(--container-padding-mobile);
    box-sizing: border-box;
    margin-left: auto;
    margin-right: auto;
}

.token-card {
    background: rgba(26, 16, 37, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(157, 78, 221, 0.2);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.token-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
        rgba(157, 78, 221, 0.1),
        rgba(255, 0, 255, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.token-card:hover {
    transform: translateY(-10px);
    border-color: rgba(157, 78, 221, 0.4);
    box-shadow: 0 10px 30px rgba(157, 78, 221, 0.2);
}

.token-card:hover::before {
    opacity: 1;
}

.token-image-placeholder {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #ff00ff, #9d4edd);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Responsive Design */
@media (max-width: 768px) {
    nav {
        padding: 1rem;
    }
    
    nav ul {
        gap: 1rem;
    }
    
    .tokens-grid {
        grid-template-columns: 1fr;
        padding: 1rem;
    }
    
    .token-card {
        margin: 0 1rem;
    }
}

/* Enhanced Typography */
.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    text-align: center;
    margin-bottom: 3rem;
    line-height: 1.2;
    text-shadow: 0 0 10px rgba(157, 78, 221, 0.5),
                 0 0 20px rgba(157, 78, 221, 0.3),
                 0 0 30px rgba(157, 78, 221, 0.2);
    animation: neonPulse 2s infinite;
}

.section-subtitle {
    font-size: clamp(1.1rem, 3vw, 1.4rem);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    line-height: 1.6;
    color: rgba(228, 217, 242, 0.9);
}

/* Improved Roadmap */
.roadmap {
    padding: 6rem 2rem;
    position: relative;
    background: linear-gradient(180deg, 
        rgba(26, 16, 37, 0.95) 0%,
        rgba(26, 16, 37, 1) 100%
    );
    z-index: 1;
}

.timeline {
    max-width: 1000px;
    margin: 4rem auto 0;
    position: relative;
    padding: 2rem 0;
    width: 100%;
    max-width: 100%;
    padding-left: var(--container-padding-mobile);
    padding-right: var(--container-padding-mobile);
    box-sizing: border-box;
    margin-left: auto;
    margin-right: auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    top: 0;
    background: linear-gradient(180deg, 
        rgba(157, 78, 221, 0.1) 0%,
        rgba(157, 78, 221, 0.5) 50%,
        rgba(157, 78, 221, 0.1) 100%
    );
    left: 20px;
    width: 2px;
}

.timeline-item {
    margin-bottom: 4rem;
    position: relative;
    width: 50%;
    padding: 0 2rem;
    will-change: transform, opacity;
    width: 100%;
    padding-left: 60px;
    padding-right: 15px;
    margin-left: 0 !important;
    margin-right: 0 !important;
    box-sizing: border-box;
}

.timeline-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.timeline-item:nth-child(odd) {
    left: 0;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-content {
    background: rgba(26, 16, 37, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(157, 78, 221, 0.2);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
    z-index: 1;
}

.timeline-content:hover {
    transform: translateY(-5px);
    border-color: rgba(157, 78, 221, 0.4);
    box-shadow: 0 0 30px rgba(157, 78, 221, 0.2);
}

.timeline-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #ff00ff, #9d4edd);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.timeline-content ul {
    list-style: none;
    padding: 0;
}

.timeline-content li {
    margin: 1rem 0;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.timeline-content li::before {
    content: '➜';
    position: absolute;
    left: 0;
    color: #9d4edd;
}

.timeline-item.current .timeline-content {
    background: rgba(157, 78, 221, 0.1);
    border: 1px solid rgba(157, 78, 221, 0.3);
    box-shadow: 0 0 30px rgba(157, 78, 221, 0.2);
}

.phase-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(45deg, #ff00ff, #9d4edd);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .timeline::before {
        left: 30px;
    }

    .timeline-item {
        width: 100%;
        left: 0 !important;
        padding-left: 80px;
        padding-right: 1rem;
    }
}

/* Community Section Styles */
.community-section {
    padding: 4rem 2rem;
    position: relative;
    z-index: 2;
    background: linear-gradient(180deg, 
        rgba(26, 16, 37, 0.95) 0%,
        rgba(26, 16, 37, 1) 100%
    );
    text-align: center;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 3rem auto;
    width: 100%;
    max-width: 100%;
    padding-left: var(--container-padding-mobile);
    padding-right: var(--container-padding-mobile);
    box-sizing: border-box;
    margin-left: auto;
    margin-right: auto;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    background: rgba(157, 78, 221, 0.1);
    border: 1px solid rgba(157, 78, 221, 0.2);
    border-radius: 20px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.social-link span {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0.5rem 0;
}

.member-count {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Social link specific colors */
.telegram:hover {
    border-color: #0088cc;
    box-shadow: 0 0 20px rgba(0, 136, 204, 0.2);
}

.discord:hover {
    border-color: #7289da;
    box-shadow: 0 0 20px rgba(114, 137, 218, 0.2);
}

.twitter:hover {
    border-color: #1da1f2;
    box-shadow: 0 0 20px rgba(29, 161, 242, 0.2);
}

.social-link:hover {
    transform: translateY(-5px);
}

.social-link:hover i {
    transform: scale(1.1);
}

/* Responsive design */
@media (max-width: 768px) {
    .social-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .timeline::before {
        left: 30px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 80px;
        padding-right: 1rem;
    }

    .timeline-item::before {
        left: 20px;
    }

    .timeline-item:nth-child(odd) {
        margin-left: 0;
    }

    .timeline-item:nth-child(odd)::before {
        left: 20px;
    }
}

/* Community Section Styles */
.community-section {
    padding: 6rem 2rem;
    margin-top: 2rem;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 1rem;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    background: rgba(26, 16, 37, 0.6);
    border: 1px solid rgba(157, 78, 221, 0.2);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-link i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.social-link span {
    font-size: 1.2rem;
    font-weight: 600;
}

.member-count {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 0.5rem;
}

.social-link:hover {
    transform: translateY(-5px);
    border-color: rgba(157, 78, 221, 0.4);
    box-shadow: 0 10px 30px rgba(157, 78, 221, 0.2);
}

.telegram:hover { border-color: #0088cc; }
.discord:hover { border-color: #7289da; }
.twitter:hover { border-color: #1da1f2; }
.social-icon.instagram:hover {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .social-grid {
        grid-template-columns: 1fr;
        padding: 0;
    }
    
    .social-link {
        padding: 1.5rem;
    }
}

/* Section Spacing */
section {
    position: relative;
    padding: 4rem 2rem;
    margin-top: -2rem;
    background-size: 200% 200%;
    width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
    padding-left: var(--container-padding-mobile);
    padding-right: var(--container-padding-mobile);
}

/* New Animations */
@keyframes neonPulse {
    0%, 100% { text-shadow: 0 0 10px rgba(157, 78, 221, 0.5),
                           0 0 20px rgba(157, 78, 221, 0.3),
                           0 0 30px rgba(157, 78, 221, 0.2); }
    50% { text-shadow: 0 0 15px rgba(157, 78, 221, 0.7),
                       0 0 25px rgba(157, 78, 221, 0.5),
                       0 0 35px rgba(157, 78, 221, 0.3); }
}

@keyframes borderNeon {
    0%, 100% { border-color: rgba(157, 78, 221, 0.3); }
    50% { border-color: rgba(157, 78, 221, 0.7); }
}



/* Token Page Specific Styles */
.token-hero {
    margin-top: 2rem;
    padding: 4rem 2rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    main {
        padding-top: 70px;
    }
    
    .token-hero {
        margin-top: 1rem;
        padding: 3rem 1rem;
    }

    .hero {
        padding: 5rem 1rem 1rem;
    }

    .hero-content {
        padding-bottom: 1rem;
    }

    .about {
        padding: 3rem 1rem;
        margin-top: -1rem;
    }
}

.ecosystem {
    background: rgba(26, 16, 37, 0.6);
    padding: 3rem 2rem;
}

/* Hero Background Elements */
.hero-bg-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    top: 0 !important;
    position: absolute;
}

.floating-coin {
    position: absolute;
    font-size: 4rem;
    opacity: 0.1;
    animation: float 6s infinite;
    background: linear-gradient(45deg, #ff00ff, #9d4edd);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.coin-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.coin-2 {
    top: 60%;
    right: 15%;
    animation-delay: -2s;
}

.coin-3 {
    top: 30%;
    right: 25%;
    animation-delay: -4s;
}

.glowing-circle {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle at center,
        rgba(157, 78, 221, 0.2) 0%,
        rgba(157, 78, 221, 0.1) 30%,
        transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 4s infinite;
}

.hero-grid {
    position: absolute;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(157, 78, 221, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(157, 78, 221, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    transform: perspective(500px) rotateX(60deg);
    transform-origin: top;
    animation: gridMove 20s linear infinite;
}

.token-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0; /* Reduced margin */
    width: 100%;
    max-width: 100%;
    padding-left: var(--container-padding-mobile);
    padding-right: var(--container-padding-mobile);
    box-sizing: border-box;
    margin-left: auto;
    margin-right: auto;
}

.stat-bubble {
    background: rgba(157, 78, 221, 0.1);
    border: 1px solid rgba(157, 78, 221, 0.3);
    padding: 1.5rem;
    border-radius: 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.stat-bubble:hover {
    transform: translateY(-5px);
    border-color: rgba(157, 78, 221, 0.5);
    box-shadow: 0 0 20px rgba(157, 78, 221, 0.3);
}

.stat-value {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(45deg, #ff00ff, #9d4edd);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

@keyframes gridMove {
    from { background-position: 0 0; }
    to { background-position: 0 50px; }
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .token-stats {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .stat-bubble {
        width: 80%;
        max-width: 300px;
    }

    .hero {
        min-height: auto;
        padding-top: 100px;
    }

    .section-connector {
        height: 100px;
        margin-top: -30px;
        margin-bottom: -70px;
    }

    section {
        padding: 3rem 1rem;
        margin-top: -1rem;
    }
}

/* Remove the section connector */
.section-connector {
    display: none;
}

.footer-gradient {
    background: linear-gradient(to bottom, transparent, rgba(157, 78, 221, 0.1));
    padding: 4rem 0 2rem;
    margin-top: auto;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
    max-width: 100%;
    padding-left: var(--container-padding-mobile);
    padding-right: var(--container-padding-mobile);
    box-sizing: border-box;
    margin-left: auto;
    margin-right: auto;
}

.footer-main {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.social-icon {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 1.5rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-icon:hover {
    transform: translateY(-3px);
}

.social-icon.x:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.social-icon.discord:hover {
    background: #5865F2;
    border-color: #5865F2;
}

.social-icon.telegram:hover {
    background: #0088cc;
    border-color: #0088cc;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.powered-by {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

.solana-logo {
    height: 24px;
    width: auto;
}

.copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .social-links {
        flex-direction: column;
        align-items: stretch;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

.footer-gradient {
    background: linear-gradient(0deg, 
        rgba(26, 16, 37, 1) 0%,
        rgba(26, 16, 37, 0.95) 100%
    );
    padding: 2rem;
    position: relative;
    border-top: 1px solid rgba(157, 78, 221, 0.2);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-main {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.social-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.icon-wrapper {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    background: rgba(157, 78, 221, 0.1);
    border: 1px solid rgba(157, 78, 221, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-icon i {
    font-size: 1.2rem;
    color: #fff;
}

.icon-label {
    font-size: 0.8rem;
    margin-top: 0.5rem;
    opacity: 0.8;
}

.member-count {
    display: none;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(157, 78, 221, 0.1);
}

.powered-by {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.7;
}

.powered-by span {
    font-size: 0.8rem;
}

.solana-logo {
    height: 16px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.copyright {
    font-size: 0.8rem;
    opacity: 0.7;
}

/* Hover effects */
.social-icon:hover {
    transform: translateY(-3px);
}

.social-icon:hover .icon-wrapper {
    border-color: rgba(157, 78, 221, 0.4);
    box-shadow: 0 0 15px rgba(157, 78, 221, 0.2);
}

.social-icon.twitter:hover .icon-wrapper {
    border-color: #1da1f2;
}

.social-icon.discord:hover .icon-wrapper {
    border-color: #7289da;
}

.social-icon.telegram:hover .icon-wrapper {
    border-color: #0088cc;
}

@media (max-width: 768px) {
    .footer-gradient {
        padding: 1.5rem;
    }

    .social-links {
        gap: 1.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(157, 78, 221, 0.2);
}

.solana-logo {
    height: 30px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.solana-logo:hover {
    opacity: 1;
}

@media (max-width: 768px) {
    .footer-main {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .footer-tagline {
        margin: 0 auto;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* New Animations */
@keyframes softPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.02); opacity: 0.9; }
}

@keyframes gradientFlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Floating Elements */
.floating-token {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(157, 78, 221, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(157, 78, 221, 0.2);
    font-size: 2rem;
    backdrop-filter: blur(5px);
}

.floating-token {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    font-size: 2.5rem;
    filter: drop-shadow(0 0 15px rgba(157, 78, 221, 0.3));
    background: rgba(157, 78, 221, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(157, 78, 221, 0.2);
    backdrop-filter: blur(5px);
    z-index: 2;
}

/* Position spécifique pour chaque emoji */
.token-1 {
    top: 15%;
    left: 10%;
    animation: floatTopLeft 8s ease-in-out infinite;
}

.token-2 {
    top: 25%;
    left: 20%;
    animation: floatTopLeft 12s ease-in-out infinite;
}

.token-3 {
    top: 20%;
    left: 30%;
    animation: floatTopLeft 10s ease-in-out infinite;
}

.token-4 {
    top: 10%;
    left: 40%;
    animation: floatTopLeft 14s ease-in-out infinite;
}

@keyframes floatTopLeft {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(10px, 15px) rotate(5deg);
    }
    50% {
        transform: translate(0, 25px) rotate(-5deg);
    }
    75% {
        transform: translate(-10px, 15px) rotate(3deg);
    }
}

/* Hover effect for floating tokens */
.floating-token:hover {
    transform: scale(1.1);
    border-color: rgba(157, 78, 221, 0.5);
    box-shadow: 0 0 30px rgba(157, 78, 221, 0.3);
}

@media (max-width: 768px) {
    .floating-token {
        width: 40px;
        height: 40px;
        font-size: 2rem;
    }

    .token-1 { left: 5%; top: 10%; }
    .token-2 { left: 15%; top: 18%; }
    .token-3 { left: 25%; top: 12%; }
    .token-4 { left: 35%; top: 8%; }
}

/* Responsive Improvements */
@media (max-width: 768px) {
    .hero-content {
        padding: 2rem;
    }

    .glow-text {
        font-size: 3rem;
    }

    .countdown {
        flex-wrap: wrap;
        justify-content: center;
    }

    .time-block {
        min-width: 100px;
    }

    .time {
        font-size: 2.5rem;
    }
}

.floating-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.floating-token {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: rgba(157, 78, 221, 0.1);
}
.countdown-date {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ff00ff;
    margin-top: 0.5rem;
}

.time-separator {
    font-size: 2.5rem;
    font-weight: 700;
    color: rgba(157, 78, 221, 0.5);
    margin: 0 1rem;
}

@media (max-width: 768px) {
    .hero-content {
        padding: 2rem;
        margin: 1rem;
    }

    .floating-token {
        width: 50px;
        height: 50px;
    }

    .token-emoji {
        font-size: 2rem;
    }

    .countdown-date {
        font-size: 1.2rem;
    }

    .time-separator {
        margin: 0 0.5rem;
    }
}

.glassmorphism {
    background: rgba(157, 78, 221, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(157, 78, 221, 0.2);
    border-radius: 20px;
}

.launch-container {
    margin: 4rem 0;
}

.launch-wrapper {
    padding: 2.5rem;
    text-align: center;
}

.launch-header h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(45deg, #ff00ff, #9d4edd);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-tooltip {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(26, 16, 37, 0.95);
    padding: 0.5rem 1rem;
    border-radius: 10px;
    font-size: 0.8rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    white-space: nowrap;
    z-index: 10;
}

.feature-pill:hover .feature-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

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

.animate-title > span {
    display: inline-block;
    animation: animateTitle 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.animate-title > span:nth-child(2) {
    animation-delay: 0.2s;
}

.hero-message {
    margin: 2rem auto;
    max-width: 800px;
}

.message-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    border: 1px solid rgba(157, 78, 221, 0.3);
    background: rgba(157, 78, 221, 0.1);
    border-radius: 15px;
}

.message-icon {
    font-size: 1.5rem;
}

.message-box p {
    font-size: 1.1rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
}

.support-ways {
    margin: 4rem 0;
}

.support-title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    background: linear-gradient(45deg, #ff00ff, #9d4edd);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
    max-width: 100%;
    padding-left: var(--container-padding-mobile);
    padding-right: var(--container-padding-mobile);
    box-sizing: border-box;
    margin-left: auto;
    margin-right: auto;
}

.support-card {
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.support-card:hover {
    transform: translateY(-5px);
}

.support-card i {
    font-size: 2rem;
    color: #9d4edd;
    margin-bottom: 1rem;
}

.support-card h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.support-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .support-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .message-box {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }
}

.support-message {
    margin: 3rem auto;
    max-width: 800px;
}

.message-box {
    padding: 2rem;
    border: 1px solid rgba(157, 78, 221, 0.3);
}

.message-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.message-header h3 {
    font-size: 1.5rem;
    background: linear-gradient(45deg, #ff00ff, #9d4edd);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.support-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
}

.support-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1rem 0;
    padding: 0.75rem 1rem;
    background: rgba(157, 78, 221, 0.1);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.support-list li:hover {
    transform: translateX(10px);
}

.milestone-tracker {
    margin: 3rem auto;
    max-width: 800px;
    padding: 2rem;
}

.milestone-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.milestone-badge {
    padding: 0.5rem 1rem;
    background: linear-gradient(45deg, #ff00ff, #9d4edd);
    border-radius: 20px;
    font-weight: 600;
}

.progress-bar {
    height: 8px;
    background: rgba(157, 78, 221, 0.1);
    border-radius: 4px;
    position: relative;
    margin: 2rem 0;
}

.progress {
    height: 100%;
    background: linear-gradient(90deg, #ff00ff, #9d4edd);
    border-radius: 4px;
    transition: width 1s ease;
}

.progress-marker {
    position: absolute;
    top: -10px;
    transform: translateX(-50%);
}

.marker-label {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.875rem;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .hero-content {
        padding: 1rem;
    }

    .support-list li {
        padding: 0.5rem;
    }

    .milestone-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

.floating-token {
    position: absolute;
    width: 80px;
    height: 80px;
    background: rgba(157, 78, 221, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(157, 78, 221, 0.3);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    transform-style: preserve-3d;
}

.token-emoji {
    font-size: 2.8rem;
    transform: translateZ(20px);
}

.community-support {
    margin: 3rem auto;
    max-width: 900px;
    padding: 2.5rem;
}

.support-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.support-icon-wrapper {
    width: 60px;
    height: 60px;
    background: rgba(157, 78, 221, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.support-icon {
    font-size: 2.2rem;
}

.support-actions {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
    width: 100%;
    max-width: 100%;
    padding-left: var(--container-padding-mobile);
    padding-right: var(--container-padding-mobile);
    box-sizing: border-box;
    margin-left: auto;
    margin-right: auto;
}

.action-card {
    flex: 1;
    background: rgba(157, 78, 221, 0.1);
    border: 1px solid rgba(157, 78, 221, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.action-card:hover {
    transform: translateY(-5px);
    border-color: rgba(157, 78, 221, 0.4);
    box-shadow: 0 10px 20px rgba(157, 78, 221, 0.2);
}

.action-card.highlight {
    border-color: rgba(157, 78, 221, 0.4);
    background: rgba(157, 78, 221, 0.15);
}

.milestones-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 3rem auto;
    max-width: 900px;
    width: 100%;
    max-width: 100%;
    padding-left: var(--container-padding-mobile);
    padding-right: var(--container-padding-mobile);
    box-sizing: border-box;
    margin-left: auto;
    margin-right: auto;
}

.milestone-card, .countdown-card {
    padding: 2rem;
}

.progress-container {
    margin-top: 2rem;
}

.progress-bar {
    height: 10px;
    background: rgba(157, 78, 221, 0.1);
    border-radius: 5px;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #ff00ff, #9d4edd);
    border-radius: 5px;
    position: relative;
}

.progress-glow {
    position: absolute;
    top: 0;
    right: 0;
    width: 20px;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    animation: progressGlow 2s linear infinite;
}

@keyframes progressGlow {
    from { transform: translateX(-100%); }
    to { transform: translateX(500%); }
}

@media (max-width: 768px) {
    .milestones-wrapper {
        grid-template-columns: 1fr;
    }

    .support-actions {
        flex-direction: column;
    }

    .action-card {
        margin-bottom: 1rem;
    }
}

/* Add smooth transitions */
.section-content,
.timeline-item,
.feature-card,
.token-card,
.team-role-card,
.pillar-card {
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
                opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity;
}

/* Optimize animations */
.visible {
    opacity: 1 !important;
    transform: none !important;
}

/* Reduce layout shifts */
* {
    backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Mobile First Media Queries */
@media screen and (max-width: 480px) {
    .hero-content {
        padding: 1rem;
    }

    .hero-text-container h1 {
        font-size: 2rem;
        line-height: 1.2;
    }

    .hero-badge {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1rem;
    }

    .timeline {
        padding: 1rem;
    }

    .timeline-item {
        margin-left: 1rem;
    }

    .social-links {
        flex-direction: column;
        gap: 0.5rem;
    }

    .footer-content {
        padding: 1rem;
    }

    .cta-section {
        flex-direction: column;
        gap: 1rem;
    }
}

@media screen and (min-width: 481px) and (max-width: 768px) {
    .hero-content {
        padding: 2rem;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .timeline-item {
        margin-left: 2rem;
    }

    .social-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
    .hero-content {
        padding: 3rem;
    }

    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

/* Shared Responsive Styles */
@media screen and (max-width: 768px) {

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}

/* Tablet Landscape */
@media screen and (min-width: 1024px) and (max-width: 1366px) {
    .hero-content {
        max-width: 90%;
    }
}

/* Ensure minimum content width */
@media screen and (max-width: 320px) {
    body {
        min-width: 320px;
    }
}

/* Handle tall screens */
@media screen and (min-height: 1000px) {
    .hero {
        min-height: 60vh;
    }
}

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 100;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 2px;
    background: white;
    margin: 5px 0;
    transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }
}


/* Correction pour les sections hero */
.hero, 
.vision-hero,
.token-hero {
    margin-top: 0;
    padding-top: 4rem; /* Ajustez cette valeur selon vos préférences */
    margin-top: 0 !important;
    padding-top: 0 !important; /* Supprime le padding qui crée l'espace */
}

/* Pour éviter les espaces négatifs sur mobile */
@media (max-width: 768px) {
    main {
        padding-top: 70px;
    }
    
    .hero,
    .vision-hero,
    .token-hero {
        padding-top: 2rem;
        padding-top: 0 !important;
    }
    
    /* Correction des marges négatives qui pouvaient causer des problèmes */
    section {
        margin-top: 0;
    }
}

/* S'assurer que les sections qui utilisaient margin-top: -2rem ne causent plus de chevauchement */
.features,
.about,
.roadmap,
.community-section {
    margin-top: 0;
    padding-top: 4rem;
}

/* ===== Responsive Core Improvements ===== */
/* Base responsive fixes */
html, body {
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  -webkit-text-size-adjust: 100%;
}

/* Fluid typography for better scaling */
html {
  font-size: calc(15px + 0.390625vw);
}

/* Responsive containers */
.container, 
.hero-content, 
.section-content,
.footer-content,
.token-stats,
.countdown-wrapper,
.feature-grid,
.social-grid,
.support-grid {
  width: 100%;
  max-width: 100%;
  padding-left: var(--container-padding-mobile);
  padding-right: var(--container-padding-mobile);
  box-sizing: border-box;
  margin-left: auto;
  margin-right: auto;
}

/* Improve images for responsive */
img, svg, video {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Fix overflow issues in all sections */
section {
  width: 100%;
  overflow-x: hidden;
  box-sizing: border-box;
  padding-left: var(--container-padding-mobile);
  padding-right: var(--container-padding-mobile);
}

/* ===== Grid System Improvements ===== */
.grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-gap: 1rem;
  width: 100%;
}

/* Better responsive grid layouts */
.features-grid,
.social-grid,
.support-grid,
.tokens-grid,
.milestones-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  width: 100%;
}

/* ===== Form Controls ===== */
.primary-btn,
.secondary-btn,
button {
  width: auto;
  min-height: 44px; /* Accessibility touch target size */
  white-space: normal;
}

/* ===== Improved Responsive Timeline ===== */
.timeline {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

.timeline::before {
  left: 20px;
  width: 2px;
}

.timeline-item {
  width: 100%;
  padding-left: 60px;
  padding-right: 15px;
  margin-left: 0 !important;
  margin-right: 0 !important;
  box-sizing: border-box;
}

/* ===== Media Queries ===== */
/* Mobile First Approach */
@media (min-width: 576px) {
  .container, 
  .hero-content, 
  .section-content,
  .footer-content {
    padding-left: var(--container-padding-tablet);
    padding-right: var(--container-padding-tablet);
    max-width: 540px;
  }
  
  .timeline-item {
    padding-left: 80px;
    padding-right: 20px;
  }
}

@media (min-width: 768px) {
  .container, 
  .hero-content, 
  .section-content,
  .footer-content {
    max-width: 720px;
  }
  
  section {
    padding-left: var(--container-padding-tablet);
    padding-right: var(--container-padding-tablet);
  }
  
  .hamburger {
    display: none;
  }
  
  .primary-btn,
  .secondary-btn {
    width: auto;
  }
  
  .token-stats,
  .support-actions {
    flex-direction: row;
  }
  
  /* Fix timeline for tablets */
  .timeline::before {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .timeline-item {
    width: 50%;
    padding: 0 40px;
  }
  
  .timeline-item:nth-child(odd) {
    left: 0;
  }
  
  .timeline-item:nth-child(even) {
    left: 50%;
  }
}

@media (min-width: 992px) {
  .container, 
  .hero-content, 
  .section-content,
  .footer-content {
    max-width: 960px;
    padding-left: var(--container-padding-desktop);
    padding-right: var(--container-padding-desktop);
  }
  
  section {
    padding-left: var(--container-padding-desktop);
    padding-right: var(--container-padding-desktop);
  }
  
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
}

@media (min-width: 1200px) {
  .container, 
  .hero-content, 
  .section-content,
  .footer-content {
    max-width: 1140px;
  }
}

/* ===== Fix Specific Components ===== */
/* Fix footer responsive issues */
@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .social-links {
    flex-direction: column;
    gap: 1rem;
  }
  
  .social-icon {
    width: 100%;
  }
}

/* Fix floating elements on mobile */
@media (max-width: 768px) {
  .floating-token {
    display: none;
  }
  
  .hero-grid {
    opacity: 0.5;
  }
}

/* Fix countdown on mobile */
@media (max-width: 768px) {
  .countdown {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .time-block {
    min-width: unset;
  }
}

/* Fix hero spacing */
.hero-content {
  margin-bottom: 2rem;
}


/* Optimize text wrap */
p, h1, h2, h3, h4, h5, h6, a, span {
  overflow-wrap: break-word;
  word-wrap: break-word;
  hyphens: auto;
  max-width: 100%;
}

/* Fix touch targets */
button, 
.social-icon, 
.primary-btn, 
.secondary-btn {
  min-height: 44px;
  min-width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  touch-action: manipulation;
}

/* Corriger les boutons du footer en responsive */
@media (max-width: 768px) {
  /* Amélioration du footer responsive */
  .social-links {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    align-items: center;
    gap: 1rem;
    padding: 0;
  }
  
  .social-icon {
    width: 90%;
    max-width: 280px;
    margin: 0 auto;
    padding: 0.5rem;
    box-sizing: border-box;
    justify-content: center;
  }
  
  .icon-wrapper {
    margin-right: 0.5rem;
  }
  
  .footer-content {
    width: 100%;
    max-width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
    box-sizing: border-box;
  }
  
  .footer-main {
    width: 100%;
  }
}

/* Correction de l'espace violet entre la navbar et le contenu */
main {
    padding-top: var(--navbar-height) !important;
    margin-top: 0 !important;
    background-color: var(--bg-dark) !important; /* Assure la même couleur que le fond */
}

.hero.gradient-bg, 
.vision-hero, 
.token-hero {
    background-color: var(--bg-dark) !important;
}

.navbar {
    border-bottom: none !important; /* Supprime la bordure qui pourrait causer une ligne entre la navbar et le contenu */
}

/* Assurer la bonne transition entre la navbar et le contenu */
section:first-of-type {
    margin-top: 0 !important;
    padding-top: 2rem !important; /* Ajuster selon besoin pour l'espacement */
}

/* Correction spécifique pour mobile */
@media (max-width: 768px) {
    main {
        padding-top: calc(var(--navbar-height) - 4px) !important; /* Ajustement fin pour mobile */
    }
    
    .hero, 
    .vision-hero, 
    .token-hero {
        padding-top: 0 !important;
    }
}

/* Correction pour les sections qui commencent en haut */
section:first-of-type,
.hero:first-child,
.vision-hero:first-child,
.token-hero:first-child {
  margin-top: 0 !important;
  padding-top: 4rem !important; /* Espacement pour que le contenu soit bien visible sous la navbar */
}

/* Assurons-nous que le contenu de hero commence au bon endroit */
.hero-content {
  padding-top: 2rem !important;
}

/* Correction pour les éléments d'arrière-plan */
.hero-bg-elements,
.floating-elements {
  top: 0 !important;
}

/* Correction pour le format desktop spécifiquement */
@media (min-width: 769px) {
  main {
    margin-top: var(--navbar-height) !important;
  }
  
  section:first-of-type,
  .hero:first-child,
  .vision-hero:first-child,
  .token-hero:first-child {
    padding-top: 6rem !important; /* Plus d'espacement sur desktop */
  }
}

/* Élimination définitive de la barre violette */
/* Cette section doit être placée à la toute fin de votre CSS */

/* 1. Suppression complète de la barre violette */
.navbar {
  background-color: var(--bg-dark) !important;
  border-bottom: none !important;
  box-shadow: none !important;
}

.navbar::after {
  display: none !important; /* Supprime le pseudo-élément qui pourrait créer la barre */
}

/* 2. Correction du gap entre navbar et contenu */
main {
  margin-top: var(--navbar-height) !important;
  padding-top: 0 !important;
}

/* 3. S'assurer que les sections commencent avec la même couleur de fond */
.hero, 
.vision-hero,
.token-hero,
.hero-content,
.hero.gradient-bg {
  margin-top: 0 !important;
  padding-top: 0 !important;
  border-top: none !important;
  background-color: var(--bg-dark) !important;
  position: relative;
}

/* 4. Empêcher tout border ou ligne qui pourrait causer la barre */
body::before, 
header::after,
.hero::before,
.vision-hero::before,
.token-hero::before,
main::before {
  display: none !important;
  border: none !important;
  height: 0 !important;
  content: none !important;
}

/* 5. Forcer le même fond pour tous les éléments concernés */
header, 
main,
.hero,
.hero-content,
.vision-hero, 
.token-hero {
  background-color: var(--bg-dark) !important;
}

/* 6. Solution ultime pour faire disparaître la barre violette */
.navbar + main::before {
  content: "";
  display: block;
  height: 1px; /* Cette hauteur de 1px sera invisible */
  background-color: var(--bg-dark) !important;
  position: relative;
  z-index: 2;
}

/* 7. S'assurer que le scroll-indicator (si présent) n'est pas la cause */
.scroll-indicator {
  background: linear-gradient(45deg, #ff00ff, #9d4edd) !important;
  height: 2px !important;
  top: 0 !important;
  z-index: 1100 !important;
  position: fixed !important;
}

/* SOLUTION FINALE POUR ÉLIMINER LA BARRE VIOLETTE */
/* Ajouter à la fin de votre fichier CSS */

/* 1. Augmenter la hauteur de la navbar */
:root {
  --navbar-height: 80px !important; /* Augmentation de la hauteur */
}

.navbar {
  height: var(--navbar-height) !important;
  background: var(--bg-dark) !important; /* Forcer la même couleur que le fond */
  border-bottom: none !important;
  box-shadow: none !important;
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  z-index: 1000 !important;
}

/* 2. Forcer une couleur de fond uniforme sans transparence */
.navbar, 
header, 
main, 
.hero, 
.vision-hero, 
.token-hero {
  background-color: var(--bg-dark) !important;
}

/* 3. Éliminer tous les gradients, bordures ou lignes qui pourraient causer la barre */
.navbar::after,
.navbar::before,
header::after,
header::before,
main::before,
main::after {
  display: none !important;
  content: none !important;
}

/* 4. Assurer un espacement correct entre la navbar et le contenu */
main {
  margin-top: var(--navbar-height) !important;
  padding-top: 0 !important;
  border-top: none !important;
}

/* 5. Solution compatible avec tous les types d'écran */
@media (min-width: 320px) and (max-width: 2560px) {
  .navbar {
    height: var(--navbar-height) !important;
  }
  
  main {
    margin-top: var(--navbar-height) !important;
  }
  
  .navbar-container {
    height: 100% !important;
    display: flex !important;
    align-items: center !important;
  }
}

/* 6. Assurer que le contenu commence correctement */
.hero-content, 
.vision-hero-content, 
.token-hero-content {
  padding-top: 2rem !important;
}

/* 7. Correction pour les éléments qui utilisent la navbar-height comme référence */
.scroll-indicator {
  top: var(--navbar-height) !important;
}

/* 8. Suppression de toutes les bordures inférieures potentielles */
.navbar, header {
  border-bottom: none !important;
}

/* 9. Correction pour le mode responsive */
@media (max-width: 768px) {
  :root {
    --navbar-height: 70px !important; /* Légèrement plus petite sur mobile */
  }
}

/* Ajout d'espace entre la navbar et le contenu principal */
main {
  margin-top: var(--navbar-height) !important;
  padding-top: 0 !important;
}

/* Ajout d'espace spécifique pour la section hero */
.hero {
  padding-top: 2.5rem !important; /* Espace entre navbar et première UI */
}

/* Ajustement des éléments intérieurs pour maintenir l'espacement correct */
.hero-content {
  padding-top: 1.5rem !important;
}

/* Responsive: plus d'espace sur grands écrans, moins sur petits */
@media (min-width: 992px) {
  .hero {
    padding-top: 3.5rem !important;
  }
}

@media (max-width: 768px) {
  .hero {
    padding-top: 2rem !important;
  }
  
  .hero-content {
    padding-top: 1rem !important;
  }
}

/* S'assurer que les éléments d'arrière-plan couvrent correctement l'espace */
.hero-bg-elements {
  top: 0 !important;
  height: 100% !important;
}

/* Configuration idéale pour l'espacement navbar-contenu */
.hero,
.vision-hero,
.token-hero {
  padding-top: 3rem !important; /* Espacement idéal pour desktop */
  position: relative;
  overflow: hidden;
  margin-top: 0 !important;
}

/* Ajustement précis pour les éléments du hero */
.hero-content {
  margin-top: 1rem !important;
  position: relative;
  z-index: 5;
}

/* Positionnement des éléments de fond */
.hero-bg-elements {
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  z-index: 1;
}

/* Mode responsive */
@media (max-width: 768px) {
  .hero,
  .vision-hero,
  .token-hero {
    padding-top: 2rem !important;
  }
}

/* Mode grands écrans */
@media (min-width: 1400px) {
  .hero,
  .vision-hero,
  .token-hero {
    padding-top: 4rem !important;
  }
}

