 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #00ff88;
            --secondary: #9945ff;
            --accent: #14f195;
            --dark: #0a0e27;
            --darker: #050714;
            --light: #ffffff;
            --text-gray: #a8b2d1;
        }

        body {
            font-family: "Orbitron", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
            background: var(--darker);
            color: var(--light);
            overflow-x: hidden;
        }

        /* Animated Background */
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 20% 50%, rgba(153, 69, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(20, 241, 149, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 40% 20%, rgba(0, 255, 136, 0.1) 0%, transparent 50%);
            z-index: -1;
            animation: float 20s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translate(0, 0) rotate(0deg); }
            33% { transform: translate(-20px, -20px) rotate(1deg); }
            66% { transform: translate(20px, -10px) rotate(-1deg); }
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            padding: 20px 5%;
            background: rgba(10, 14, 39, 0.8);
            backdrop-filter: blur(10px);
            z-index: 1000;
            transition: all 0.3s ease;
        }

        nav.scrolled {
            padding: 15px 5%;
            background: rgba(5, 7, 20, 0.95);
            box-shadow: 0 10px 30px rgba(0, 255, 136, 0.1);
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
        }

       .logo {
            display: flex;
            align-items: center;
            gap: 10px; /* Space between logo and text */
            font-size: 28px;
            font-weight: bold;
            cursor: pointer;
        }

        .logo img {
            width: 40px; /* Adjust size as needed */
            height: 40px;
            object-fit: contain;
            animation: rotate 8s linear infinite; /* Optional rotation animation */
        }

        .logo span {
            background: var(--primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: glow 2s ease-in-out infinite;
        }

        /* Optional: Add rotation animation for the logo */
        @keyframes rotate {
            from {
                transform: rotate(0deg);
            }
            to {
                transform: rotate(360deg);
            }
        }

        /* Optional: Make logo clickable to go home */
        .logo:hover {
            transform: scale(1.05);
            transition: transform 0.3s ease;
        }

        .logo:hover img {
            animation-play-state: paused; /* Pause rotation on hover */
        }

        @keyframes glow {
            0%, 100% { filter: brightness(1); }
            50% { filter: brightness(1.2); }
        }

        .nav-links {
            display: flex;
            gap: 30px;
            align-items: center;
        }

        .nav-links a {
            color: var(--text-gray);
            text-decoration: none;
            font-size: 16px;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-links a:hover {
            color: var(--primary);
            transform: translateY(-2px);
        }

        .nav-links a:hover::after {
            width: 100%;
        }

       .mint-btn {
            background: var(--primary);
            color: #ffffff !important; /* Force white text */
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: bold;
            transition: all 0.3s ease;
            box-shadow: 0 5px 20px rgba(0, 255, 136, 0.3);
        }

        .mint-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 8px 30px rgba(0, 255, 136, 0.5);
            color: #ffffff !important; /* Keep white on hover */
        }

        /* Remove the hover underline effect for mint button */
        .mint-btn::after {
            display: none;
        }

        /* Mobile Menu */
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            z-index: 1001;
        }

        .hamburger span {
            width: 25px;
            height: 3px;
            background: var(--primary);
            margin: 3px 0;
            transition: 0.3s;
            border-radius: 3px;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(-45deg) translate(-6px, 6px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(45deg) translate(-6px, -6px);
        }

        .mobile-menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: 80%;
            height: 100vh;
            background: linear-gradient(135deg, rgba(10, 14, 39, 0.98), rgba(5, 7, 20, 0.98));
            backdrop-filter: blur(20px);
            transition: right 0.3s ease;
            display: flex;
            flex-direction: column;
            padding: 100px 30px;
            z-index: 999;
        }

        .mobile-menu.active {
            right: 0;
        }

        .mobile-menu a {
            color: var(--text-gray);
            text-decoration: none;
            font-size: 20px;
            margin: 20px 0;
            transition: all 0.3s ease;
        }

        .mobile-menu a:hover {
            color: var(--primary);
            transform: translateX(10px);
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 120px 5% 80px;
            position: relative;
        }

        .hero-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            width: 100%;
        }

        .hero-content {
            animation: slideInLeft 1s ease;
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .hero-title {
            font-size: 60px;
            font-weight: bold;
            line-height: 1.2;
            margin-bottom: 20px;
            background: var(--primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: gradientShift 3s ease infinite;
        }

        @keyframes gradientShift {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        .hero-subtitle {
            font-size: 24px;
            color: var(--text-gray);
            margin-bottom: 30px;
        }

        .hero-description {
            font-size: 18px;
            color: var(--text-gray);
            line-height: 1.6;
            margin-bottom: 30px;
        }

        .launch-info {
            background: rgba(0, 255, 136, 0.1);
            border: 2px solid var(--primary);
            border-radius: 15px;
            padding: 20px;
            margin-bottom: 30px;
            backdrop-filter: blur(10px);
        }

        .launch-info h3 {
            color: var(--primary);
            margin-bottom: 10px;
            font-size: 20px;
        }

        .contract-address {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            padding: 15px;
            margin-bottom: 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .contract-address:hover {
            background: rgba(255, 255, 255, 0.08);
            border-color: var(--primary);
        }

        .contract-address span {
            font-family: monospace;
            color: var(--text-gray);
            font-size: 14px;
        }

        .copy-btn {
            background: var(--primary);
            color: var(--dark);
            padding: 8px 15px;
            border-radius: 8px;
            font-size: 12px;
            font-weight: bold;
            transition: all 0.3s ease;
        }

        .copy-btn:hover {
            background: var(--accent);
            transform: scale(1.05);
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-bottom: 40px;
        }

        .social-link {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.05);
            border: 2px solid rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            color: var(--text-gray);
            text-decoration: none;
            font-size: 12px;
            font-weight: bold;
        }

        .social-link:hover {
            background: var(--primary);
            border-color: var(--primary);
            color: var(--dark);
            transform: translateY(-5px) scale(1.1);
            box-shadow: 0 10px 30px rgba(0, 255, 136, 0.4);
        }

        .social-link img {
            width: 30px;
            height: 30px;
            object-fit: contain;
            
            transition: filter 0.3s ease;
        }


        .btn-primary {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: var(--light);
            padding: 15px 40px;
            border-radius: 50px;
            font-size: 18px;
            font-weight: bold;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
            box-shadow: 0 5px 20px rgba(0, 255, 136, 0.3);
        }

        .btn-primary:hover {
            transform: scale(1.05) translateY(-3px);
            box-shadow: 0 10px 40px rgba(0, 255, 136, 0.5);
        }

        .btn-secondary {
            background: transparent;
            color: var(--primary);
            padding: 15px 40px;
            border-radius: 50px;
            font-size: 18px;
            font-weight: bold;
            text-decoration: none;
            display: inline-block;
            border: 2px solid var(--primary);
            transition: all 0.3s ease;
        }

        .btn-secondary:hover {
            background: var(--primary);
            color: var(--dark);
            transform: scale(1.05) translateY(-3px);
            box-shadow: 0 10px 40px rgba(0, 255, 136, 0.5);
        }

        .hero-image {
            position: relative;
            animation: slideInRight 1s ease;
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .alien-image {
            /* Remove fixed dimensions */
            width: auto;
            max-width: 500px; /* Optional: set a maximum width if needed */
            height: auto;
            border-radius: 20px;
            position: relative;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 255, 136, 0.3);
            animation: float 6s ease-in-out infinite;
            display: inline-block; /* Changed from flex to inline-block */
        }

        .alien-image img {
            width: auto;
            height: auto;
            max-width: 100%; /* Prevents image from exceeding container on small screens */
            display: block; /* Removes bottom gap */
            border-radius: 20px;
            position: relative;
            z-index: 1;
        }


        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-20px); }
        }

       

        @keyframes shine {
            0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
            100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
        }



/* Story-driven About Section */
.story-header {
    text-align: center;
    margin-bottom: 60px;
}

.alien-signal {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 30px;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid var(--primary);
    border-radius: 50px;
    color: var(--primary);
    font-size: 14px;
    letter-spacing: 2px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
}

.story-content {
    max-width: 900px;
    margin: 0 auto 80px;
}

.story-chapter {
    margin-bottom: 50px;
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
}

.story-chapter:nth-child(1) { animation-delay: 0.2s; }
.story-chapter:nth-child(2) { animation-delay: 0.4s; }
.story-chapter:nth-child(3) { animation-delay: 0.6s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.chapter-title {
    color: var(--primary);
    font-size: 28px;
    margin-bottom: 15px;
    position: relative;
    padding-left: 20px;
}



.story-text {
    color: var(--text-gray);
    font-size: 18px;
    line-height: 1.8;
    padding-left: 20px;
}

.transmission-box {
    background: linear-gradient(135deg, rgba(153, 69, 255, 0.05), rgba(0, 255, 136, 0.05));
    border: 2px solid transparent;
    background-clip: padding-box;
    border-image: linear-gradient(135deg, var(--primary), var(--secondary)) 1;
    
    padding: 40px;
    margin: 60px auto;
    max-width: 800px;
    position: relative;
    overflow: hidden;
}

.transmission-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.1), transparent);
    animation: scan 3s linear infinite;
}

@keyframes scan {
    0% { left: -100%; }
    100% { left: 100%; }
}

.transmission-header {
    color: var(--primary);
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.blink {
    color: #ff0000;
    animation: blink 1s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.transmission-text {
    color: var(--light);
    font-size: 20px;
    line-height: 1.6;
    font-style: italic;
    margin: 20px 0;
}

.transmission-footer {
    text-align: right;
    color: var(--secondary);
    font-size: 16px;
    margin-top: 20px;
    font-weight: bold;
}

/* Update existing .about-container */
.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px; /* Add horizontal padding */
    text-align: center;
}

/* Add to your mobile responsive section */
@media (max-width: 768px) {
    .about {
        padding: 80px 20px; /* Add consistent padding on mobile */
    }
    
    .about-container {
        padding: 0; /* Container uses parent padding on mobile */
    }
    
    .story-content {
        padding: 0 15px; /* Add padding to story content */
    }
    
    .story-text {
        font-size: 16px;
        padding-left: 15px;
    }
    
    .chapter-title {
        font-size: 24px;
    }
    
    .transmission-text {
        font-size: 18px;
    }
    
    .transmission-box {
        padding: 30px 20px;
        margin: 40px 15px; /* Add horizontal margin on mobile */
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .stats-grid {
        padding: 0 10px; /* Add padding to stats grid */
        gap: 20px; /* Reduce gap on mobile */
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .story-text {
        font-size: 16px;
        padding-left: 15px;
    }
    
    .chapter-title {
        font-size: 24px;
    }
    
    .transmission-text {
        font-size: 18px;
    }
    
    .transmission-box {
        padding: 30px 20px;
    }
    
    .stat-number {
        font-size: 36px;
    }
}

        /* NFTs Section */
.nfts {
    padding: 100px 0;
    background: var(--darker);
    position: relative;
    overflow: hidden;
}

.nfts-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

.carousel-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.carousel-container::before,
.carousel-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.carousel-container::before {
    left: 0;
    background: linear-gradient(to right, var(--darker), transparent);
}

.carousel-container::after {
    right: 0;
    background: linear-gradient(to left, var(--darker), transparent);
}

.carousel-track {
    display: flex;
    animation: scroll 45s linear infinite; /* Increased from 30s to 45s */
    width: fit-content;
}

.carousel-track:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.carousel-slide {
    flex: 0 0 auto;
    width: 250px;
    height: 250px;
    margin: 0 15px;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1), rgba(153, 69, 255, 0.1));
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.carousel-slide:hover {
    
    border-color: var(--primary);
    
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}


.nft-number {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.8);
    color: var(--primary);
    padding: 5px 10px;
    border-radius: 10px;
    font-weight: bold;
    font-size: 14px;
    backdrop-filter: blur(10px);
    border: 1px solid var(--primary);
}

.nfts-cta {
    text-align: center;
    margin-top: 60px;
}

.nft-story {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

.story-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.story-block {
    text-align: left;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.story-block:nth-child(1) { animation-delay: 0.1s; }
.story-block:nth-child(2) { animation-delay: 0.2s; }
.story-block:nth-child(3) { animation-delay: 0.3s; }

.story-title {
    color: var(--primary);
    font-size: 24px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.story-title::before {
    content: '◆';
    color: var(--secondary);
    font-size: 16px;
}

.story-text {
    color: var(--text-gray);
    font-size: 16px;
    line-height: 1.8;
}

.collection-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 60px auto;
    padding: 0 20px;
}

.stat-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-box:hover {
    background: rgba(0, 255, 136, 0.05);
    border-color: var(--primary);
    transform: translateY(-5px);
}

.stat-value {
    font-size: 36px;
    font-weight: bold;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
}

.stat-label {
    color: var(--text-gray);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-text {
    color: var(--text-gray);
    font-size: 20px;
    margin-bottom: 30px;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .story-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .story-title {
        font-size: 20px;
    }
    
    .story-text {
        font-size: 15px;
    }
    
    .collection-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stat-value {
        font-size: 28px;
    }
    
    .cta-text {
        font-size: 18px;
        padding: 0 20px;
    }
}

.nft-button {
    padding: 20px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .carousel-slide {
        width: 200px;
        height: 200px;
        margin: 0 10px;
    }
    
    @keyframes scroll {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(-50%);
        }
    }
}

/* Different speed options - you can adjust */
@media (prefers-reduced-motion: reduce) {
    .carousel-track {
        animation: none;
    }
    
    .carousel-container {
        overflow-x: auto;
        overflow-y: hidden;
    }
    
    .carousel-track {
        padding: 0 20px;
    }
}

/* Token Section */
.token {
    padding: 100px 5%;
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.8), rgba(5, 7, 20, 0.9));
    position: relative;
    overflow: hidden;
}

.token::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 20%, rgba(153, 69, 255, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 70% 80%, rgba(0, 255, 136, 0.15) 0%, transparent 40%);
    pointer-events: none;
}

.token-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.token-header {
    text-align: center;
    margin-bottom: 60px;
}

.token-story {
    margin-bottom: 60px;
}

.horizon-connection {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.story-heading {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.story-heading::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.story-paragraph {
    color: var(--text-gray);
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.token-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.token-info-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
    text-align: center;
}

.token-info-card:hover {
    background: rgba(0, 255, 136, 0.05);
    border-color: var(--primary);
    transform: translateY(-5px);
}

.card-icon {
    font-size: 48px;
    margin-bottom: 20px;
    animation: float 3s ease-in-out infinite;
}

.token-info-card h4 {
    color: var(--primary);
    font-size: 22px;
    margin-bottom: 15px;
}

.token-info-card p {
    color: var(--text-gray);
    font-size: 16px;
    line-height: 1.6;
}

.launch-box {
    background: rgba(0, 255, 136, 0.05);
    border: 2px solid var(--primary);
    border-radius: 25px;
    padding: 40px;
    margin: 60px auto;
    max-width: 800px;
    position: relative;
    overflow: hidden;
}

.launch-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.1), transparent);
    animation: scan 4s linear infinite;
}

.launch-box-header {
    text-align: center;
    margin-bottom: 30px;
}

.launch-box-header h3 {
    color: var(--primary);
    font-size: 28px;
    margin-bottom: 10px;
}

.countdown-label {
    color: var(--secondary);
    font-size: 16px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.contract-section {
    margin: 30px 0;
}

.contract-label {
    display: block;
    color: var(--text-gray);
    font-size: 14px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.token-contract-address {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.token-contract-address:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary);
    transform: translateY(-2px);
}

#tokenContractAddress {
    font-family: monospace;
    color: var(--text-gray);
    font-size: 16px;
    word-break: break-all;
}

.copy-token-btn {
    background: var(--primary);
    color: var(--dark);
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: bold;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.copy-token-btn:hover {
    background: var(--accent);
    transform: scale(1.05);
}

.token-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    padding: 15px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
}

.detail-label {
    color: var(--text-gray);
    font-size: 14px;
}

.detail-value {
    color: var(--primary);
    font-weight: bold;
    font-size: 14px;
}

.horizon-message {
    max-width: 700px;
    margin: 60px auto;
    padding: 30px;
    background: linear-gradient(135deg, rgba(153, 69, 255, 0.05), rgba(0, 255, 136, 0.05));
    border-left: 3px solid var(--primary);
    border-radius: 10px;
}

.message-content h4 {
    color: var(--secondary);
    margin-bottom: 15px;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.message-content p {
    color: var(--light);
    font-size: 16px;
    line-height: 1.8;
    font-style: italic;
}

.message-signature {
    text-align: right;
    color: var(--primary);
    margin-top: 20px;
    font-size: 14px;
    letter-spacing: 2px;
}

.token-cta {
    text-align: center;
    margin-top: 60px;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .token-grid {
        grid-template-columns: 1fr;
    }
    
    .launch-box {
        padding: 30px 20px;
    }
    
    .token-contract-address {
        flex-direction: column;
        gap: 15px;
    }
    
    .copy-token-btn {
        width: 100%;
        text-align: center;
    }
    
    .token-details {
        grid-template-columns: 1fr;
    }
    
    .token-cta {
        flex-direction: column;
        padding: 0 20px;
    }
    
    .token-cta a {
        width: 100%;
    }
}



/* Token Hero Image */
.token-hero-image {
    width: 100%;
    max-width: 900px;
    margin: 40px auto 60px;
    position: relative;
    aspect-ratio: 3 / 2;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 255, 136, 0.3);
    animation: fadeInUp 1s ease;
}

.token-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(0, 255, 136, 0.2) 0%, 
        transparent 50%,
        rgba(153, 69, 255, 0.2) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.token-hero-image:hover .image-overlay {
    opacity: 1;
}

.overlay-text {
    font-size: 48px;
    font-weight: bold;
    color: var(--light);
    text-shadow: 0 0 30px rgba(0, 255, 136, 0.8);
    letter-spacing: 8px;
    animation: glow 2s ease-in-out infinite;
}

/* Add subtle animation */
.token-hero-image::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, 
        transparent, 
        rgba(255, 255, 255, 0.1), 
        transparent);
    transform: rotate(45deg);
    animation: shine 4s infinite;
    pointer-events: none;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .token-hero-image {
       
        border-radius: 15px;
    }
    
    .overlay-text {
        font-size: 32px;
        letter-spacing: 4px;
    }
}

/* Horizon Platform CTA */
.horizon-platform-cta {
    text-align: center;
    margin-top: 60px;
    padding-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.horizon-button {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1), rgba(153, 69, 255, 0.1));
    border: 2px solid var(--primary);
    border-radius: 60px;
    padding: 15px 30px;
    text-decoration: none;
    color: var(--light);
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.horizon-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.3), transparent);
    transition: left 0.5s ease;
}

.horizon-button:hover::before {
    left: 100%;
}

.horizon-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 255, 136, 0.4);
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.2), rgba(153, 69, 255, 0.2));
}

.horizon-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: brightness(1.2);
    transition: transform 0.3s ease;
}

.horizon-button:hover .horizon-logo {
    transform: rotate(360deg) scale(1.1);
}

.horizon-text {
    color: var(--light);
    font-size: 18px;
    letter-spacing: 1px;
}

.arrow {
    color: var(--primary);
    font-size: 24px;
    transition: transform 0.3s ease;
}

.horizon-button:hover .arrow {
    transform: translateX(5px);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .horizon-platform-cta {
        padding: 60px 20px 0;
    }
    
    .horizon-button {
        padding: 12px 24px;
        font-size: 16px;
    }
    
    .horizon-logo {
        width: 32px;
        height: 32px;
    }
    
    .horizon-text {
        font-size: 16px;
    }
}

        /* Enhanced Footer */
footer {
    background: linear-gradient(to bottom, var(--darker), #000000);
    padding: 80px 5% 0;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), var(--secondary), transparent);
}

.footer-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 2fr 1.5fr;
    gap: 60px;
    padding-bottom: 60px;
}

/* Brand Section */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-logo {
    width: 50px;
    height: 50px;
    object-fit: contain;
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.footer-logo-container h3 {
    font-size: 24px;
    background: var(--primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
}

.footer-tagline {
    color: var(--text-gray);
    font-size: 16px;
    line-height: 1.6;
}

.footer-socials {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-icon img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.social-icon:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.4);
}



/* Links Grid */
.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    color: var(--primary);
    font-size: 16px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary);
}

.footer-column a {
    color: var(--text-gray);
    text-decoration: none;
    display: block;
    margin: 12px 0;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
}

.footer-column a::before {
    content: '▸';
    position: absolute;
    left: -15px;
    opacity: 0;
    color: var(--primary);
    transition: all 0.3s ease;
}

.footer-column a:hover {
    color: var(--primary);
    padding-left: 15px;
}

.footer-column a:hover::before {
    opacity: 1;
    left: 0;
}

/* Newsletter Section */
.footer-newsletter {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-newsletter h4 {
    color: var(--primary);
    font-size: 18px;
    margin-bottom: 10px;
}

.footer-newsletter p {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.newsletter-input {
    flex: 1;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: var(--light);
    font-size: 14px;
    transition: all 0.3s ease;
}

.newsletter-input::placeholder {
    color: var(--text-gray);
    opacity: 0.7;
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.08);
}

.newsletter-btn {
    padding: 12px 30px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border: none;
    border-radius: 50px;
    color: var(--light);
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.4);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 0;
    margin-top: 40px;
}

.footer-bottom-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom-content p {
    color: var(--text-gray);
    font-size: 14px;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--text-gray);
    font-size: 14px;
}

.footer-bottom-links a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--primary);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .footer-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 20px 40px;
    }
    
    .footer-links-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-btn {
        width: 100%;
    }
}
        /* Responsive */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

          

            .hamburger {
                display: flex;
            }

            .hero-container {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .hero {
                padding-bottom: 0
            }

            .hero-title {
                font-size: 40px;
            }

            .hero-subtitle {
                font-size: 20px;
            }

            .hero-image {
                order: -1;
            }

            .alien-image {
                max-width: 350px;
                height: 350px;
                margin: 0 auto;
            }

            

            .btn-primary, .btn-secondary {
                width: 100%;
                text-align: center;
            }

            .price-tiers {
                grid-template-columns: 1fr;
            }

            .section-title {
                font-size: 36px;
            }

            .contract-address {
                flex-direction: column;
                gap: 10px;
            }

            .copy-btn {
                width: 100%;
                text-align: center;
            }
        }