/* Aiko Color Palette - Modernized */
:root {
    /* Base Colors - New Palette */
    --violet-web: #E08FF9;
    --heliotrope: #ED61F5;
    --white: #FCFBFC;
    --black: #000000;
    --rose-quartz: #BBA8BA;
    
    /* Theme Colors */
    --bg-dark: #0a0515;
    --bg-darker: #05020b;
    --accent: var(--heliotrope);
    --accent-light: var(--violet-web);
    --accent-dark: #c837ed;
    --accent-secondary: var(--violet-web);
    --accent-secondary-light: #f1a2ff;
    --accent-tertiary: #b96bff;
    
    /* Text Colors */
    --text-primary: var(--white);
    --text-secondary: #f0e0f0;
    --text-tertiary: var(--rose-quartz);
    --text-accent: var(--heliotrope);
    
    /* UI Colors */
    --accent-hover: #f18cff;
    --glass-bg: rgba(15, 0, 20, 0.9);
    --glass-border: rgba(255, 255, 255, 0.1);
    --card-bg: rgba(35, 0, 45, 0.7);
    --card-border: rgba(224, 143, 249, 0.2);
    --card-hover-bg: rgba(50, 0, 60, 0.8);
    --card-hover-border: rgba(237, 97, 245, 0.4);
    --card-shadow: 0 8px 32px rgba(224, 143, 249, 0.15);
    --card-hover-shadow: 0 12px 40px rgba(237, 97, 245, 0.25);
    --card-radius: 16px;
    --container-padding: 2rem;
    --section-spacing: 6rem;
    --hover-bg: rgba(255, 255, 255, 0.05);
    
    /* Effects */
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --border-radius: 12px;
    --spacing: 1.5rem;
    --blur: 12px;
    --shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
    --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
}

/* Modern Reset */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
    font-size: 16px;
    scroll-padding-top: 100px; /* Account for fixed header */
}

/* Scroll Animation Classes */
.scroll-animate {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    transform: translateY(50px);
    will-change: transform, opacity;
}

.scroll-animate.animate {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Staggered animations */
.scroll-animate.delay-1 { transition-delay: 0.1s; }
.scroll-animate.delay-2 { transition-delay: 0.25s; }
.scroll-animate.delay-3 { transition-delay: 0.4s; }
.scroll-animate.delay-4 { transition-delay: 0.55s; }
.scroll-animate.delay-5 { transition-delay: 0.7s; }

/* Special animation types */
.scroll-animate.fade-in { opacity: 0; }
.scroll-animate.fade-in.animate { opacity: 1; }

.scroll-animate.slide-up {
    opacity: 0;
    transform: translateY(40px);
}
.scroll-animate.slide-up.animate {
    opacity: 1;
    transform: translateY(0);
}

.scroll-animate.slide-left {
    opacity: 0;
    transform: translateX(-40px);
}
.scroll-animate.slide-left.animate {
    opacity: 1;
    transform: translateX(0);
}

.scroll-animate.slide-right {
    opacity: 0;
    transform: translateX(40px);
}
.scroll-animate.slide-right.animate {
    opacity: 1;
    transform: translateX(0);
}

.scroll-animate.scale-in {
    opacity: 0;
    transform: scale(0.9);
}
.scroll-animate.scale-in.animate {
    opacity: 1;
    transform: scale(1);
}

/* Modern Font Stack */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-primary);
    text-rendering: optimizeLegibility;
}

/* Base Styles */
body {
    background-color: var(--bg-darker);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    padding: 0;
    margin: 0;
}

/* Logo Styles */
.aiko-logo {
    height: 100px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease, opacity 0.3s ease;
    will-change: transform, opacity;
}

/* Logo visibility during scroll */
.main-header.hide-logo .aiko-logo {
    opacity: 0;
    transform: translateY(-20px);
    pointer-events: none;
    image-rendering: crisp-edges;
}

/* Remove any parent container effects */
.logo-link,
.logo-link:before,
.logo-link:after,
.logo-link * {
    box-shadow: none !important;
    text-shadow: none !important;
    filter: none !important;
    -webkit-filter: none !important;
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
    outline: none !important;
    border: none !important;
}

/* Video Background */
.video-bg-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    background: #000;
}

.video-bg-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    will-change: transform;
}

.overlay {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    z-index: 1;
    pointer-events: none;
    transition: background 0.3s ease;
}

@keyframes overlayParallax {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(0, -10%, 0);
    }
}

/* Smooth scrolling for the entire page */
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    height: 100%;
}

/* Base Container */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
    box-sizing: border-box;
}

/* Card Styles */
.card {
    background: rgba(15, 10, 30, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(138, 43, 226, 0.2);
    border-radius: var(--card-radius);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.card:hover {
    background: var(--card-hover-bg);
    border-color: var(--card-hover-border);
    box-shadow: var(--card-hover-shadow);
    transform: translateY(-4px);
}

/* Section Styles */
.section {
    padding: var(--section-spacing) 0;
    position: relative;
    overflow: hidden;
}

/* Waifu Section Image Hover Effect */
.waifu-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.5s ease;
}

.waifu-image {
    width: 100%;
    height: auto;
    display: block;
    transition: filter 0.5s ease, transform 0.3s ease;
    filter: blur(8px);
    transform: scale(1.05);
}

.waifu-image-container:hover .waifu-image {
    filter: blur(0);
    transform: scale(1);
}

.waifu-image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    opacity: 1;
    transition: opacity 0.5s ease;
    z-index: 1;
    pointer-events: none;
}

.waifu-image-container:hover::before {
    opacity: 0;
}

.waifu-image-caption {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    text-align: center;
    color: white;
    font-weight: 600;
    transform: translateY(-50%);
    opacity: 1;
    transition: opacity 0.3s ease;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    pointer-events: none;
}

.waifu-image-container:hover .waifu-image-caption {
    opacity: 0;
}

/* Add animation to feature cards */
.feature-card {
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    transform: translateY(0);
    will-change: transform, box-shadow;
}

.feature-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    z-index: 2;
}

/* Timeline animations */
.timeline-item {
    transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0;
    transform: translateY(30px) scale(0.98);
    will-change: transform, opacity;
}

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

/* FAQ animations */
.faq-item {
    transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    transform: translateY(30px);
    opacity: 0;
    will-change: transform, opacity, height;
    margin-bottom: 1.5rem;
    border-radius: 12px;
    background: rgba(138, 43, 226, 0.05);
    border: 1px solid rgba(138, 43, 226, 0.1);
    overflow: hidden;
}

.faq-item.animate {
    transform: translateY(0);
    opacity: 1;
}

.faq-question {
    padding: 1.5rem;
    width: 100%;
    text-align: left;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(138, 43, 226, 0.1);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.7s cubic-bezier(0.4, 0, 0.2, 1), 
                opacity 0.6s ease,
                padding 0.3s ease;
    opacity: 0;
    padding: 0 1.5rem;
    transform: translateY(-10px);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    opacity: 1;
    transform: translateY(0);
    padding: 0 1.5rem 1.5rem;
    transition: max-height 0.9s cubic-bezier(0.4, 0, 0.2, 1), 
                opacity 0.7s ease 0.1s,
                padding 0.4s ease 0.1s;
}

/* Social media animations */
/* Social Links Container */
.social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    flex-wrap: nowrap;
    width: 100%;
    max-width: 800px;
    margin: 3rem auto;
    padding: 0;
    list-style: none;
    opacity: 1; /* Changed from 0 to 1 to make visible by default */
    transform: translateY(0); /* Start from final position */
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity;
}

/* Animation handled by JavaScript */
.social-links.animate {
    /* Keep this for any additional animation states */
}

/* Individual Social Link */
.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: transparent;
    color: var(--accent);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(224, 143, 249, 0.3);
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    margin: 0 10px;
    padding: 0;
    vertical-align: middle;
    outline: none !important; /* Remove default focus outline */
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.2), rgba(237, 97, 245, 0.2));
    opacity: 0;
    transition: all 0.3s ease;
    border-radius: 50%;
}

/* Completely reset all interactive states */
.social-link,
.social-link:active,
.social-link:focus,
.social-link:hover,
.social-link:visited {
    outline: 0 !important;
    -webkit-tap-highlight-color: transparent !important;
    -webkit-user-select: none !important;
    -webkit-touch-callout: none !important;
    box-shadow: none !important;
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
    -ms-box-shadow: none !important;
    -o-box-shadow: none !important;
    text-decoration: none !important;
    border: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
}

/* Remove any focus ring */
.social-link::-moz-focus-inner,
.social-link::-moz-focus-outer,
.social-link::-moz-focus-inner:active,
.social-link::-moz-focus-outer:active {
    border: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    outline: 0 !important;
}

/* Reset any transforms or transitions that might cause visual artifacts */
.social-link {
    transform: none !important;
    -webkit-transform: none !important;
    -moz-transform: none !important;
    -ms-transform: none !important;
    -o-transform: none !important;
    transition: none !important;
    -webkit-transition: none !important;
    -moz-transition: none !important;
    -o-transition: none !important;
}

/* Disable any focus-visible styling */
.social-link:focus-visible,
.social-link:focus:not(:focus-visible) {
    outline: 0 !important;
    box-shadow: none !important;
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
}

/* For iOS/Safari */
@supports (-webkit-touch-callout: none) {
    .social-link {
        -webkit-tap-highlight-color: transparent;
        -webkit-user-select: none;
    }
}

/* Adjust size for mobile */
@media (max-width: 768px) {
    .social-link {
        width: 90px;
        height: 90px;
    }
    
    .social-link i {
        font-size: 3rem;
    }
}

.social-link i {
    font-size: 3.5rem;
    display: inline-block;
    line-height: 1;
    text-align: center;
    width: 1em;
    height: 1em;
    /* Reset any potential outline on the icon itself */
    outline: none !important;
    -webkit-tap-highlight-color: transparent !important;
    -webkit-user-select: none !important;
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
    color: var(--accent);
    border-color: var(--accent);
    box-shadow: 0 10px 20px rgba(138, 43, 226, 0.2);
    background: rgba(224, 143, 249, 0.1);
}

.social-link:hover::before {
    opacity: 1;
}

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

/* Individual icon colors on hover */
.social-link[href*="telegram"]:hover { color: #0088cc; background: transparent; }
.social-link[href*="discord"]:hover { color: #7289da; background: transparent; }
.social-link[href*="x.com"]:hover, .social-link[href*="twitter"]:hover { color: #000000; background: transparent; }
.social-link[href*="youtube"]:hover { color: #ff0000; background: transparent; }

/* Main Header */
.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    position: relative;
    z-index: 1000;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border: none !important;
    box-shadow: none !important;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo-link:hover {
    transform: scale(1.05);
}

.logo-link {
    position: fixed;
    top: 20px;
    left: 20px;
    background: transparent !important;
    border: none !important;
    z-index: 9999; /* Increased to ensure it's above everything */
    pointer-events: auto;
    transform-origin: top left;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.aiko-logo {
    height: 300px;
    width: auto;
    object-fit: contain;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    filter: drop-shadow(0 0 30px rgba(237, 97, 245, 0.7));
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-mask-image: none;
    mask-image: none;
    -webkit-mask: none;
    mask: none;
    position: relative;
    z-index: 9999; /* Increased to ensure it's above everything */
    transition: all 0.3s ease;
    pointer-events: none; /* Ensures clicks go through to elements below */
}

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

.logo-link:hover .aiko-logo {
    transform: scale(1.05);
}

/* Contract Address Container */
.contract-address-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000; /* Lower than logo's z-index */
    transition: opacity 0.3s ease;
    opacity: 1;
}

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
    text-decoration: none;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-light);
}

.connect-wallet.btn {
    background: var(--gradient);
    color: var(--white);
    border: none;
    border-radius: 10px;
    padding: 0.8rem 1.8rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: var(--btn-shadow);
    z-index: 1;
}

.connect-wallet.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(108, 92, 231, 0.4);
}

.contract-address {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Roboto Mono', monospace;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    background: rgba(16, 18, 37, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 100%;
    backdrop-filter: blur(8px); /* Added subtle blur */
}

.contract-address:hover {
    border-color: var(--accent);
    box-shadow: 0 0 15px rgba(153, 69, 255, 0.2);
}

.contract-address #contract {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-primary);
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.contract-address .copy-btn {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-primary);
    transition: all 0.3s ease;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.contract-address .copy-btn:hover {
    background: var(--gradient-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(237, 97, 245, 0.4);
    filter: brightness(1.1);
}

.contract-address .copy-btn:active {
    transform: translateY(0) scale(0.98);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.contract-address .copy-btn.copied {
    background: var(--solana-green);
    color: #000;
}

.contract-address .copy-btn i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.contract-address .copy-btn:hover i {
    transform: scale(1.1);
}

/* Responsive adjustments */
/* Hide logo link when scrolled down */
.scrolled .logo-link {
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform: translateY(-20px);
}

@media (max-width: 768px) {
    .contract-address {
        position: fixed;
        top: 90px; /* Increased from 80px */
        right: 10px; /* Reduced from 15px */
        left: auto;
        max-width: 50%; /* Reduced from 60% */
        padding: 0.4rem 0.7rem; /* Reduced padding */
        z-index: 1000;
        display: flex;
        align-items: center;
        box-sizing: border-box;
        transform: scale(0.9); /* Slightly reduce overall size */
        transform-origin: top right;
    }
    
    .contract-address #contract {
        font-size: 0.65rem; /* Reduced from 0.7rem */
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 100%;
        flex: 1;
        min-width: 0;
        letter-spacing: -0.3px; /* Tighter letter spacing */
    }
    
    .contract-address .copy-btn {
        width: 26px; /* Reduced from 28px */
        height: 26px; /* Reduced from 28px */
        flex-shrink: 0;
        margin-left: 4px; /* Reduced from 6px */
    }
    
    /* Adjust logo size for smaller screens */
    .logo-link {
        max-width: 65px;
        top: 15px;
        left: 10px;
        transform: scale(0.9);
        transform-origin: top left;
        background: transparent !important;
        border: none !important;
    }
    
    /* Further adjustments for very small screens */
    @media (max-width: 500px) {
        .contract-address {
            max-width: 60%;
            padding: 0.3rem 0.6rem;
            top: 20px;
        }
        
        .contract-address #contract {
            font-size: 0.6rem;
        }
        
        .contract-address .copy-btn {
            width: 22px;
            height: 22px;
        }
        
        .logo-link {
            max-width: 55px;
            background: transparent !important;
            border: none !important;
        }
    }
    
    @media (max-width: 400px) {
        .contract-address {
            max-width: 55%;
            padding: 0.25rem 0.5rem;
            top: 20px;
        }
        
        .contract-address #contract {
            font-size: 0.55rem;
        }
        
        .contract-address .copy-btn {
            width: 20px;
            height: 20px;
        }
        
        .logo-link {
            max-width: 50px;
            transform: scale(0.8);
            background: transparent !important;
            border: none !important;
        }
    }
}

.contract-address:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    border-color: var(--accent);
}

.solana-logo {
    width: 24px;
    height: 24px;
    margin-right: 8px;
    vertical-align: middle;
    filter: none;
    background: linear-gradient(45deg, #00FFA3, #03E1FF, #DC1FFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    opacity: 0.9;
    transition: var(--transition);
}

.contract-address:hover .solana-logo {
    opacity: 1;
    filter: drop-shadow(0 0 6px rgba(0, 0, 0, 0.2));
}

#contract {
    font-family: 'Fira Code', 'Roboto Mono', monospace;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: 0.5px;
    background: rgba(255, 255, 255, 0.06);
    padding: 0.5rem 0.9rem;
    border-radius: 8px;
    transition: all 0.2s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    display: inline-block;
    min-width: 0;
}

.copy-btn {
    --btn-bg: linear-gradient(135deg, rgba(224, 143, 249, 0.2), rgba(237, 97, 245, 0.2));
    --btn-color: var(--white);
    --card-border: 1px solid rgba(224, 143, 249, 0.3);
    --gradient: linear-gradient(135deg, var(--violet-web), var(--heliotrope));
    --gradient-hover: linear-gradient(135deg, #f1a2ff, #ff8bf5);
    --logo-gradient: linear-gradient(135deg, var(--violet-web) 0%, var(--heliotrope) 100%);
    --btn-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    --btn-hover-shadow: 0 6px 20px rgba(237, 97, 245, 0.35);
    
    background: var(--gradient);
    color: var(--white);
    border: none;
    border-radius: 10px;
    transition: all 0.3s ease;
    width: 36px;
    height: 36px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: var(--btn-shadow);
    will-change: transform, box-shadow, background-color;
    flex-shrink: 0;
}

.copy-btn:hover {
    background: var(--gradient-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(237, 97, 245, 0.4);
    filter: brightness(1.1);
}

.copy-btn:active {
    transform: translateY(0) scale(0.98);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* Add a subtle shine effect on hover */
.copy-btn::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: 0.5s;
}

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

/* Hide the text content */
.copy-btn::after {
    display: none;
}

/* Add a subtle pulse animation */
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
    100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.copy-btn.copied {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.25), rgba(5, 150, 105, 0.25));
    border-color: rgba(16, 185, 129, 0.4);
    color: #10b981;
    animation: pulse 0.8s ease-out;
    transform: translateY(0) scale(0.95);
}

.copy-btn.copied i {
    transform: scale(1.2);
}

/* Main Content */
main {
    margin-top: 80px;
}

/* Background Showcase Sections */
.hero-showcase,
.bg-showcase {
    min-height: 100vh;
    height: 100vh;
    width: 100%;
    position: relative;
    z-index: 1;
    pointer-events: none;
    margin: 0;
}

/* Hero Section */
.hero {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 4rem 2rem;
    position: relative;
    z-index: 2;
    color: white;
    background: rgba(16, 18, 37, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    margin: 2rem auto;
    max-width: 800px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #fff 0%, #ccc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.hero .tagline {
    font-size: 1.75rem;
    font-weight: 400;
    line-height: 1.5;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    color: var(--text-primary);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    padding: 0 1rem;
}

.hero .small-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-top: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

/* Modern Button Styles */
.btn {
    --btn-padding-x: 1.75rem;
    --btn-padding-y: 0.75rem;
    --btn-radius: 50px;
    
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--btn-padding-y) var(--btn-padding-x);
    border-radius: var(--btn-radius);
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    font-size: 1rem;
    line-height: 1.5;
    white-space: nowrap;
    user-select: none;
    position: relative;
    overflow: hidden;
    background: var(--btn-bg, var(--accent));
    color: var(--btn-color, white);
    box-shadow: var(--btn-shadow, 0 4px 15px rgba(0, 0, 0, 0.1));
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--btn-hover-shadow, 0 6px 20px rgba(0, 0, 0, 0.2));
    color: var(--btn-hover-color, white);
    background: var(--btn-hover-bg, var(--accent-hover));
}

.btn:active {
    transform: translateY(0);
    box-shadow: var(--btn-active-shadow, 0 2px 10px rgba(0, 0, 0, 0.2));
}

.btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(153, 69, 255, 0.4);
}

/* Button Sizes */
.btn-sm {
    --btn-padding-x: 1.25rem;
    --btn-padding-y: 0.5rem;
    font-size: 0.875rem;
}

.btn-lg {
    --btn-padding-x: 2rem;
    --btn-padding-y: 1rem;
    font-size: 1.125rem;
}

/* Button Variants */
.btn-primary {
    --btn-bg: var(--accent);
    --btn-hover-bg: var(--accent-hover);
    --btn-color: #ffffff;
    --btn-hover-color: white;
    --btn-shadow: 0 4px 15px rgba(153, 69, 255, 0.2);
    --btn-hover-shadow: 0 6px 20px rgba(153, 69, 255, 0.3);
}

.btn-outline {
    --btn-bg: transparent;
    --btn-hover-bg: rgba(255, 255, 255, 0.1);
    --btn-color: var(--text-primary);
    --btn-hover-color: var(--text-primary);
    --btn-border: rgba(255, 255, 255, 0.2);
    border: 1px solid var(--btn-border);
}

.btn-ghost {
    --btn-bg: transparent;
    --btn-hover-bg: rgba(255, 255, 255, 0.05);
    --btn-color: var(--text-primary);
    --btn-hover-color: var(--text-primary);
    --btn-shadow: none;
    --btn-hover-shadow: none;
}

/* Button with icon */
.btn .icon {
    display: inline-flex;
    align-items: center;
    margin-right: 0.5rem;
    transition: transform 0.3s ease;
}

.btn:hover .icon {
    transform: translateX(2px);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    padding: 0 1rem;
    position: relative;
}

.section-title {
    font-size: 2.75rem;
    font-weight: 800;
    margin: 0 0 1.5rem;
    color: var(--text-primary);
    position: relative;
    display: inline-block;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--text-primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 400;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--accent-secondary));
    border-radius: 2px;
}

/* Background Showcase Sections */
.hero-showcase,
.bg-showcase {
    min-height: 100vh;
    height: 100vh;
    width: 100%;
    position: relative;
    z-index: 1;
    pointer-events: none;
    margin: 0;
}

/* Hero Section */
.hero {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 4rem 2rem;
    position: relative;
    z-index: 2;
    color: white;
    background: rgba(16, 18, 37, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    margin: 2rem auto;
    max-width: 800px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #fff 0%, #ccc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.hero .tagline {
    font-size: 1.75rem;
    font-weight: 400;
    line-height: 1.5;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    color: var(--text-primary);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    padding: 0 1rem;
}

.hero .small-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-top: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

/* Modern Button Styles */
.cta-button {
    --btn-glow: 0 0 0 0 rgba(153, 69, 255, 0.4);
    --btn-glow-hover: 0 0 20px 5px rgba(153, 69, 255, 0.3);
    
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    position: relative;
    overflow: hidden;
    box-shadow: var(--btn-glow);
    will-change: transform, box-shadow;
    min-width: 220px;
    text-decoration: none;
}

.cta-button .button-text {
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.cta-button .fas {
    font-size: 1rem;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 2;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-hover) 0%, var(--accent) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    z-index: 1;
    transition: background 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--btn-glow-hover);
}

.cta-button:hover .button-text {
    transform: translateX(4px);
}

.cta-button:hover .fas {
    transform: translateX(4px);
}

.cta-button:active {
    transform: translateY(1px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.cta-button:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.4);
}

/* Mobile styles */
@media (max-width: 768px) {
    .cta-button {
        width: 100%;
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
        min-width: auto;
    }
}

.primary-btn, .secondary-btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    border: none;
}

.primary-btn {
    --btn-glow: 0 0 0 0 rgba(153, 69, 255, 0.7);
    --btn-glow-hover: 0 0 20px 5px rgba(153, 69, 255, 0.4);
    
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    position: relative;
    overflow: hidden;
    box-shadow: var(--btn-glow);
    will-change: transform, box-shadow;
    min-width: 200px;
}

.primary-btn .fas {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--btn-glow-hover);
}

.primary-btn:hover .fas {
    transform: translateX(4px);
}

.primary-btn:active {
    transform: translateY(1px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.primary-btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(153, 69, 255, 0.4);
}

/* Mobile styles */
@media (max-width: 768px) {
    .primary-btn {
        width: 100%;
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
    
    .social-links {
        display: flex;
        justify-content: space-around;
        padding: 1rem 0.5rem;
        margin: 1rem auto;
        width: 100%;
        max-width: 100%;
        overflow-x: visible;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        flex-wrap: wrap;
    }
    
    .social-links::-webkit-scrollbar {
        display: none; /* Hide scrollbar for Chrome, Safari and Opera */
    }
    
    .social-links a {
        flex: 0 0 15%;
        font-size: 1.8rem !important;
        width: auto !important;
        height: auto !important;
        padding: 0.8rem !important;
        margin: 0.3rem 0 !important;
        transform: scale(1);
        transition: all 0.2s ease;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .social-links a:active {
        transform: scale(0.85);
    }
}

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

.secondary-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.email-form {
    width: 100%;
    max-width: 600px;
    margin: 2rem auto;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    opacity: 0;
    animation: fadeIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
}

:root {
    /* Form Controls */
    --input-bg: rgba(20, 20, 30, 0.6);
    --input-border: rgba(255, 255, 255, 0.1);
    --input-focus-border: var(--accent);
    --input-focus-shadow: 0 0 0 3px rgba(153, 69, 255, 0.25);
    --input-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base Input Styles */
input,
textarea,
select {
    width: 100%;
    padding: 0.875rem 1.25rem;
    border: 1px solid var(--input-border);
    border-radius: var(--border-radius);
    background: var(--input-bg);
    color: var(--text-primary);
    font-size: 1rem;
    line-height: 1.5;
    transition: var(--input-transition);
    margin-bottom: 1.25rem;
    box-shadow: var(--shadow-sm);
    appearance: none;
    outline: none;
}

/* Input Focus States */
input:focus,
textarea:focus,
select:focus {
    border-color: var(--input-focus-border);
    box-shadow: var(--input-focus-shadow);
    background: rgba(30, 30, 45, 0.8);
}

/* Placeholder Text */
::placeholder {
    color: var(--text-secondary);
    opacity: 0.7;
}

/* Input Groups */
.input-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.input-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 500;
}

/* Checkbox and Radio Buttons */
input[type="checkbox"],
input[type="radio"] {
    width: auto;
    margin-right: 0.5rem;
    margin-bottom: 0;
    vertical-align: middle;
}

/* Select Dropdown */
select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
    padding-right: 2.5rem;
    cursor: pointer;
}

/* Textarea */
textarea {
    min-height: 120px;
    resize: vertical;
    line-height: 1.6;
}

/* Form Validation */
input:invalid,
textarea:invalid,
select:invalid {
    border-color: #ff4d4f;
}

input:focus:invalid,
textarea:focus:invalid,
select:focus:invalid {
    box-shadow: 0 0 0 3px rgba(255, 77, 79, 0.25);
}

.email-form .input-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.email-form input {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 1px solid var(--input-border);
    border-radius: var(--border-radius);
    background: var(--input-bg);
    color: var(--text-primary);
    font-size: 1rem;
    line-height: 1.5;
    transition: var(--input-transition);
    box-shadow: var(--shadow-sm);
    appearance: none;
    outline: none;
}

.email-form input::placeholder {
    color: var(--text-secondary);
    opacity: 0.7;
}

.email-form input:focus {
    border-color: var(--accent);
    box-shadow: var(--input-focus-shadow);
    background: rgba(30, 30, 45, 0.8);
}

.email-form .form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.email-form .btn-submit {
    --btn-bg: var(--accent);
    --btn-hover-bg: #9d4dff;
    --btn-active-bg: #8a2be2;
    --btn-color: #ffffff;
    padding: 1rem 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    box-shadow: var(--shadow-accent);
}

.email-form .btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(153, 69, 255, 0.4);
}

.email-form .btn-submit:active {
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(153, 69, 255, 0.3);
}

.tagline {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    color: var(--text-secondary);
    font-weight: 400;
    max-width: 80%;
    opacity: 0;
    animation: fadeIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
    line-height: 1.5;
}

.her {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #fff 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0;
    animation: fadeIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    letter-spacing: -1px;
    line-height: 1.1;
    text-shadow: 0 0 40px rgba(138, 99, 242, 0.3);
}

/* Sections */
.section {
    padding: 6rem 2rem;
    position: relative;
}

.section.dark {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
}

.section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--white);
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

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

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

.feature {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.feature i {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.feature p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
}

/* Tokenomics */
.token-details {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(16, 18, 37, 0.4);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.token-details h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--white);
    text-align: center;
}

.token-details ul {
    list-style: none;
    padding: 0;
}

.token-details li {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    font-size: 1.1rem;
}

.token-details li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-light);
}

/* Contact */
/* Social Icons - Extra Large */
.social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    margin: 2rem auto;
    flex-wrap: nowrap;
    width: 100%;
    max-width: 800px;
}

.social-links a {
    color: var(--text-secondary);
    font-size: 1.2rem;
    transition: var(--transition);
    padding: 0.3rem;
    margin: 0 1.2rem;
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
    color: var(--accent);
    background: transparent;
    border: none;
    box-shadow: none;
}

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

/* Consistent pink hover for all social icons */
.social-link[href*="telegram"]:hover,
.social-link[href*="discord"]:hover,
.social-link[href*="x.com"]:hover, 
.social-link[href*="twitter"]:hover,
.social-link[href*="youtube"]:hover {
    color: var(--accent) !important;
    background: transparent !important;
}

/* Tokenomics Section */
.tokenomics-section {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(16, 18, 37, 0.5) 0%, rgba(8, 10, 25, 0.6) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

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

.tokenomics-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--card-radius);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    box-shadow: var(--card-shadow);
}

.tokenomics-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent);
    box-shadow: var(--card-hover-shadow);
}

.tokenomics-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(237, 97, 245, 0.1), rgba(224, 143, 249, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--accent);
    transition: var(--transition);
}

.tokenomics-card:hover .tokenomics-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: white;
}

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

.tokenomics-percentage {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 1rem 0;
    line-height: 1.2;
}

.tokenomics-detail {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
}

.tokenomics-note {
    max-width: 800px;
    margin: 3rem auto 0;
    padding: 1.5rem;
    background: rgba(237, 97, 245, 0.1);
    border-left: 3px solid var(--accent);
    border-radius: 0 8px 8px 0;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.tokenomics-note i {
    color: var(--accent);
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.tokenomics-note p {
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Features Section */
.features-section {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(16, 18, 37, 0.5) 0%, rgba(8, 10, 25, 0.6) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

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

.features-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
    position: relative;
    z-index: 2;
}

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

.feature-card {
    background: rgba(16, 18, 37, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
}

.feature-card img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 2rem 0 0;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}

.feature-card:hover img {
    transform: scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.feature-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
}

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

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.08) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    border-color: rgba(138, 43, 226, 0.2);
}

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

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

.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
    padding: 0 1rem;
}

.section-header .section-title {
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.section-header .section-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin: 0 auto;
    text-align: center;
    max-width: 80%;
    opacity: 0.9;
}

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

@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .social-links {
        gap: 1.2rem;
        margin: 2rem 0;
    }
    
    .social-link {
        width: 70px;
        height: 70px;
        margin: 0 5px;
    }
    
    .social-link i {
        font-size: 2rem;
    }
}

.contract-address {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(16, 18, 37, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 0.75rem 1.25rem;
    transition: all 0.3s ease;
    position: fixed;
    top: 80px;
    right: 20px;
    z-index: 1000;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.feature-card {
    background: rgba(16, 18, 37, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: 0 10px 30px rgba(153, 69, 255, 0.1);
}

.feature-icon {
    font-size: 1.75rem;
    color: var(--accent);
    margin-bottom: 1.25rem;
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(153, 69, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    background: rgba(153, 69, 255, 0.2);
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0 0 0 !important;
    font-size: 0.95rem;
    flex-grow: 1;
}

/* Force consistent spacing for tradebot image */
.feature-card .tradebot-image-container {
    margin: 0 !important;
    padding: 0 !important;
    line-height: 0 !important;
}

/* Target the specific tradebot feature card */
.feature-card:has(.fa-robot) p {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

.feature-card:has(.fa-robot) .tradebot-image-container {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* ===========================================
   ROADMAP SECTION
   =========================================== */
.roadmap-section {
    position: relative;
    padding: 5rem 0;
    background: rgba(16, 18, 37, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(138, 43, 226, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(138, 43, 226, 0); }
    100% { box-shadow: 0 0 0 0 rgba(138, 43, 226, 0); }
}

.roadmap-section .section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    position: relative;
    z-index: 2;
}

.roadmap-section .section-tag {
    display: inline-block;
    background: rgba(237, 97, 245, 0.15);
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.roadmap-section .section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, var(--accent), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.roadmap-section .section-subtitle {
    color: var(--text-secondary);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.roadmap-section .disclaimer-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--text-tertiary);
    font-size: 0.95rem;
    margin: 1.5rem auto 0;
    max-width: 800px;
    font-style: italic;
    padding: 0.5rem 0;
}

.roadmap-section .disclaimer-text i {
    color: var(--accent);
    font-size: 1rem;
    flex-shrink: 0;
}

.roadmap-section .disclaimer-text span {
    line-height: 1.6;
    opacity: 0.8;
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
}

.timeline {
    position: relative;
    padding-left: 20px; /* Space for the timeline */
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--accent), var(--accent-secondary), transparent);
    z-index: 1;
    margin: 0;
    padding: 0;
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    padding-left: 30px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 24px;
}

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

/* Glowing dot for Q4 2025 */
.timeline-item.q4-2025 .timeline-date::before {
    content: '';
    display: inline-block;
    width: 12px;
    height: 12px;
    background: var(--accent);
    border-radius: 50%;
    margin-right: 8px;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.3), 0 0 15px var(--accent);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(237, 97, 245, 0.7), 0 0 0 0 rgba(237, 97, 245, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(237, 97, 245, 0), 0 0 0 20px rgba(237, 97, 245, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(237, 97, 245, 0), 0 0 0 0 rgba(237, 97, 245, 0);
    }
}

.timeline-marker-pulse {
    display: none;
}

.timeline-content {
    background: rgba(15, 0, 20, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(224, 143, 249, 0.2);
    border-radius: 16px;
    padding: 1.75rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--accent-secondary));
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    border-color: var(--accent-light);
}

.timeline-date {
    display: inline-block;
    background: rgba(237, 97, 245, 0.1);
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.35rem 0.75rem;
    border-radius: 50px;
    margin-bottom: 1rem;
}

.timeline-title {
    font-size: 1.5rem;
    margin: 0 0 1rem 0;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.timeline-icon {
    color: var(--accent);
    font-size: 1.25rem;
    width: 32px;
    height: 32px;
    background: rgba(237, 97, 245, 0.1);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.timeline-media {
    margin: 1.25rem 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.timeline-media img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.timeline-content:hover .timeline-media img {
    transform: scale(1.02);
}

.timeline-detail {
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 1.25rem 0 0;
}

.timeline-features {
    margin: 1.25rem 0 0;
    padding: 0;
    list-style: none;
}

.timeline-features li,
.timeline-features .feature {
    position: relative;
    padding: 0.4rem 0 0.4rem 1.75rem;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

.timeline-features i {
    position: absolute;
    left: 0;
    top: 0.5rem;
    color: var(--accent);
    font-size: 0.9rem;
}

.timeline-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.tag {
    display: inline-block;
    background: rgba(138, 43, 226, 0.1);
    color: var(--accent-light);
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    border: 1px solid rgba(138, 43, 226, 0.3);
}

.timeline-cta {
    margin-top: 1.25rem;
}

.roadmap-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    border: 1px dashed rgba(224, 143, 249, 0.3);
}

.roadmap-cta p {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

/* Animations */
@keyframes pulse {
    0% {
        transform: scale(0.95);
        opacity: 0.5;
    }
    70% {
        transform: scale(1.1);
        opacity: 0.2;
    }
    100% {
        transform: scale(0.95);
        opacity: 0.5;
    }
}

/* Responsive Styles */
@media (min-width: 992px) {
    .roadmap-section {
        padding: 7rem 0;
    }
    
    .timeline::before {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .timeline-item {
        width: 50%;
        padding-left: 0;
        padding-right: 0;
    }
    
    .timeline-item:nth-child(odd) {
        padding-right: 50px;
        text-align: right;
    }
    
    .timeline-item:nth-child(even) {
        margin-left: 50%;
        padding-left: 50px;
        text-align: left;
    }
    
    .timeline-marker {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .timeline-item:nth-child(even) .timeline-marker {
        left: -20px;
        transform: none;
    }
    
    .timeline-item:nth-child(odd) .timeline-marker {
        right: -20px;
        left: auto;
    }
    
    .timeline-title {
        justify-content: flex-start;
    }
    
    .timeline-item:nth-child(odd) .timeline-title {
        justify-content: flex-end;
    }
    
    .timeline-item:nth-child(odd) .timeline-features,
    .timeline-item:nth-child(odd) .timeline-tags {
        justify-content: flex-end;
    }
    
    .timeline-item:nth-child(odd) .timeline-features li,
    .timeline-item:nth-child(odd) .timeline-features .feature {
        padding-left: 0;
        padding-right: 1.75rem;
    }
    
    .timeline-item:nth-child(odd) .timeline-features i {
        left: auto;
        right: 0;
    }
}

/* Mobile Responsive Adjustments */
@media (max-width: 991px) {
    .timeline {
        padding-left: 16px;
    }
    
    .timeline::before {
        left: 0;
    }
    
    .timeline-item {
        padding-left: 16px;
    }
    .roadmap-section .section-title {
        font-size: 2.25rem;
    }
    
    .roadmap-section .section-subtitle {
        font-size: 1.1rem;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        padding-left: 60px;
    }
    
    .timeline-marker {
        left: 0;
    }
    
    .timeline-content {
        padding: 1.5rem;
    }
    
    .timeline-title {
        font-size: 1.35rem;
    }
    
    .timeline-date {
        font-size: 0.8rem;
    }
    
    .roadmap-cta {
        padding: 1.5rem;
    }
    
    .roadmap-cta p {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .roadmap-section {
        padding: 4rem 0;
    }
    
    .roadmap-section .section-title {
        font-size: 2rem;
    }
    
    .roadmap-section .section-subtitle {
        font-size: 1.05rem;
    }
    
    .timeline::before {
        left: 16px;
    }
    
    .timeline-item {
        padding-left: 50px;
    }
    
    .timeline-marker {
        width: 32px;
        height: 32px;
    }
    
    .timeline-marker-dot {
        width: 14px;
        height: 14px;
    }
    
    .timeline-content {
        padding: 1.25rem;
    }
    
    .timeline-title {
        font-size: 1.25rem;
    }
    
    .timeline-icon {
        width: 28px;
        height: 28px;
        font-size: 1.1rem;
    }
    
    .timeline-features li,
    .timeline-features .feature {
        font-size: 0.95rem;
    }
    
    .roadmap-cta {
        margin-top: 3rem;
        padding: 1.25rem;
    }
    
    .roadmap-cta p {
        font-size: 1rem;
        margin-bottom: 1.25rem;
    }
    
    .btn {
        padding: 0.65rem 1.25rem;
        font-size: 0.9rem;
    }
}
    }
    
    .timeline-marker {
        left: 20px !important;
        right: auto !important;
        margin-left: 0;
    }
    
    .timeline-marker.active {
        left: 20px !important;
    }
}

/* Team Section */
.team-section {
    padding: 8rem 2rem;
    background: rgba(10, 10, 20, 0.6);
    position: relative;
}

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

.team-member {
    text-align: center;
    background: rgba(16, 18, 37, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.team-member:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: 0 10px 30px rgba(153, 69, 255, 0.1);
}

.member-avatar {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(153, 69, 255, 0.1);
    font-size: 2.5rem;
    color: var(--accent);
    border: 2px solid var(--accent);
}

.team-member h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.member-role {
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.member-bio {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Social Section - Matching FAQ Style */
.social-section {
    position: relative;
    padding: 6rem 0;
    background: rgba(16, 18, 37, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    z-index: 2;
}

.social-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    padding: 0 var(--container-padding);
}

.social-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.social-header .section-tag {
    display: inline-block;
    background: rgba(237, 97, 245, 0.15);
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.social-header .section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, var(--accent), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.social-header .section-subtitle {
    color: var(--text-secondary);
    font-size: 1.25rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto 2rem;
    opacity: 0.9;
}

/* FAQ Section - Modern Glass Design */
.faq-section {
    position: relative;
    padding: 6rem 0;
    background: rgba(16, 18, 37, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    z-index: 2;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    padding: 0 var(--container-padding);
}

.faq-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.faq-header .section-tag {
    display: inline-block;
    background: rgba(237, 97, 245, 0.15);
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.faq-header .section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, var(--accent), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.faq-header .section-subtitle {
    color: var(--text-secondary);
    font-size: 1.25rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto 2rem;
    opacity: 0.9;
}

.faq-grid {
    display: grid;
    gap: 1.25rem;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(15, 0, 20, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(224, 143, 249, 0.2);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    border-color: rgba(138, 43, 226, 0.3);
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    background: transparent;
    border: none;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.faq-question i {
    transition: all 0.3s ease;
    color: var(--accent);
    font-size: 1.1rem;
    margin-left: 1.5rem;
    flex-shrink: 0;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 1px solid rgba(224, 143, 249, 0.1);
}

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

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 1.5rem 0 0;
    font-size: 1.05rem;
    opacity: 0.95;
}

/* Add subtle animation to FAQ items */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-item {
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.faq-item:nth-child(1) { animation-delay: 0.1s; }
.faq-item:nth-child(2) { animation-delay: 0.2s; }
.faq-item:nth-child(3) { animation-delay: 0.3s; }
.faq-item:nth-child(4) { animation-delay: 0.4s; }
.faq-item:nth-child(5) { animation-delay: 0.5s; }

/* Animation for FAQ items */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.faq-item {
    animation: fadeIn 0.5s ease-out forwards;
    opacity: 0;
}

.faq-item:nth-child(1) { animation-delay: 0.1s; }
.faq-item:nth-child(2) { animation-delay: 0.2s; }
.faq-item:nth-child(3) { animation-delay: 0.3s; }
.faq-item:nth-child(4) { animation-delay: 0.4s; }
.faq-item:nth-child(5) { animation-delay: 0.5s; }
.faq-item:nth-child(6) { animation-delay: 0.6s; }
.faq-item:nth-child(7) { animation-delay: 0.7s; }
.faq-item:nth-child(8) { animation-delay: 0.8s; }
.faq-item:nth-child(9) { animation-delay: 0.9s; }
.faq-item:nth-child(10) { animation-delay: 1s; }
.faq-item:nth-child(11) { animation-delay: 1.1s; }
.faq-item:nth-child(12) { animation-delay: 1.2s; }

/* Social Section */
.social-section {
    padding: 6rem 2rem;
    position: relative;
    z-index: 2;
    background: rgba(10, 10, 20, 0.4);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.main-header {
    position: fixed;
    top: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    z-index: 100;
    background: rgba(15, 16, 35, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    max-width: 1800px;
    margin: 0 auto;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--text-primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.25rem;
    margin: 0 auto 3rem;
    text-align: center;
    max-width: 80%;
    font-weight: 400;
}

.social-link:hover {
    transform: translateY(-5px);
    background: rgba(153, 69, 255, 0.1);
    border-color: var(--accent);
    box-shadow: 0 10px 30px rgba(153, 69, 255, 0.2);
}

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

.social-link.telegram:hover {
    color: #0088cc;
}

.social-link.discord:hover {
    color: #5865F2;
}

.social-link.twitter:hover {
    color: #1DA1F2;
}

.copyright {
    color: var(--text-tertiary);
    font-size: 0.875rem;
    margin-top: 4rem;
    font-weight: 400;
}

/* Footer */
footer:not(.social-footer) {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(
        to bottom,
        rgba(10, 10, 15, 0.8) 0%,
        rgba(15, 15, 25, 0.9) 100%
    );
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .main-header {
        padding: 0.75rem 1rem;
    }
    
    .aiko-logo {
        height: 250px;  /* Increased from 200px for tablets */
    }
    
    .contract-address {
        padding: 0.5rem 0.75rem;
        margin: 0.5rem;
    }
    
    #contract {
        font-size: 0.8rem;
        padding: 0.4rem 0.7rem;
    }
    
    .copy-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .main-header {
        padding: 0.5rem 1rem;
        align-items: flex-start;
        justify-content: space-between;
    }
    
    .aiko-logo {
        height: 200px;
        margin-right: 0;
    }
    
    .contract-address-container {
        position: fixed;
        top: 20px;
        right: 10px;
        z-index: 1001;
    }
    
    .contract-address {
        position: static;
        margin: 0;
        padding: 0.4rem 0.8rem;
        max-width: none;
        min-width: auto;
        flex: none;
        background: rgba(16, 18, 37, 0.2);
        backdrop-filter: blur(8px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        font-size: 0.8rem;
    }
    
    #contract {
        font-size: 0.75rem;
        padding: 0.3rem 0.6rem;
        max-width: 60%;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    
    .copy-btn {
        padding: 0.35rem 0.7rem;
        font-size: 0.75rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
        margin-top: 6rem;
    }
    
    .tagline {
        font-size: 1.1rem;
        max-width: 100%;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

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

    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

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

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

.feature, .tokenomics-grid {
    animation: fadeIn 0.6s ease-out forwards;
    opacity: 0;
}

.feature:nth-child(1) { animation-delay: 0.1s; }
.feature:nth-child(2) { animation-delay: 0.2s; }
.feature:nth-child(3) { animation-delay: 0.3s; }

.small-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    opacity: 0;
    animation: fadeIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards;
}

/* Music Control Button */
#music-controls {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10000;
    transition: color 0.2s ease, transform 0.2s ease;
    color: var(--accent, #ED61F5);
    font-size: 16px;
    font-weight: bold;
    font-family: 'Courier New', monospace;
    user-select: none;
}

#music-controls:hover {
    color: var(--accent, #ED61F5);
    transform: scale(1.2);
}

#music-controls:hover i {
    color: var(--accent, #ED61F5);
}

#music-controls i {
    color: var(--accent, #ED61F5);
    font-size: 1.2rem;
    transition: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: relative;
    line-height: 1;
}

/* Pulsing animation when music is playing */
#music-controls.playing {
    animation: pulse 2s infinite;
    color: var(--accent, #ED61F5);
}

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

/* Tooltip for when interaction is needed */
#music-controls::after {
    content: attr(data-tooltip);
    position: absolute;
    right: 45px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(16, 18, 37, 0.9);
    color: white;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 10001;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    font-family: 'Courier New', monospace;
}

#music-controls.needs-interaction::after {
    opacity: 1;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(-50%);
    }
    40% {
        transform: translateY(-55%);
    }
    60% {
        transform: translateY(-45%);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
   #music-controls {
        width: 36px;
        height: 36px;
        bottom: 10px;
        right: 10px;
    }
    
   #music-controls i {
        font-size: 1.1rem;
    }
    
   #music-controls::after {
        font-size: 0.7rem;
        padding: 4px 8px;
        right: 40px;
    }
}
