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

:root {
    --primary-purple: #8b5cf6;
    --primary-blue: #3b82f6;
    --accent-green: #10b981;
    --accent-orange: #f59e0b;
    --dark-bg: #0a0a0f;
    --dark-secondary: #13131a;
    --dark-tertiary: #1a1a24;
    --text-primary: #ffffff;
    --text-secondary: #a0a0b0;
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-vibrant: linear-gradient(135deg, #8b5cf6 0%, #3b82f6 50%, #10b981 100%);
    --gradient-warm: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
    --glow-purple: 0 0 30px rgba(139, 92, 246, 0.6);
    --glow-blue: 0 0 30px rgba(59, 130, 246, 0.6);
    --glow-green: 0 0 30px rgba(16, 185, 129, 0.6);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(180deg, #0a0a0f 0%, #13131a 50%, #1a1a24 100%);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

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

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

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


.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(139, 92, 246, 0.2);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(10, 10, 15, 0.95);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Orbitron', sans-serif;
}

.ant-emoji {
    font-size: 2rem;
    animation: antWiggle 2s infinite;
}

@keyframes antWiggle {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-5deg); }
    75% { transform: rotate(5deg); }
}

.logo-text {
    color: var(--primary-purple);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    font-size: 0.95rem;
}

.nav-menu a:hover {
    color: var(--primary-purple);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-vibrant);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-cta {
    padding: 0.7rem 1.8rem;
    background: var(--primary-purple);
    border-radius: 50px;
    color: white !important;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: var(--glow-purple);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(139, 92, 246, 0.8);
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at top left, rgba(139, 92, 246, 0.2) 0%, transparent 50%),
                radial-gradient(ellipse at bottom right, rgba(59, 130, 246, 0.2) 0%, transparent 50%),
                radial-gradient(ellipse at center, rgba(16, 185, 129, 0.1) 0%, transparent 60%);
    animation: bgPulse 10s infinite alternate;
}

@keyframes bgPulse {
    0% { opacity: 0.5; }
    100% { opacity: 1; }
}

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

.hero-content {
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-size: 5rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 1.5rem;
    font-family: 'Orbitron', sans-serif;
}

.gradient-text {
    color: var(--primary-purple);
}

@keyframes gradientShift {
    0% { filter: hue-rotate(0deg); }
    100% { filter: hue-rotate(20deg); }
}

.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.hero-description {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn {
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    border: none;
    cursor: pointer;
    font-size: 1.05rem;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn span, .btn svg {
    position: relative;
    z-index: 1;
}

.btn-primary {
    background: var(--primary-purple);
    color: white;
    box-shadow: var(--glow-purple);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(139, 92, 246, 0.8);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--primary-purple);
}

.btn-secondary:hover {
    background: rgba(139, 92, 246, 0.2);
    transform: translateY(-3px);
    box-shadow: var(--glow-purple);
}

.btn-mega {
    padding: 1.5rem 3rem;
    font-size: 1.3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-blue));
    border: 2px solid var(--primary-purple);
    box-shadow: 0 10px 40px rgba(139, 92, 246, 0.6);
}

.btn-mega:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(139, 92, 246, 0.8);
    border-color: var(--accent-green);
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 1s ease;
}

.hero-ant-container {
    position: relative;
    width: 450px;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ant-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 3s infinite;
}

.hero-ant {
    font-size: 15rem;
    animation: float 4s infinite ease-in-out;
    filter: drop-shadow(0 0 40px rgba(139, 92, 246, 0.8));
    will-change: transform;
}

.hero-ant-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    animation: float 4s infinite ease-in-out;
    filter: drop-shadow(0 0 40px rgba(139, 92, 246, 0.8));
    will-change: transform;
}

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

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

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

section {
    padding: 8rem 0;
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
    font-family: 'Orbitron', sans-serif;
    color: var(--primary-purple);
}

.section-subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 4rem;
}

.ecosystem {
    background: linear-gradient(180deg, transparent 0%, rgba(139, 92, 246, 0.05) 50%, transparent 100%);
}

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

.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.glass-card:hover {
    transform: translateY(-10px);
    border-color: rgba(139, 92, 246, 0.5);
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.3);
}

.card-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: block;
}

.card-glow {
    position: absolute;
    bottom: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    transition: all 0.4s ease;
}

.glass-card:hover .card-glow {
    bottom: -20%;
    right: -20%;
}

.glass-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-weight: 600;
}

.glass-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.features {
    background: radial-gradient(ellipse at center, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
}

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

.feature-card {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(59, 130, 246, 0.05) 100%);
    border: 2px solid rgba(139, 92, 246, 0.3);
    border-radius: 25px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.feature-card:hover {
    transform: scale(1.05);
    border-color: var(--primary-blue);
    box-shadow: 0 25px 60px rgba(59, 130, 246, 0.4);
}

.feature-icon {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    display: block;
    filter: drop-shadow(0 0 20px rgba(139, 92, 246, 0.6));
}

.feature-shine {
    position: absolute;
    top: -100%;
    left: -100%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    transition: all 0.6s ease;
}

.feature-card:hover .feature-shine {
    top: 100%;
    left: 100%;
}

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

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

.nft {
    background: linear-gradient(180deg, transparent 0%, rgba(16, 185, 129, 0.05) 50%, transparent 100%);
}

.nft-carousel {
    position: relative;
    margin: 4rem 0;
    padding: 2rem 0;
}

.carousel-track-container {
    overflow: hidden;
    padding: 1rem 0;
}

.carousel-track {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s ease;
    will-change: transform;
}

.nft-card {
    min-width: 320px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(16, 185, 129, 0.3);
    border-radius: 25px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.nft-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-green);
    box-shadow: 0 20px 60px rgba(16, 185, 129, 0.4);
}

.nft-image {
    width: 100%;
    height: 320px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2) 0%, rgba(59, 130, 246, 0.2) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.nft-placeholder {
    font-size: 8rem;
    filter: drop-shadow(0 0 30px rgba(16, 185, 129, 0.8));
}

.nft-info {
    padding: 2rem;
}

.nft-info h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.rarity {
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.rarity.legendary {
    background: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
    color: white;
}

.rarity.epic {
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
    color: white;
}

.rarity.rare {
    background: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
    color: white;
}

.utility {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(139, 92, 246, 0.3);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(139, 92, 246, 0.5);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-btn:hover {
    background: rgba(139, 92, 246, 0.6);
    transform: translateY(-50%) scale(1.1);
    box-shadow: var(--glow-purple);
}

.carousel-btn.prev {
    left: -25px;
}

.carousel-btn.next {
    right: -25px;
}

.carousel-btn svg {
    color: white;
}

.nft-cta {
    text-align: center;
    margin-top: 3rem;
}

.tokenomics {
    background: radial-gradient(ellipse at center, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
}

.tokenomics-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 5rem;
    align-items: center;
    margin-top: 4rem;
}

.token-chart {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.chart-svg {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(139, 92, 246, 0.5));
}

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

.token-symbol {
    font-size: 4rem;
    display: block;
    margin-bottom: 0.5rem;
}

.chart-center p {
    font-size: 1.2rem;
    font-weight: 700;
    font-family: 'Orbitron', sans-serif;
    color: var(--text-primary);
}

.total-supply {
    font-size: 1rem !important;
    font-weight: 600 !important;
    color: var(--primary-purple) !important;
    margin-top: 0.5rem;
}

.token-utility h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--text-primary);
    font-family: 'Orbitron', sans-serif;
}

.utility-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.utility-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    border: 1px solid rgba(139, 92, 246, 0.2);
    transition: all 0.3s ease;
}

.utility-item:hover {
    background: rgba(139, 92, 246, 0.1);
    border-color: var(--primary-purple);
    transform: translateX(10px);
}

.utility-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.utility-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.utility-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.stats {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
    padding: 5rem 0;
}

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

.stat-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 2px solid rgba(139, 92, 246, 0.3);
    transition: all 0.3s ease;
}

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

.stat-number {
    font-size: 4rem;
    font-weight: 900;
    color: var(--primary-purple);
    margin-bottom: 0.5rem;
    font-family: 'Orbitron', sans-serif;
}

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

.roadmap {
    background: radial-gradient(ellipse at center, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
}

.roadmap-timeline {
    max-width: 900px;
    margin: 4rem auto;
    position: relative;
}

.timeline-line {
    position: absolute;
    left: 50px;
    top: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-purple);
    border-radius: 2px;
}

.roadmap-phase {
    display: flex;
    gap: 3rem;
    margin-bottom: 4rem;
    position: relative;
}

.phase-node {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(139, 92, 246, 0.2);
    border: 4px solid var(--primary-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    font-family: 'Orbitron', sans-serif;
    color: var(--text-primary);
    position: relative;
    flex-shrink: 0;
    transition: all 0.4s ease;
    z-index: 2;
}

.phase-node:hover {
    transform: scale(1.1);
    box-shadow: var(--glow-purple);
}

.phase-node.active {
    background: var(--primary-purple);
    border-color: var(--accent-green);
    box-shadow: var(--glow-green);
}

.node-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.4) 0%, transparent 70%);
    animation: pulse 2s infinite;
}

.phase-content {
    flex: 1;
    padding: 1.5rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.phase-content:hover {
    background: rgba(139, 92, 246, 0.1);
    border-color: var(--primary-purple);
    transform: translateX(10px);
}

.phase-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-weight: 600;
}

.phase-content p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.community {
    background: linear-gradient(180deg, transparent 0%, rgba(139, 92, 246, 0.1) 50%, transparent 100%);
    text-align: center;
}

.community-hero {
    margin-bottom: 4rem;
}

.community-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--primary-purple);
    font-family: 'Orbitron', sans-serif;
}

.community-description {
    font-size: 1.3rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
}

.social-card {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

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

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

.social-card.twitter {
    border-color: rgba(29, 161, 242, 0.3);
}

.social-card.twitter:hover {
    border-color: #1DA1F2;
    box-shadow: 0 20px 60px rgba(29, 161, 242, 0.4);
    transform: translateY(-10px);
}

.social-card.telegram {
    border-color: rgba(0, 136, 204, 0.3);
}

.social-card.telegram:hover {
    border-color: #0088cc;
    box-shadow: 0 20px 60px rgba(0, 136, 204, 0.4);
    transform: translateY(-10px);
}

.social-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(139, 92, 246, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.social-card.twitter .social-icon {
    background: rgba(29, 161, 242, 0.2);
    color: #1DA1F2;
}

.social-card.telegram .social-icon {
    background: rgba(0, 136, 204, 0.2);
    color: #0088cc;
}

.social-card.support {
    border-color: rgba(16, 185, 129, 0.3);
}

.social-card.support:hover {
    border-color: #10b981;
    box-shadow: 0 20px 60px rgba(16, 185, 129, 0.4);
    transform: translateY(-10px);
}

.social-card.support .social-icon {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
}


.social-info {
    flex: 1;
    text-align: left;
}

.social-info h3 {
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.social-info p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.social-arrow {
    font-size: 2rem;
    color: var(--text-secondary);
    transition: transform 0.3s ease;
}

.social-card:hover .social-arrow {
    transform: translateX(10px);
}

.cta-final {
    margin-top: 4rem;
    text-align: center;
    padding: 3rem 0;
    background: rgba(139, 92, 246, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.footer {
    background: var(--dark-bg);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(139, 92, 246, 0.2);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand {
    max-width: 400px;
}

.footer-tagline {
    color: var(--text-secondary);
    margin: 1rem 0 2rem;
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(139, 92, 246, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--primary-purple);
    transform: translateY(-3px);
    box-shadow: var(--glow-purple);
}

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

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    font-weight: 600;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.8rem;
}

.footer-column ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--primary-purple);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(139, 92, 246, 0.1);
}

.footer-bottom p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.footer-disclaimer {
    font-size: 0.85rem;
}

.section-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease;
}

.section-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Wallet Modal */
.wallet-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.wallet-modal.active {
    opacity: 1;
}

.wallet-modal-content {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(59, 130, 246, 0.1));
    backdrop-filter: blur(20px);
    border: 2px solid rgba(139, 92, 246, 0.3);
    border-radius: 20px;
    padding: 3rem;
    max-width: 500px;
    width: 90%;
    text-align: center;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.wallet-modal.active .wallet-modal-content {
    transform: scale(1);
}

.wallet-modal-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: float 3s infinite ease-in-out;
}

.wallet-modal-content h2 {
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-family: 'Orbitron', sans-serif;
}

.wallet-modal-content p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.wallet-modal-subtitle {
    font-size: 0.95rem;
    color: var(--accent-green);
    margin-top: 1.5rem;
}

.wallet-modal-close {
    margin-top: 2rem;
    padding: 1rem 3rem;
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-blue));
    border: 2px solid var(--primary-purple);
    border-radius: 50px;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4);
}

.wallet-modal-close:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.6);
    border-color: var(--accent-green);
}

@media (max-width: 968px) {
    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(10, 10, 15, 0.98);
        backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        padding: 2rem 0;
        gap: 1.5rem;
        border-top: 1px solid rgba(139, 92, 246, 0.2);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu a {
        display: block;
        padding: 1rem;
        font-size: 1.1rem;
    }

    .nav-cta {
        display: none;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-visual {
        order: -1;
    }

    .hero-ant-container {
        width: 300px;
        height: 300px;
    }

    .hero-ant {
        font-size: 10rem;
    }

    section {
        padding: 4rem 0;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .section-subtitle {
        font-size: 1.1rem;
    }

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

    .glass-card {
        padding: 2rem;
    }

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

    .feature-card {
        padding: 2rem;
    }

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

    .nft-carousel {
        margin: 2rem 0;
        padding: 1rem 0;
    }

    .nft-card {
        min-width: 260px;
    }

    .carousel-btn {
        width: 45px;
        height: 45px;
    }

    .carousel-btn.prev {
        left: 5px;
    }

    .carousel-btn.next {
        right: 5px;
    }

    .tokenomics-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .roadmap-phase {
        flex-direction: column;
        gap: 1.5rem;
    }

    .timeline-line {
        left: 50px;
    }

    .phase-node {
        width: 80px;
        height: 80px;
        font-size: 1.5rem;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-brand {
        max-width: 100%;
    }

    .community-title {
        font-size: 2.5rem;
    }

    .social-grid {
        grid-template-columns: 1fr;
    }

    .social-info h3 {
        font-size: 1.1rem;
    }

    .social-info p {
        font-size: 0.85rem;
    }

    .social-card {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .btn {
        padding: 1rem 2rem;
        font-size: 0.95rem;
    }

    .btn-mega {
        padding: 1.2rem 2rem;
        font-size: 1.1rem;
    }

    section {
        padding: 3rem 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
    }

    .hero-description {
        font-size: 0.95rem;
    }

    .hero-ant-container {
        width: 220px;
        height: 220px;
    }

    .hero-ant-image {
        width: 100%;
        height: 100%;
    }

    .ecosystem-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .glass-card {
        padding: 1.5rem;
    }

    .glass-card h3 {
        font-size: 1.3rem;
    }

    .glass-card p {
        font-size: 0.9rem;
    }

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

    .feature-card {
        padding: 1.5rem;
    }

    .feature-card h3 {
        font-size: 1.3rem;
    }

    .feature-card p {
        font-size: 0.9rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .tokenomics {
        padding: 3rem 0;
    }

    .tokenomics-content {
        padding: 0;
        gap: 2rem;
    }

    .token-chart {
        max-width: 240px;
        margin: 0 auto;
    }

    .chart-center {
        transform: translate(-50%, -50%) scale(0.85);
    }

    .token-symbol {
        font-size: 2.5rem;
    }

    .chart-center p {
        font-size: 1rem;
    }

    .total-supply {
        font-size: 0.85rem !important;
        margin-top: 0.3rem;
    }

    .utility-list {
        gap: 1rem;
        padding: 0;
    }

    .utility-item h4 {
        font-size: 1rem;
    }

    .utility-item p {
        font-size: 0.85rem;
    }

    .roadmap {
        padding: 3rem 0;
    }

    .roadmap-timeline {
        padding: 0 0.5rem;
    }

    .roadmap-phase {
        padding-left: 0;
        margin-bottom: 2rem;
    }

    .phase-node {
        width: 60px;
        height: 60px;
        font-size: 1.2rem;
    }

    .phase-content {
        padding: 0 0.5rem;
    }

    .phase-content h3 {
        font-size: 1.2rem;
    }

    .phase-content p {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .timeline-line {
        left: 30px;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-column h4 {
        font-size: 1rem;
    }

    .footer-column a {
        font-size: 0.9rem;
    }

    .cta-final {
        padding: 2rem 1rem;
    }

    .social-info h3 {
        font-size: 1rem;
    }

    .social-info p {
        font-size: 0.8rem;
    }

    .social-icon svg {
        width: 32px;
        height: 32px;
    }

    .social-card {
        padding: 1.2rem;
    }

    .nft-carousel {
        margin: 1.5rem 0;
        padding: 0.5rem 0;
    }

    .carousel-btn {
        width: 36px;
        height: 36px;
        background: rgba(139, 92, 246, 0.9);
    }

    .carousel-btn.prev {
        left: 5px;
    }

    .carousel-btn.next {
        right: 5px;
    }

    .carousel-btn svg {
        width: 18px;
        height: 18px;
    }

    .nft-card {
        min-width: 240px;
        padding: 1rem;
    }

    .nft-image {
        height: 180px;
    }

    .nft-placeholder {
        font-size: 4rem;
    }

    .nft-info h4 {
        font-size: 1rem;
    }

    .nft-info .utility {
        font-size: 0.85rem;
    }

    .nft-cta {
        margin-top: 2rem;
    }

    .stat-number {
        font-size: 3rem;
    }

    .community-title {
        font-size: 2rem;
    }

    .wallet-modal-content {
        padding: 2rem 1.5rem;
        max-width: 95%;
    }

    .wallet-modal-icon {
        font-size: 3rem;
    }

    .wallet-modal-content h2 {
        font-size: 1.5rem;
    }

    .wallet-modal-content p {
        font-size: 0.95rem;
    }

    .wallet-modal-subtitle {
        font-size: 0.85rem;
    }

    .wallet-modal-close {
        padding: 0.9rem 2rem;
        font-size: 1rem;
    }
}
