      * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }

        body {
            background: #333;
            color: #fff;
            overflow-x: hidden;
        }

        
        .hero {
            background: linear-gradient(135deg, #2a2a72 0%, #009ffd 100%);
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero::after {
            content: '';
            position: absolute;
            width: 200%;
            height: 200%;
            background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" stroke="%23ffffff20" fill="none" stroke-width="2"/></svg>');
            animation: pulse 20s infinite linear;
        }

        .hero-content {
            position: relative;
            z-index: 1;
            padding: 2rem;
            max-width: 800px;
        }

        h1 {
            font-size: 4rem;
            margin-bottom: 1.5rem;
            transform: translateY(-50px);
            opacity: 0;
            animation: slideDown 1s forwards 0.5s;
            text-shadow: 3px 3px 0 rgba(0,0,0,0.2);
        }

        .subtitle {
            font-size: 1.5rem;
            margin-bottom: 2rem;
            opacity: 0;
            animation: fadeIn 1s forwards 1s;
        }
   .token-box {
            background: #444141;
            padding: 1.5rem;
            border-radius: 15px;
            margin: 2rem auto;
            max-width: 600px;
            display: flex;
            align-items: center;
            gap: 1rem;
            animation: fadeInUp 1s forwards;
            border: 1px solid #00ff88;
            position: relative;
        }

        .token-info {
            flex-grow: 1;
        }

        .token-title {
            color: #00ff88;
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
        }

        .token-address {
            background: #1a1a1a;
            padding: 0.8rem;
            border-radius: 8px;
            font-family: monospace;
            word-break: break-all;
            position: relative;
        }

        .copy-btn {
            background: none;
            border: none;
            color: #00ff88;
            cursor: pointer;
            padding: 0.5rem;
            transition: all 0.3s ease;
        }

        .copy-btn:hover {
            transform: scale(1.1);
            color: #ffd700;
        }

        .copy-notification {
            position: absolute;
            top: -30px;
            right: 0;
            background: #00ff88;
            color: #1a1a1a;
            padding: 5px 10px;
            border-radius: 5px;
            font-size: 0.8rem;
            opacity: 0;
            transition: opacity 0.3s;
        }

        .cta-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            opacity: 0;
            animation: fadeInUp 1s forwards 1.5s;
        }

        .cta-btn {
            padding: 1rem 2rem;
            border: none;
            border-radius: 50px;
            font-size: 1.2rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .trade-btn {
            background: #ffd700;
            color: #1a1a1a;
        }

        .play-btn {
            background: #00ff88;
            color: #1a1a1a;
        }

        
        .roadmap {
            padding: 4rem 2rem;
            background: #333;
        }

        .roadmap-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .roadmap-item {
            position: relative;
            padding: 2rem;
            margin: 2rem 0;
            border-left: 3px solid #00ff88;
            transform: translateX(-50px);
            opacity: 0;
            transition: all 0.5s ease;
        }

        .roadmap-item::before {
            content: '';
            position: absolute;
            left: -10px;
            top: 2rem;
            width: 20px;
            height: 20px;
            background: #00ff88;
            border-radius: 50%;
        }

        .roadmap-item.active {
            transform: translateX(0);
            opacity: 1;
        }


        @keyframes pulse {
            0% { transform: rotate(0deg) scale(1); }
            100% { transform: rotate(360deg) scale(1.2); }
        }

        @keyframes slideDown {
            to { transform: translateY(0); opacity: 1; }
        }

        @keyframes fadeIn {
            to { opacity: 1; }
        }

        @keyframes fadeInUp {
            to { transform: translateY(0); opacity: 1; }
        }


        .progress-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: #333;
            z-index: 999;
        }

        .progress-bar {
            height: 100%;
            background: #00ff88;
            transition: width 0.3s ease;
        }

      
        .theme-toggle {
            position: fixed;
            top: 20px;
            right: 20px;
            cursor: pointer;
            padding: 10px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
        }


        .about-section {
            background: #2d2d2d;
            padding: 4rem 2rem;
            opacity: 1; 
            transform: none; 
            transition: all 0.5s ease;
            position: relative;
            z-index: 2;
 border-top: 2px solid #00ff88;
 border-bottom: 2px solid #00ff88;
        }

        .about-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }

        .about-image {
            background: url('hand.gif') center/cover;
            height: 400px;
            border-radius: 15px;
            box-shadow: 0 10px 20px rgba(0,0,0,0.3);
        }

        @media (max-width: 768px) {
            .about-content {
                grid-template-columns: 1fr;
            }
        }

  
        .whitepaper-btn {
            background: #00ff88;
            color: #1a1a1a !important; 
            padding: 15px 30px;
            border-radius: 8px;
            font-size: 1.1rem;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            text-decoration: none !important;
            margin-top: 20px;
        }

    .footer {
      
        padding: 3rem;

        margin-top: auto;
        border-top: 2px solid #00ff88;
 border-bottom: 2px solid #00ff88;
    }

    .footer-content {
        max-width: 2800px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        gap: 2rem;
        justify-content: space-between;
    }

    .social-section {
        flex: 1;
        min-width: 250px;
    }

    .social-links {
        display: flex;
        gap: 1.5rem;
        margin-top: 1rem;
    }

    .social-link {
        color: #fff;
        font-size: 1.8rem;
        transition: all 0.3s ease;
        position: relative;
    }

    .social-link:hover {
        color: #00ff88;
        transform: translateY(-3px);
    }

    .contact-section {
        flex: 1;
        min-width: 250px;
    }

    .contact-email {
        color: #fff;
        text-decoration: none;
        font-size: 1.1rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        transition: color 0.3s ease;
    }

    .contact-email:hover {
        color: #00ff88;
    }

    .copyright {
        text-align: center;
        margin-top: 3rem;
        opacity: 0.8;
        font-size: 0.9rem;
    }
    @media (max-width: 768px) {
        .footer-content {
            flex-direction: column;
            text-align: center;
        }

        .social-links {
            justify-content: center;
        }
    }