* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Styles globaux pour les icônes SVG */
svg {
    display: block;
}

.icon, .icon-large, .icon-xl {
    stroke: currentColor;
    fill: none;
    flex-shrink: 0;
}

.icon {
    width: 24px;
    height: 24px;
}

.icon-large {
    width: 48px;
    height: 48px;
}

.icon-xl {
    width: 64px;
    height: 64px;
}

.tweet-stat-icon {
    flex-shrink: 0;
}

:root {
    --primary-color: #00d4ff;
    --primary-dark: #0099cc;
    --secondary-color: #7c3aed;
    --accent-color: #f59e0b;
    --success-color: #10b981;
    --bg-dark: #0a0a0f;
    --bg-darker: #050508;
    --bg-card: #0f1117;
    --bg-card-hover: #151821;
    --text-primary: #ffffff;
    --text-secondary: #ffffff;
    --border-color: #1e293b;
    --gradient-1: linear-gradient(135deg, #00d4ff 0%, #7c3aed 50%, #f59e0b 100%);
    --gradient-2: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-3: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    --gradient-4: linear-gradient(135deg, #7c3aed 0%, #f59e0b 100%);
    --shadow-glow: 0 0 40px rgba(0, 212, 255, 0.4);
    --shadow-glow-purple: 0 0 40px rgba(124, 58, 237, 0.4);
    --shadow-glow-orange: 0 0 40px rgba(245, 158, 11, 0.4);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #000000;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Effet de réseau avec points lumineux (inspiré de CLAWD NODES) - Plus subtil sur fond noir */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, rgba(245, 158, 11, 0.15), transparent),
        radial-gradient(2px 2px at 60% 70%, rgba(245, 158, 11, 0.12), transparent),
        radial-gradient(1px 1px at 50% 50%, rgba(245, 158, 11, 0.1), transparent),
        radial-gradient(1px 1px at 80% 20%, rgba(245, 158, 11, 0.08), transparent),
        radial-gradient(2px 2px at 30% 80%, rgba(245, 158, 11, 0.12), transparent);
    background-size: 200% 200%;
    background-position: 0% 0%, 100% 0%, 50% 50%, 0% 100%, 100% 100%;
    animation: networkPulse 20s ease infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes networkPulse {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

/* Lignes de connexion entre les points */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(45deg, transparent 48%, rgba(0, 212, 255, 0.1) 49%, rgba(0, 212, 255, 0.1) 51%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, rgba(124, 58, 237, 0.08) 49%, rgba(124, 58, 237, 0.08) 51%, transparent 52%);
    background-size: 100px 100px, 150px 150px;
    background-position: 0 0, 50px 50px;
    opacity: 0.3;
    pointer-events: none;
    z-index: 0;
    animation: networkLines 30s linear infinite;
}

@keyframes networkLines {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(100px, 100px);
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    box-shadow: none;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all 0.3s ease;
}

.navbar::after {
    display: none;
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-logo {
    width: 48px;
    height: 48px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.3));
    transition: all 0.3s ease;
    animation: float 3s ease-in-out infinite;
}

.nav-logo:hover {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.5));
}

.nav-brand .token-symbol {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #ffffff;
}

/* Burger Menu */
.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 36px;
    height: 36px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: relative;
    order: -1;
    filter: none !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.burger-menu span {
    width: 100%;
    height: 3px;
    background: #ffffff;
    border-radius: 3px;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform-origin: center;
    box-shadow: 0 2px 8px rgba(255, 255, 255, 0.3);
    filter: none !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

.burger-menu.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

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

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 320px;
    height: 100vh;
    background: #000000;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border-right: 2px solid rgba(0, 212, 255, 0.3);
    box-shadow: 4px 0 60px rgba(0, 0, 0, 0.9), 
                0 0 100px rgba(0, 212, 255, 0.15);
    z-index: 10000;
    transform: translateX(-100%);
    transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    overflow-y: auto;
    will-change: transform;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    isolation: isolate;
    filter: none !important;
    pointer-events: none;
}

.mobile-menu.active {
    transform: translateX(0);
    pointer-events: auto;
}

.mobile-menu-content {
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    filter: none !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    pointer-events: auto;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid rgba(0, 212, 255, 0.2);
    filter: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    box-shadow: none !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.mobile-menu-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    filter: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    image-rendering: crisp-edges;
    -webkit-font-smoothing: antialiased;
}

.mobile-menu-title {
    font-size: 1.4rem;
    font-weight: 900;
    color: #ffffff;
    flex: 1;
    text-shadow: none !important;
    filter: none !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.mobile-menu-close {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #ffffff;
    transition: all 0.3s ease;
    filter: none !important;
    backdrop-filter: none !important;
    box-shadow: none !important;
}

.mobile-menu-close:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.mobile-menu-close svg {
    width: 20px;
    height: 20px;
    filter: none !important;
    image-rendering: crisp-edges;
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    filter: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    pointer-events: auto;
    z-index: 10;
}

.mobile-menu-link {
    display: block;
    padding: 1.5rem 1.75rem;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.25rem;
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: visible;
    margin-bottom: 0;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    filter: none !important;
    box-shadow: none !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    cursor: pointer;
    pointer-events: auto;
    z-index: 10;
    user-select: none;
}

.mobile-menu-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.2), transparent);
    transition: left 0.6s ease;
    z-index: -1;
    filter: none !important;
    backdrop-filter: none !important;
}

.mobile-menu-link:hover::before {
    left: 100%;
}

.mobile-menu-link::after {
    content: '→';
    position: absolute;
    right: 1.75rem;
    top: 50%;
    transform: translateY(-50%) translateX(-5px);
    opacity: 0.6;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1.4rem;
    color: rgba(0, 212, 255, 1);
    font-weight: 700;
}

.mobile-menu-link:hover::after {
    opacity: 1;
    transform: translateY(-50%) translateX(5px);
    color: #ffffff;
}

.mobile-menu-link:hover {
    color: #ffffff;
    background: rgba(0, 212, 255, 0.15);
    border-color: rgba(0, 212, 255, 0.4);
    transform: translateX(8px);
    box-shadow: none !important;
    filter: none !important;
}

.mobile-menu-link:active {
    transform: translateX(4px);
}

/* Overlay pour fermer le menu */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    filter: none !important;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Page de chargement */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.active {
    opacity: 1;
    visibility: visible;
}

.loader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.loader-logo-container {
    width: 160px;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: loaderFloat 2s ease-in-out infinite;
}

.loader-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 30px rgba(0, 212, 255, 0.6));
    animation: loaderPulse 2s ease-in-out infinite;
}

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

@keyframes loaderPulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

.loader-text {
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 0.2em;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
    animation: loaderTextGlow 2s ease-in-out infinite;
}

@keyframes loaderTextGlow {
    0%, 100% {
        text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
    }
    50% {
        text-shadow: 0 0 40px rgba(0, 212, 255, 0.8), 0 0 60px rgba(0, 212, 255, 0.4);
    }
}

.loader-spinner {
    position: relative;
    width: 60px;
    height: 60px;
    margin-top: 1rem;
}

.spinner-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid transparent;
    border-top-color: rgba(0, 212, 255, 0.8);
    border-radius: 50%;
    animation: loaderSpin 1.5s linear infinite;
}

.spinner-ring:nth-child(2) {
    width: 80%;
    height: 80%;
    top: 10%;
    left: 10%;
    border-top-color: rgba(124, 58, 237, 0.8);
    animation-duration: 1.2s;
    animation-direction: reverse;
}

.spinner-ring:nth-child(3) {
    width: 60%;
    height: 60%;
    top: 20%;
    left: 20%;
    border-top-color: rgba(245, 158, 11, 0.8);
    animation-duration: 1s;
}

@keyframes loaderSpin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: #000000;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    animation: pulse 8s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    animation: pulse 10s ease-in-out infinite;
    filter: blur(60px);
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    animation: fadeInUp 1s ease-out;
    text-shadow: 0 0 40px rgba(0, 212, 255, 0.3);
}

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

.gradient-text {
    color: #ffffff;
    position: relative;
    display: inline-block;
}

.gradient-text::after {
    display: none;
}

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

.hero-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
    animation: fadeInUp 1s ease-out 0.3s both;
    max-width: 600px;
}

.hero-actions {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.5s both;
    justify-content: flex-start;
    margin-bottom: 2rem;
}

.hero-coming-soon {
    margin-top: 1rem;
    opacity: 1;
    display: block;
    visibility: visible;
}

.coming-soon-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(30, 41, 59, 0.6);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.coming-soon-badge svg {
    color: #ffffff;
}

.coming-soon-badge:hover {
    background: rgba(30, 41, 59, 0.8);
    border-color: rgba(0, 212, 255, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 212, 255, 0.2);
    color: #ffffff;
}

.coming-soon-badge svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: inherit;
}

.btn-primary {
    background: linear-gradient(135deg, #00d4ff 0%, #7c3aed 100%);
    color: white;
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.5), 0 4px 15px rgba(0, 212, 255, 0.3);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 212, 255, 0.3);
}

.btn-primary::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.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 0 50px rgba(0, 212, 255, 0.6), 0 10px 30px rgba(0, 212, 255, 0.3);
}

.btn-secondary {
    background: rgba(15, 17, 23, 0.6);
    color: var(--text-primary);
    border: 1px solid rgba(0, 212, 255, 0.2);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

.btn-secondary:hover {
    background: rgba(15, 17, 23, 0.8);
    border-color: rgba(0, 212, 255, 0.4);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    box-shadow: 0 8px 32px 0 rgba(0, 212, 255, 0.2);
}

.btn-twitter {
    background: linear-gradient(135deg, #1DA1F2 0%, #0d8bd9 100%);
    color: white;
    box-shadow: 0 0 30px rgba(29, 161, 242, 0.5), 0 4px 15px rgba(29, 161, 242, 0.3);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(29, 161, 242, 0.3);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
}

.btn-twitter svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.btn-twitter::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.5s;
}

.btn-twitter:hover::before {
    left: 100%;
}

.btn-twitter:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 0 50px rgba(29, 161, 242, 0.6), 0 10px 30px rgba(29, 161, 242, 0.3);
    color: white;
    text-decoration: none;
}

.btn-download {
    background: rgba(0, 212, 255, 0.15);
    color: #ffffff;
    border: 1px solid rgba(0, 212, 255, 0.4);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 8px 32px 0 rgba(0, 212, 255, 0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-download svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.btn-download:hover {
    background: rgba(0, 212, 255, 0.25);
    border-color: rgba(0, 212, 255, 0.6);
    transform: translateY(-3px);
    box-shadow: 0 0 40px rgba(0, 212, 255, 0.4), 0 10px 30px rgba(0, 212, 255, 0.2);
    color: #ffffff;
    text-decoration: none;
}

.btn-download:active {
    transform: translateY(-1px);
}

/* Hero Visual */
.hero-visual {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    gap: 2rem;
}

/* Terminal Style (inspiré de CLAWD NODES) */
.terminal-container {
    width: 100%;
    max-width: 600px;
    background: rgba(10, 10, 15, 0.95);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 12px;
    overflow: hidden;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), 0 0 40px rgba(0, 212, 255, 0.2);
    animation: fadeInUp 1s ease-out 0.5s both;
}

.terminal-header {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    background: rgba(15, 17, 23, 0.8);
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
}

.terminal-controls {
    display: flex;
    gap: 8px;
    margin-right: 12px;
}

.terminal-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.terminal-dot.red {
    background: #ff5f56;
}

.terminal-dot.yellow {
    background: #ffbd2e;
}

.terminal-dot.green {
    background: #27c93f;
}

.terminal-title {
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: lowercase;
    letter-spacing: 0.5px;
}

.terminal-body {
    padding: 20px;
    font-family: 'Courier New', 'Monaco', monospace;
    font-size: 0.9rem;
    line-height: 1.8;
    min-height: 180px;
}

.terminal-line {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.terminal-prompt {
    color: var(--primary-color);
    font-weight: 600;
}

.terminal-command {
    color: var(--text-primary);
}

.terminal-line.success {
    color: #ffffff;
}

.terminal-check {
    color: #ffffff;
    font-weight: bold;
    margin-right: 4px;
}

.terminal-cursor {
    color: #ffffff;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0;
    }
}

.hero-logo-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-logo {
    width: 200px;
    height: 200px;
    object-fit: contain;
    filter: drop-shadow(0 0 30px rgba(0, 212, 255, 0.4)) drop-shadow(0 0 60px rgba(124, 58, 237, 0.3));
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    animation: float 4s ease-in-out infinite, pulseIcon 3s ease-in-out infinite;
    background: rgba(15, 17, 23, 0.3);
    border-radius: 30px;
    padding: 1.5rem;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(0, 212, 255, 0.2);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37), inset 0 0 20px rgba(255, 255, 255, 0.05);
}

.hero-logo:hover {
    transform: scale(1.05) rotate(2deg);
    filter: drop-shadow(0 0 40px rgba(0, 212, 255, 0.6)) drop-shadow(0 0 80px rgba(124, 58, 237, 0.4));
    box-shadow: 0 8px 32px 0 rgba(0, 212, 255, 0.3), inset 0 0 30px rgba(255, 255, 255, 0.1);
    border-color: rgba(0, 212, 255, 0.4);
}

/* Crypto Card */
.crypto-card {
    position: relative;
    background: rgba(15, 17, 23, 0.7);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 32px;
    padding: 3rem;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37), 0 0 40px rgba(0, 212, 255, 0.2);
    overflow: hidden;
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.crypto-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(0, 212, 255, 0.1), transparent 30%);
    animation: rotate 10s linear infinite;
}

.crypto-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.4), 0 0 80px rgba(124, 58, 237, 0.3), 0 8px 32px 0 rgba(0, 0, 0, 0.5);
    border-color: rgba(0, 212, 255, 0.5);
    background: rgba(15, 17, 23, 0.85);
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
}

.card-glow {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.2) 0%, rgba(124, 58, 237, 0.15) 30%, transparent 70%);
    animation: rotate 15s linear infinite;
    filter: blur(40px);
}

.card-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}


.token-icon {
    font-size: 5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.token-name {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: #ffffff;
    letter-spacing: 0.05em;
}

.token-price {
    color: var(--text-secondary);
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 1rem;
    padding: 0.75rem 1.5rem;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 16px;
    display: inline-block;
    border: 1px solid rgba(0, 212, 255, 0.25);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    box-shadow: 0 8px 32px 0 rgba(0, 212, 255, 0.2), inset 0 0 15px rgba(0, 212, 255, 0.05);
}

/* Search Section */
.search-section {
    padding: 3rem 0;
    background: #000000;
    position: relative;
}

.search-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 50% 50%, rgba(0, 212, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.search-section .container {
    position: relative;
    z-index: 1;
}

.search-box {
    display: flex;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.search-input {
    flex: 1;
    padding: 1.25rem 1.5rem;
    background: rgba(15, 17, 23, 0.6);
    border: 1px solid rgba(0, 212, 255, 0.15);
    border-radius: 20px;
    color: var(--text-primary);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

.search-input:focus {
    outline: none;
    border-color: rgba(0, 212, 255, 0.5);
    box-shadow: 0 0 0 4px rgba(0, 212, 255, 0.1), 0 0 40px rgba(0, 212, 255, 0.3), 0 8px 32px 0 rgba(0, 0, 0, 0.5);
    transform: translateY(-2px);
    background: rgba(15, 17, 23, 0.8);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
}

.search-btn {
    padding: 1.25rem 2rem;
    background: var(--gradient-1);
    border: none;
    border-radius: 16px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.search-btn::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.5s;
}

.search-btn:hover::before {
    left: 100%;
}

.search-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 40px rgba(0, 212, 255, 0.4), 0 0 30px rgba(124, 58, 237, 0.3);
}

/* Stats Section */
.stats-section {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 8s ease-in-out infinite;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 3rem;
    color: #ffffff;
    letter-spacing: -0.02em;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--gradient-1);
    border-radius: 2px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.stat-card {
    background: rgba(15, 17, 23, 0.6);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 24px;
    padding: 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-1);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.stat-card:hover::before {
    opacity: 0.05;
}

.stat-card > * {
    position: relative;
    z-index: 1;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-glow);
}

.stat-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1.5rem;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 16px;
    border: 1px solid rgba(0, 212, 255, 0.25);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 8px 32px 0 rgba(0, 212, 255, 0.15);
    transition: all 0.3s ease;
    padding: 0.75rem;
}

.stat-icon svg {
    width: 100%;
    height: 100%;
}

.stat-card:hover .stat-icon {
    background: rgba(0, 212, 255, 0.2);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.4), 0 8px 32px 0 rgba(0, 212, 255, 0.25);
    border-color: rgba(0, 212, 255, 0.4);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Tweets Section */
.tweets-section {
    padding: 3rem 0;
    background: #000000;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    min-height: 500px;
    position: relative;
}

.tweets-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(124, 58, 237, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 212, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.tweets-section .container {
    position: relative;
    z-index: 1;
}

.tweets-container {
    display: grid;
    gap: 1.5rem;
    min-height: 100px; /* Force une hauteur minimale */
}

/* Debug - Forcer la visibilité */
.tweet-card {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.tweet-card {
    background: rgba(15, 17, 23, 0.6);
    border: 1px solid rgba(0, 212, 255, 0.15);
    border-radius: 24px;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative;
    z-index: 1;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    overflow: hidden;
}

.tweet-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-1);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

.tweet-card:hover {
    transform: translateY(-8px) translateX(5px);
    border-color: rgba(0, 212, 255, 0.4);
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.25), 0 0 40px rgba(124, 58, 237, 0.15), 0 8px 32px 0 rgba(0, 0, 0, 0.5);
    background: rgba(15, 17, 23, 0.8);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
}

.tweet-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
}

.tweet-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--gradient-1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.4rem;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3), inset 0 0 15px rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px) saturate(180%);
    -webkit-backdrop-filter: blur(10px) saturate(180%);
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.tweet-card:hover .tweet-avatar {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 40px rgba(0, 212, 255, 0.6), inset 0 0 20px rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.2);
}

.tweet-author {
    flex: 1;
}

.tweet-author-name {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.tweet-author-handle {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.tweet-time {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.tweet-text {
    margin-bottom: 1rem;
    line-height: 1.7;
    font-size: 1.05rem;
    color: var(--text-primary);
}

.tweet-text a {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tweet-text .crypto-mention {
    color: #ffffff;
    font-weight: 600;
}

.tweet-text .hashtag {
    color: #ffffff;
    font-weight: 500;
}

.tweet-text .mention {
    color: #ffffff;
    font-weight: 500;
}

.tweet-text .tweet-link {
    color: #ffffff;
    text-decoration: underline;
}

/* PumpFun Section */
.pumpfun-section {
    padding: 4rem 0;
    background: #000000;
    position: relative;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 10;
    width: 100%;
    min-height: 400px;
}

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

.pumpfun-card {
    background: rgba(15, 17, 23, 0.6);
    border: 1px solid rgba(0, 212, 255, 0.15);
    border-radius: 24px;
    padding: 2rem;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

.pumpfun-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
}

.pumpfun-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
}

.trending-badge {
    background: rgba(245, 158, 11, 0.2);
    color: #ffffff;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

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

.pumpfun-stat {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.pumpfun-stat .stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
}

.pumpfun-stat .stat-value {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 700;
}

/* Recommendation Card */
.recommendation-card {
    background: rgba(15, 17, 23, 0.6);
    border: 1px solid rgba(0, 212, 255, 0.15);
    border-radius: 24px;
    padding: 2rem;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

.recommendation-card.recommendation-strong_buy {
    border-color: rgba(16, 185, 129, 0.4);
    background: rgba(16, 185, 129, 0.05);
}

.recommendation-card.recommendation-buy {
    border-color: rgba(0, 212, 255, 0.4);
    background: rgba(0, 212, 255, 0.05);
}

.recommendation-card.recommendation-neutral {
    border-color: rgba(245, 158, 11, 0.4);
    background: rgba(245, 158, 11, 0.05);
}

.recommendation-card.recommendation-avoid {
    border-color: rgba(239, 68, 68, 0.4);
    background: rgba(239, 68, 68, 0.05);
}

.recommendation-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
}

.recommendation-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.confidence-score {
    background: rgba(0, 212, 255, 0.2);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9rem;
    border: 1px solid rgba(0, 212, 255, 0.3);
}

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

.action-badge {
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.action-badge.action-strong_buy {
    background: rgba(16, 185, 129, 0.2);
    color: #ffffff;
    border: 1px solid rgba(16, 185, 129, 0.4);
}

.action-badge.action-buy {
    background: rgba(0, 212, 255, 0.2);
    color: #ffffff;
    border: 1px solid rgba(0, 212, 255, 0.4);
}

.action-badge.action-neutral {
    background: rgba(245, 158, 11, 0.2);
    color: #ffffff;
    border: 1px solid rgba(245, 158, 11, 0.4);
}

.action-badge.action-avoid {
    background: rgba(239, 68, 68, 0.2);
    color: #ffffff;
    border: 1px solid rgba(239, 68, 68, 0.4);
}

.recommendation-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
}

.recommendation-reasons {
    margin-top: 1.5rem;
}

.recommendation-reasons h4 {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

.recommendation-reasons ul {
    list-style: none;
    padding: 0;
}

.recommendation-reasons li {
    color: var(--text-primary);
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.recommendation-reasons li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.recommendation-summary {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 12px;
    border-left: 3px solid var(--primary-color);
    color: var(--text-primary);
    font-style: italic;
}

@media (max-width: 768px) {
    .analysis-container {
        grid-template-columns: 1fr;
    }
    
    .pumpfun-stats {
        grid-template-columns: 1fr;
    }
}

.tweet-text a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

.tweet-stats {
    display: flex;
    gap: 2rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 212, 255, 0.1);
    margin-top: 1rem;
}

.tweet-stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    cursor: default;
}

.tweet-stat-icon {
    width: 18px;
    height: 18px;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.tweet-stat:hover {
    color: var(--primary-color);
    transform: scale(1.1);
}

.tweet-stat:hover .tweet-stat-icon {
    color: var(--primary-color);
    transform: scale(1.2);
}

/* Hero Badge */
.hero-badge {
    display: inline-block;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.badge-text {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.25);
    border-radius: 50px;
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 8px 32px 0 rgba(0, 212, 255, 0.2);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-stat {
    text-align: center;
}

.hero-stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.hero-stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Story Section */
.story-section {
    padding: 3rem 0;
    background: #000000;
    position: relative;
    overflow: hidden;
}

.story-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 50%, rgba(124, 58, 237, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(0, 212, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.story-timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    padding: 2rem 0;
}

.story-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gradient-1);
    transform: translateX(-50%);
}

.story-item {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 4rem;
    position: relative;
    animation: fadeInUp 0.6s ease-out both;
}

.story-item:nth-child(even) {
    flex-direction: row-reverse;
}

.story-item:nth-child(1) { animation-delay: 0.1s; }
.story-item:nth-child(2) { animation-delay: 0.3s; }
.story-item:nth-child(3) { animation-delay: 0.5s; }

.story-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: rgba(0, 212, 255, 0.15);
    border: 2px solid rgba(0, 212, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 32px 0 rgba(0, 212, 255, 0.3), inset 0 0 20px rgba(0, 212, 255, 0.1);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    position: relative;
    z-index: 2;
    animation: float 3s ease-in-out infinite;
    color: var(--primary-color);
    padding: 1.25rem;
    transition: all 0.3s ease;
}

.story-item:hover .story-icon {
    background: rgba(0, 212, 255, 0.25);
    border-color: rgba(0, 212, 255, 0.5);
    box-shadow: 0 8px 32px 0 rgba(0, 212, 255, 0.5), inset 0 0 30px rgba(0, 212, 255, 0.2);
    transform: scale(1.1);
}

.story-icon svg {
    width: 100%;
    height: 100%;
}

.story-item:nth-child(2) .story-icon {
    animation-delay: 0.5s;
}

.story-item:nth-child(3) .story-icon {
    animation-delay: 1s;
}

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

.story-content {
    flex: 1;
    background: rgba(15, 17, 23, 0.6);
    border: 1px solid rgba(0, 212, 255, 0.15);
    border-radius: 24px;
    padding: 2rem;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    transition: all 0.3s ease;
}

.story-content:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 212, 255, 0.4);
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.25), 0 0 40px rgba(124, 58, 237, 0.15), 0 8px 32px 0 rgba(0, 0, 0, 0.5);
    background: rgba(15, 17, 23, 0.8);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
}

.story-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.story-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Features Section */
.features-section {
    padding: 6rem 0;
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: rgba(15, 17, 23, 0.6);
    border: 1px solid rgba(0, 212, 255, 0.15);
    border-radius: 24px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(0, 212, 255, 0.4);
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.25), 0 0 40px rgba(124, 58, 237, 0.15), 0 8px 32px 0 rgba(0, 0, 0, 0.5);
    background: rgba(15, 17, 23, 0.8);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(0, 212, 255, 0.25);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 8px 32px 0 rgba(0, 212, 255, 0.2);
    transition: all 0.3s ease;
    animation: pulseIcon 2s ease-in-out infinite;
    padding: 1rem;
}

.feature-icon svg {
    width: 100%;
    height: 100%;
}

.feature-card:hover .feature-icon {
    background: rgba(0, 212, 255, 0.2);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 40px rgba(0, 212, 255, 0.5), 0 8px 32px 0 rgba(0, 212, 255, 0.3);
    border-color: rgba(0, 212, 255, 0.4);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
}

@keyframes pulseIcon {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* About Section */
.about-section {
    padding: 3rem 0;
    background: #000000;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(15, 17, 23, 0.6);
    border: 1px solid rgba(0, 212, 255, 0.15);
    border-radius: 24px;
    padding: 3rem;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* Coming Soon Section */
.coming-soon-section {
    padding: 6rem 0;
    background: #000000;
    position: relative;
    overflow: hidden;
}

.coming-soon-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 50%, rgba(124, 58, 237, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(0, 212, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.coming-soon-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.coming-soon-section .section-title {
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.03em;
    text-align: center;
    position: relative;
    padding-bottom: 2rem;
    text-shadow: none;
}

.coming-soon-section .section-title::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.3) 0%, transparent 70%);
    filter: blur(60px);
    z-index: -1;
    animation: titleGlow 3s ease-in-out infinite;
}

.coming-soon-section .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.8), rgba(124, 58, 237, 0.8), rgba(0, 212, 255, 0.8), transparent);
    border-radius: 2px;
    animation: titleLine 2s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% {
        opacity: 0.5;
        transform: translateX(-50%) scale(1);
    }
    50% {
        opacity: 0.8;
        transform: translateX(-50%) scale(1.2);
    }
}

@keyframes titleLine {
    0%, 100% {
        opacity: 0.6;
        width: 150px;
    }
    50% {
        opacity: 1;
        width: 200px;
    }
}

.coming-soon-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto 4rem;
    text-align: center;
    line-height: 1.8;
    font-weight: 400;
}

.coming-soon-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.coming-soon-feature {
    background: rgba(15, 17, 23, 0.6);
    border: 1px solid rgba(0, 212, 255, 0.15);
    border-radius: 24px;
    padding: 3rem;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

.coming-soon-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.coming-soon-feature:hover::before {
    left: 100%;
}

.coming-soon-feature:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 212, 255, 0.4);
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.25), 0 0 40px rgba(124, 58, 237, 0.15), 0 8px 32px 0 rgba(0, 0, 0, 0.5);
    background: rgba(15, 17, 23, 0.8);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
}

.feature-icon-wrapper {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 16px;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.coming-soon-feature:hover .feature-icon-wrapper {
    background: rgba(0, 212, 255, 0.15);
    border-color: rgba(0, 212, 255, 0.3);
    transform: scale(1.05);
}

.feature-icon-large {
    width: 40px;
    height: 40px;
    color: #ffffff;
    stroke: currentColor;
}

.coming-soon-feature h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.coming-soon-feature p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.coming-soon-feature strong {
    color: #ffffff;
    font-weight: 600;
}

.coming-soon-cta {
    background: rgba(15, 17, 23, 0.6);
    border: 1px solid rgba(0, 212, 255, 0.15);
    border-radius: 24px;
    padding: 4rem;
    text-align: center;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    transition: all 0.3s ease;
}

.coming-soon-cta:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 212, 255, 0.4);
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.25), 0 0 40px rgba(124, 58, 237, 0.15), 0 8px 32px 0 rgba(0, 0, 0, 0.5);
    background: rgba(15, 17, 23, 0.8);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
}

.cta-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.cta-content > p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    line-height: 1.8;
}

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

.btn-primary,
.btn-secondary {
    padding: 1rem 2.5rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    border: 1px solid transparent;
}

.btn-primary {
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    color: #ffffff;
    font-weight: 600;
}

.btn-primary:hover {
    background: rgba(0, 212, 255, 0.2);
    border-color: rgba(0, 212, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .coming-soon-title {
        font-size: 2.5rem;
    }
    
    .coming-soon-features {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .coming-soon-feature {
        padding: 2rem;
    }
    
    .coming-soon-cta {
        padding: 2.5rem 1.5rem;
    }
    
    .cta-content h3 {
        font-size: 1.75rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }
}

/* Footer */
.footer {
    padding: 3rem 0;
    background: #000000;
    text-align: center;
    color: var(--text-secondary);
    border-top: 1px solid var(--border-color);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--gradient-1);
    opacity: 0.5;
}

.footer p {
    font-size: 0.95rem;
    color: #ffffff;
    font-weight: 600;
}

/* Loading States */
.loading-state {
    text-align: center;
    padding: 3rem;
    color: var(--text-secondary);
    background: rgba(15, 17, 23, 0.6);
    border-radius: 24px;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(0, 212, 255, 0.15);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

.spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(0, 212, 255, 0.2);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.spinner-large {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(0, 212, 255, 0.2);
    border-top-color: var(--primary-color);
    border-right-color: rgba(124, 58, 237, 0.5);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.4);
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.loading-overlay.hidden {
    display: none;
}


/* Responsive */
/* Mobile Optimizations */
@media (max-width: 768px) {
    /* Container padding */
    .container {
        padding: 0 1.5rem;
    }
    
    /* Navbar */
    .navbar {
        padding: 1rem 0;
    }
    
    .navbar .container {
        padding: 0 1.5rem;
        justify-content: flex-start;
    }
    
    .burger-menu {
        display: flex;
        order: -1;
        margin-right: 1rem;
    }
    
    .nav-brand {
        gap: 0.5rem;
        margin-left: auto;
        margin-right: auto;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .nav-logo {
        width: 64px;
        height: 64px;
    }
    
    .nav-brand .token-symbol {
        font-size: 1.1rem;
    }
    
    .nav-links {
        display: none;
    }
    
    /* Hero Section */
    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1.5rem;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }
    
    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-visual {
        gap: 1.5rem;
    }
    
    .terminal-container {
        max-width: 100%;
    }
    
    .terminal-body {
        padding: 15px;
        font-size: 0.8rem;
    }
    
    /* Search Section */
    .search-section {
        padding: 3rem 0;
    }
    
    .search-box {
        flex-direction: column;
        gap: 1rem;
    }
    
    .search-input {
        width: 100%;
        font-size: 1rem;
        padding: 1rem;
    }
    
    .search-btn {
        width: 100%;
        padding: 1rem;
        font-size: 1rem;
    }
    
    /* Story Section */
    .story-section {
        padding: 4rem 0;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .story-timeline::before {
        left: 20px;
    }
    
    .story-item {
        flex-direction: row !important;
        padding-left: 3rem;
        margin-bottom: 2rem;
    }
    
    .story-icon {
        position: absolute;
        left: 0;
        width: 40px;
        height: 40px;
    }
    
    .story-content h3 {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }
    
    .story-content p {
        font-size: 0.95rem;
        line-height: 1.7;
    }
    
    /* Features Section */
    .features-section {
        padding: 4rem 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-card {
        padding: 2rem;
    }
    
    .feature-card h3 {
        font-size: 1.1rem;
    }
    
    .feature-card p {
        font-size: 0.9rem;
    }
    
    /* Tokenomics Section */
    .tokenomics-section {
        padding: 4rem 0;
    }
    
    .tokenomics-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .tokenomics-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .tokenomics-stat-card {
        padding: 1.5rem;
    }
    
    .stat-value {
        font-size: 1.75rem;
    }
    
    .doughnut-chart {
        width: 250px;
        height: 250px;
    }
    
    /* FAQ Section */
    .faq-section {
        padding: 4rem 0;
    }
    
    .faq-title {
        font-size: 2rem;
    }
    
    .faq-item {
        margin-bottom: 1rem;
    }
    
    .faq-question {
        padding: 1rem;
        font-size: 0.95rem;
    }
    
    .faq-answer {
        padding: 0 1rem 1rem;
        font-size: 0.9rem;
    }
    
    /* Coming Soon Section */
    .coming-soon-section {
        padding: 4rem 0;
    }
    
    .coming-soon-section .section-title {
        font-size: 2.25rem;
        padding-bottom: 1.5rem;
    }
    
    .coming-soon-section .section-title::after {
        width: 100px;
    }
    
    .coming-soon-section .section-title::before {
        width: 150px;
        height: 150px;
    }
    
    .coming-soon-subtitle {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }
    
    .coming-soon-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .coming-soon-feature {
        padding: 2rem;
    }
    
    .coming-soon-feature h3 {
        font-size: 1.25rem;
    }
    
    .coming-soon-feature p {
        font-size: 0.95rem;
    }
    
    .coming-soon-cta {
        padding: 2rem 1.5rem;
    }
    
    .cta-content h3 {
        font-size: 1.5rem;
    }
    
    .cta-content > p {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
    }
    
    /* Footer */
    .footer {
        padding: 2rem 0;
    }
    
    /* Stats Grid */
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    /* Mobile Menu */
    .mobile-menu {
        max-width: 280px;
    }
    
    .mobile-menu-content {
        padding: 1.5rem;
    }
    
    .mobile-menu-link {
        padding: 1.25rem 1.5rem;
        font-size: 1.15rem;
        font-weight: 700;
    }
    
    .mobile-menu-title {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .nav-logo {
        width: 80px;
        height: 80px;
    }
    
    .nav-brand .token-symbol {
        font-size: 0.95rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .navbar .container {
        padding: 0 1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

/* ============================================
   TOKENOMICS SECTION
   ============================================ */
.tokenomics-section {
    padding: 3rem 0;
    background: #000000;
    position: relative;
    overflow: hidden;
}

.tokenomics-label {
    text-align: center;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 1rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.tokenomics-title {
    text-align: center;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 4rem;
    line-height: 1.2;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.2s forwards;
}

.title-white {
    color: #ffffff;
    display: block;
}

.title-orange {
    color: #ffffff;
    display: block;
}

.tokenomics-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 4rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.4s forwards;
}

.tokenomics-stat-card {
    background: rgba(30, 41, 59, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tokenomics-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(245, 158, 11, 0.1), transparent);
    transition: left 0.5s ease;
}

.tokenomics-stat-card:hover::before {
    left: 100%;
}

.tokenomics-stat-card:hover {
    transform: translateY(-5px);
    border-color: rgba(245, 158, 11, 0.5);
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.2);
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.stat-subvalue {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.tokenomics-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
    align-items: start;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.6s forwards;
}

.tokenomics-chart-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.doughnut-chart {
    position: relative;
    width: 300px;
    height: 300px;
    /* Animation désactivée - cercle fixe */
}

/* Hide center content */
.chart-center-content {
    display: none;
}

.chart-svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.chart-ring,
.chart-ring-secondary,
.chart-ring-tertiary,
.chart-ring-quaternary {
    /* Pas d'animation - cercles fixes */
}

.chart-center {
    fill: #000000;
}

.chart-center-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
}

.chart-icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 0.5rem;
    display: block;
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(245, 158, 11, 0.3));
}

.chart-token {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.05em;
    text-align: center;
    margin: 0;
    width: 100%;
}

.chart-legend {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: block;
}

.fee-distribution {
    background: rgba(30, 41, 59, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: 12px;
    padding: 2rem;
}

.fee-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2rem;
}

.fee-structure {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.fee-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.fee-main {
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.fee-primary {
    padding-left: 1.5rem;
    color: #ffffff;
    font-weight: 500;
}

.fee-secondary {
    padding-left: 3rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

.fee-arrow {
    width: 16px;
    height: 16px;
    color: #ffffff;
    flex-shrink: 0;
}

.fee-arrow-l {
    width: 14px;
    height: 14px;
    color: #ffffff;
    flex-shrink: 0;
}

.fee-icon {
    width: 14px;
    height: 14px;
    color: #ffffff;
    flex-shrink: 0;
}

.fee-branch {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.fee-sub-branch {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.tokenomics-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.8s forwards;
}

.tokenomics-feature-card {
    background: rgba(30, 41, 59, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.tokenomics-feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(245, 158, 11, 0.5);
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.2);
}

.tokenomics-feature-card .feature-icon {
    width: 48px;
    height: 48px;
    color: #ffffff;
    margin: 0 auto 1rem;
    display: block;
}

.tokenomics-feature-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.tokenomics-feature-card p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
    padding: 3rem 0;
    background: #000000;
    position: relative;
}

.faq-label {
    text-align: center;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 1rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.faq-title {
    text-align: center;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 4rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.2s forwards;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.4s forwards;
}

.faq-item {
    background: rgba(30, 41, 59, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(245, 158, 11, 0.4);
}

.faq-item.active {
    border-color: rgba(245, 158, 11, 0.6);
}

.faq-question {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(245, 158, 11, 0.05);
}

.faq-question span {
    font-size: 1.125rem;
    font-weight: 600;
    color: #ffffff;
    flex: 1;
}

.faq-chevron {
    width: 24px;
    height: 24px;
    color: #ffffff;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-chevron {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 2rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 2rem 1.5rem 2rem;
}

.faq-answer p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Animations */
@keyframes rotateChart {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes chartFill {
    0% {
        stroke-dashoffset: 502.65;
    }
    100% {
        stroke-dashoffset: 0;
    }
}

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

/* Ensure logo stays centered during animation */
.chart-icon {
    transform-origin: center center;
}

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

/* Responsive Tokenomics & FAQ */
@media (max-width: 768px) {
    .tokenomics-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .doughnut-chart {
        width: 250px;
        height: 250px;
    }
    
    .tokenomics-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tokenomics-features {
        grid-template-columns: 1fr;
    }
    
    .faq-question {
        padding: 1.25rem 1.5rem;
    }
    
    .faq-question span {
        font-size: 1rem;
    }
    
    .faq-answer {
        padding: 0 1.5rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1.5rem 1.25rem 1.5rem;
    }
}

/* ============================================
   RESULTS MODAL/POPUP
   ============================================ */
.results-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.results-modal.hidden {
    display: none;
}

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1;
}

.modal-content {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 1400px;
    max-height: 90vh;
    background: rgba(0, 0, 0, 0.95);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.4), 0 0 100px rgba(0, 212, 255, 0.1);
    animation: modalSlideIn 0.4s ease;
    backdrop-filter: blur(20px);
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-header {
    padding: 2rem;
    border-bottom: 1px solid rgba(245, 158, 11, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(30, 41, 59, 0.3);
    backdrop-filter: blur(10px);
    gap: 1rem;
}

.modal-header-actions {
    display: flex !important;
    align-items: center;
    gap: 1rem;
    visibility: visible !important;
    opacity: 1 !important;
    flex-shrink: 0;
}

.modal-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
    flex: 1;
}

.modal-download-btn {
    display: flex !important;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(0, 212, 255, 0.2) !important;
    border: 1px solid rgba(0, 212, 255, 0.5) !important;
    border-radius: 12px;
    color: #ffffff !important;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: none !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative;
    z-index: 10;
    white-space: nowrap;
    min-width: fit-content;
}

.modal-download-btn:hover {
    background: rgba(0, 212, 255, 0.2);
    border-color: rgba(0, 212, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 212, 255, 0.3);
}

.modal-download-btn:active {
    transform: translateY(0);
}

.modal-download-btn svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    flex-shrink: 0;
}

.modal-download-btn span {
    white-space: nowrap;
}

.modal-close {
    background: transparent;
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 8px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #ffffff;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: rgba(245, 158, 11, 0.1);
    border-color: rgba(245, 158, 11, 0.5);
    transform: rotate(90deg);
}

.modal-close svg {
    width: 24px;
    height: 24px;
}

.modal-body {
    padding: 2rem;
    overflow-y: auto;
    flex: 1;
}

.modal-results-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.modal-section {
    background: rgba(30, 41, 59, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.modal-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.3), transparent);
}

.modal-section:hover {
    border-color: rgba(0, 212, 255, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 212, 255, 0.15);
}

.modal-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(245, 158, 11, 0.1);
}

.modal-section-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.trending-badge {
    background: rgba(245, 158, 11, 0.15);
    color: #ffffff;
    padding: 0.375rem 0.875rem;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    border: 1px solid rgba(245, 158, 11, 0.3);
    backdrop-filter: blur(10px);
}

.confidence-badge {
    background: rgba(0, 212, 255, 0.15);
    color: #ffffff;
    padding: 0.375rem 0.875rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 700;
    border: 1px solid rgba(0, 212, 255, 0.3);
    backdrop-filter: blur(10px);
}

.tweet-count {
    background: rgba(124, 58, 237, 0.15);
    color: #ffffff;
    padding: 0.375rem 0.875rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 700;
    border: 1px solid rgba(124, 58, 237, 0.3);
    backdrop-filter: blur(10px);
}

.modal-pumpfun-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.modal-stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.modal-stat-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.modal-stat-value {
    font-size: 1.125rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

.modal-recommendation {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.recommendation-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 8px;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.recommendation-badge.recommendation-strong_buy,
.recommendation-badge.recommendation-buy {
    background: rgba(16, 185, 129, 0.15);
    border-color: rgba(16, 185, 129, 0.4);
}

.recommendation-badge.recommendation-buy .action-badge {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.recommendation-badge.recommendation-neutral {
    background: rgba(30, 41, 59, 0.6);
    border-color: rgba(0, 212, 255, 0.3);
}

.recommendation-badge.recommendation-neutral .action-badge {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.recommendation-badge.recommendation-avoid {
    background: rgba(239, 68, 68, 0.15);
    border-color: rgba(239, 68, 68, 0.4);
}

.recommendation-badge.recommendation-avoid .action-badge {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

.action-badge {
    background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(0, 212, 255, 0.3);
}


.recommendation-text {
    font-size: 1.125rem;
    font-weight: 700;
    color: #ffffff;
}

.recommendation-reasons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.recommendation-reasons h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

.recommendation-reasons ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.recommendation-reasons li {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    padding-left: 1.5rem;
    position: relative;
}

.recommendation-reasons li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #00d4ff;
    font-weight: 700;
}

.recommendation-summary {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.6;
    padding: 1.25rem;
    background: rgba(0, 212, 255, 0.05);
    border-radius: 12px;
    border-left: 3px solid #00d4ff;
    backdrop-filter: blur(10px);
}

.tweets-section-modal {
    grid-column: 1 / -1;
}

.modal-tweets-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-height: 400px;
    overflow-y: auto;
}

.modal-tweet-card {
    background: rgba(30, 41, 59, 0.4);
    border: 1px solid rgba(0, 212, 255, 0.15);
    border-radius: 12px;
    padding: 1.25rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.modal-tweet-card:hover {
    border-color: rgba(0, 212, 255, 0.4);
    transform: translateX(5px);
    background: rgba(30, 41, 59, 0.6);
    box-shadow: 0 4px 16px rgba(0, 212, 255, 0.1);
}

.modal-tweet-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.modal-tweet-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00d4ff, #7c3aed);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

.modal-tweet-author {
    flex: 1;
}

.modal-tweet-name {
    font-weight: 600;
    color: #ffffff;
    font-size: 0.95rem;
}

.modal-tweet-handle {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

.modal-tweet-time {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
}

.modal-tweet-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0.75rem;
}

.modal-tweet-stats {
    display: flex;
    gap: 1.5rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(0, 212, 255, 0.1);
}

.modal-tweet-stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

.modal-tweet-stat svg {
    width: 16px;
    height: 16px;
    color: #ffffff;
    transition: color 0.3s ease;
}

.modal-tweet-stat:hover svg {
    color: #00d4ff;
}

.no-tweets {
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    padding: 2rem;
}

/* Responsive Modal */
@media (max-width: 1024px) {
    .modal-results-grid {
        grid-template-columns: 1fr;
    }
    
    .modal-content {
        width: 95%;
        max-height: 95vh;
    }
    
    .modal-pumpfun-stats {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .modal-header {
        padding: 1.5rem;
        flex-wrap: wrap;
    }
    
    .modal-header-actions {
        width: 100%;
        justify-content: flex-end;
        margin-top: 1rem;
        order: 3;
    }
    
    .modal-download-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .modal-download-btn svg {
        width: 18px;
        height: 18px;
    }
    
    .modal-body {
        padding: 1.5rem;
    }
    
    .modal-title {
        font-size: 1.5rem;
    }
}
