        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', 'Poppins', sans-serif;
            background: #0a1f12;
            color: #fff;
            line-height: 1.6;
            min-height: 100vh;
            overflow-x: hidden;
        }

        /* Animated background particles */
        .bg-particles {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: -1;
        }

        .particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: rgba(76, 175, 80, 0.3);
            border-radius: 50%;
            animation: float 6s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { 
                transform: translateY(0px) rotate(0deg); 
                opacity: 1; 
            }
            50% { 
                transform: translateY(-20px) rotate(180deg); 
                opacity: 0.7; 
            }
        }

.navbar {
    background: rgba(0, 46, 6, 0.32);
    color: white;
    padding: 1rem 2rem;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid transparent;
    background-clip: padding-box;
    backdrop-filter: blur(10px);
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
    transition: transform 0.3s ease;
    position: relative;
}

.logo::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #e94560, #ff6f61);
    bottom: -5px;
    left: 0;
    transition: width 0.3s ease;
}

.logo:hover::after {
    width: 100%;
}

/* Navigation Links - Desktop */
.nav-menu {
    display: flex;
    list-style: none;
    transition: all 0.3s ease;
}

.nav-item {
    margin-left: 2rem;
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: white;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #e94560, #ff6f61);
    bottom: 0;
    left: 0;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: #e94560;
}

/* Hamburger Menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
}

.bar {
    width: 25px;
    height: 3px;
    background: white;
    margin: 4px 0;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .navbar {
        padding: 1rem;
    }

    .menu-toggle {
        display: flex;
    }

   .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #0a1f12;
        flex-direction: column;
        align-items: center;
        padding: 0.1rem 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-menu.active {
        max-height: 500px;
    }

    .nav-item {
        margin: 1rem 0;
        width: 100%;
        text-align: center;
        margin-left: 0;
    }

    .nav-link {
        display: block;
        padding: 0.5rem 1rem;
    }
}

        /* Launch Hero Section */
        .launch-hero {
            padding: 60px 20px 40px;
            text-align: center;
            position: relative;
        }

        .early-bird-badge {
            display: inline-block;
            background: linear-gradient(135deg, #e1ff35, #f7931e);
            padding: 8px 20px;
            border-radius: 25px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 20px;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        .launch-title {
            font-size: clamp(3rem, 6vw, 5rem);
            font-weight: 700;
            margin-bottom: 20px;
            background: linear-gradient(135deg, #4CAF50, #8BC34A, #CDDC39);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: shimmer 3s ease-in-out infinite;
        }

        @keyframes shimmer {
            0%, 100% { filter: hue-rotate(0deg); }
            50% { filter: hue-rotate(30deg); }
        }

        .launch-subtitle {
            font-size: 1.5rem;
            color: rgba(255, 255, 255, 0.9);
            max-width: 800px;
            margin: 0 auto 60px;
            font-weight: 400;
        }

        /* Countdown Timer */
        .countdown-section {
            margin: 40px auto 80px;
            max-width: 1000px;
            padding: 0 20px;
        }

        .countdown-title {
            text-align: center;
            font-size: 2rem;
            color: #4CAF50;
            margin-bottom: 40px;
            font-weight: 600;
        }

        .countdown-timer {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
            max-width: 700px;
            margin: 0 auto 50px;
        }

        .countdown-item {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 20px;
            padding: 25px 15px;
            text-align: center;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(76, 175, 80, 0.3);
            transition: all 0.3s ease;
        }

        .countdown-item:hover {
            transform: translateY(-5px);
            border-color: #4CAF50;
            box-shadow: 0 10px 30px rgba(76, 175, 80, 0.2);
        }

        .countdown-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: #4CAF50;
            display: block;
            margin-bottom: 10px;
            text-shadow: 0 0 20px rgba(76, 175, 80, 0.5);
        }

        .countdown-label {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.8);
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Presale Dashboard */
        .presale-dashboard {
            background: rgba(255, 255, 255, 0.03);
            padding: 60px 20px;
            margin: 0;
            backdrop-filter: blur(10px);
            border-top: 1px solid rgba(76, 175, 80, 0.2);
        }

        .dashboard-container {
            max-width: 900px;
            margin: 0 auto;
        }

        .presale-title {
            text-align: center;
            font-size: 2.5rem;
            color: #4CAF50;
            margin-bottom: 50px;
            font-weight: 600;
        }

        .presale-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 25px;
            margin-bottom: 40px;
        }

        .presale-stat {
            background: rgba(76, 175, 80, 0.1);
            padding: 30px 25px;
            border-radius: 15px;
            border: 1px solid rgba(76, 175, 80, 0.3);
            text-align: center;
            transition: all 0.3s ease;
        }

        .presale-stat:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(76, 175, 80, 0.2);
        }

        .stat-value {
            font-size: 2.2rem;
            font-weight: 700;
            color: #4CAF50;
            margin-bottom: 8px;
        }

        .stat-label {
            color: rgba(255, 255, 255, 0.8);
            font-size: 1rem;
        }

        .price-comparison {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin: 30px 0;
        }

        .price-card {
            background: rgba(255, 255, 255, 0.05);
            padding: 25px;
            border-radius: 15px;
            text-align: center;
            border: 1px solid rgba(76, 175, 80, 0.3);
        }

        .early-bird-price {
            border-color: #e1ff35;
            background: rgba(255, 107, 53, 0.1);
        }

        .price-label {
            font-size: 1.1rem;
            margin-bottom: 10px;
            font-weight: 600;
        }

        .price-value {
            font-size: 2rem;
            font-weight: 700;
            color: #4CAF50;
        }

        .early-bird-price .price-value {
            color: #e1ff35;
        }

        .savings-badge {
            background: #ff6b35;
            color: white;
            padding: 5px 15px;
            border-radius: 15px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-top: 10px;
            display: inline-block;
        }

        .progress-container {
            margin: 40px 0;
        }

        .progress-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 15px;
            font-size: 1.1rem;
        }

        .progress-bar {
            width: 100%;
            height: 20px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            overflow: hidden;
            position: relative;
            border: 1px solid rgba(76, 175, 80, 0.3);
        }

        .progress-fill {
            height: 100%;
            background: linear-gradient(90deg, #4CAF50, #8BC34A);
            border-radius: 10px;
            transition: width 2s ease;
            position: relative;
            overflow: hidden;
        }

        .progress-fill::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
            animation: shine 2s infinite;
        }

        @keyframes shine {
            0% { left: -100%; }
            100% { left: 100%; }
        }

        /* Live Activity Feed */
        .activity-section {
            padding: 60px 20px;
            max-width: 800px;
            margin: 0 auto;
        }

        .activity-title {
            text-align: center;
            font-size: 2rem;
            color: #4CAF50;
            margin-bottom: 40px;
            font-weight: 600;
        }

        .activity-feed {
            max-height: 300px;
            overflow-y: auto;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 15px;
            padding: 20px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(76, 175, 80, 0.2);
        }

        .activity-item {
            display: flex;
            align-items: center;
            padding: 15px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            animation: fadeIn 0.5s ease;
        }

        .activity-item:last-child {
            border-bottom: none;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .activity-dot {
            width: 10px;
            height: 10px;
            background: #4CAF50;
            border-radius: 50%;
            margin-right: 15px;
            animation: pulse 2s infinite;
        }

        .activity-text {
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.9rem;
        }

        .activity-amount {
            color: #4CAF50;
            font-weight: 600;
        }

                /* Presale Perks Section */
        .perks-section {
            padding: 80px 20px;
            background: rgba(76, 175, 80, 0.05);
            backdrop-filter: blur(10px);
        }

        .perks-title {
            text-align: center;
            font-size: 2.5rem;
            color: #4CAF50;
            margin-bottom: 20px;
            font-weight: 600;
        }

        .perks-subtitle {
            text-align: center;
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 60px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .perks-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto 60px;
        }

        .perk-card {
            background: rgba(255, 255, 255, 0.05);
            padding: 35px 25px;
            border-radius: 20px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(76, 175, 80, 0.2);
            transition: all 0.3s ease;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .perk-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(76, 175, 80, 0.1), transparent);
            transition: left 0.6s ease;
        }

        .perk-card:hover::before {
            left: 100%;
        }

        .perk-card:hover {
            transform: translateY(-10px) scale(1.02);
            border-color: #4CAF50;
            box-shadow: 0 20px 40px rgba(76, 175, 80, 0.2);
            background: rgba(255, 255, 255, 0.08);
        }

        .perk-icon {
            font-size: 3rem;
            margin-bottom: 20px;
            display: block;
            filter: drop-shadow(0 0 10px rgba(76, 175, 80, 0.3));
        }

        .perk-content h3 {
            color: #4CAF50;
            font-size: 1.4rem;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .perk-content p {
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.6;
            font-size: 0.95rem;
        }

        .perks-cta {
            text-align: center;
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .cta-button {
            display: inline-block;
            padding: 20px 40px;
            background: linear-gradient(135deg, #4CAF50, #8BC34A);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            transition: all 0.3s ease;
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
        }

        /* TO REMOVE WHEN THE COIN IS READY */

        /* Style for the disabled "work in progress" button */
.cta-button.disabled {
    background-color: #556080; /* A slightly darker, less prominent color */
    color: #e0e0e0; /* Lighter text color */
    cursor: not-allowed; /* Shows a "not allowed" cursor */
    pointer-events: none; /* The crucial part to make it unclickable */
    position: relative; /* Needed for the animation and pseudo-element */
    overflow: hidden; /* Hides the glowing effect outside the button */
    
    /* Animation to create a subtle pulsing glow */
    animation: pulse 1.5s infinite;
}

/* Keyframes for the pulse animation */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(85, 96, 128, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(85, 96, 128, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(85, 96, 128, 0);
    }
}

/* Style for the "Work in Progress" text */
.wip-text {
    font-size: 0.7em; /* Make the text smaller */
    margin-left: 8px;
    font-weight: bold;
    letter-spacing: 0.5px;
    opacity: 0.8;
}

        .cta-button.secondary {
            background: transparent;
            border-color: #4CAF50;
            color: #4CAF50;
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s ease;
        }

        .cta-button:hover::before {
            left: 100%;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(76, 175, 80, 0.4);
        }

        .cta-button.secondary:hover {
            background: #4CAF50;
            color: white;
        }

     

        /* Responsive */
        @media (max-width: 768px) {
            .countdown-timer {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }

            .countdown-number {
                font-size: 2rem;
            }

            .presale-stats {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .price-comparison {
                grid-template-columns: 1fr;
            }

        }