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

        body {
            font-family: 'Arial', sans-serif;
            background: #0a0a0a;
            color: #ffffff;
            overflow-x: hidden;
            margin-top: 0;
            padding-top: 20px;
        }

        /* Navigation */
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(0, 0, 0, 0.9);
            backdrop-filter: blur(10px);
            padding: 1rem 2rem;
            z-index: 1000;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: #4CAF50;
            text-decoration: none;
        }

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

        .nav-links a {
            color: #ffffff;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
            cursor: pointer;
        }

        .nav-links a:hover {
            color: #4CAF50;
        }

        .connect-wallet {
            background: linear-gradient(45deg, #4CAF50, #8BC34A);
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 25px;
            color: white;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .connect-wallet:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(76, 175, 80, 0.3);
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('hero-placeholder.jpg');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            position: relative;
            padding: 2rem 0;
        }

        .hero-content {
            max-width: 800px;
            padding: 2rem;
        }

        .hero h1 {
            font-size: 4rem;
            margin-bottom: 1rem;
            background: linear-gradient(45deg, #4CAF50, #8BC34A, #CDDC39);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: glow 2s ease-in-out infinite alternate;
        }

        @keyframes glow {
            from { filter: drop-shadow(0 0 10px #4CAF50); }
            to { filter: drop-shadow(0 0 20px #8BC34A); }
        }

        .hero p {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            color: #cccccc;
        }

        .ticker {
            font-size: 2rem;
            color: #4CAF50;
            font-weight: bold;
            margin-bottom: 2rem;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn {
            padding: 1rem 2rem;
            border: none;
            border-radius: 25px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .btn-primary {
            background: linear-gradient(45deg, #4CAF50, #8BC34A);
            color: white;
        }

        .btn-secondary {
            background: transparent;
            color: #4CAF50;
            border: 2px solid #4CAF50;
        }

        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(76, 175, 80, 0.4);
        }

        /* About Section */
        .about {
            padding: 5rem 2rem;
            background: #111111;
        }

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

        .section-title {
            font-size: 3rem;
            text-align: center;
            margin-bottom: 3rem;
            color: #4CAF50;
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }

        .about-text {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #cccccc;
            text-align: justify;
        }

        .about-image {
            text-align: center;
        }

        .about-image img {
            max-width: 100%;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(76, 175, 80, 0.3);
        }

        /* Tokenomics */
        .tokenomics {
            padding: 5rem 2rem;
            background: #0a0a0a;
        }

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

        .tokenomics-card {
            background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
            padding: 2rem;
            border-radius: 15px;
            border: 1px solid #4CAF50;
            transition: all 0.3s ease;
        }

        .tokenomics-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(76, 175, 80, 0.3);
        }

        .tokenomics-card h3 {
            color: #4CAF50;
            margin-bottom: 1rem;
            font-size: 1.5rem;
        }
        /* ca */
        .contract-address {
            padding: 5rem 2rem;
            background: #111111;
            text-align: center;
        }
        
        .contract-box {
            background: #1a1a1a;
            padding: 1.5rem 2rem;
            border-radius: 12px;
            border: 1px solid #4CAF50;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1rem;
            max-width: 100%;
            overflow-wrap: break-word;
            margin: 0 auto;
        }
        
        #contract {
            color: #ffffff;
            font-size: 1.2rem;
            word-break: break-word;
            text-align: center;
        }
        
        .copy-btn {
            padding: 0.6rem 1.2rem;
            background-color: #4CAF50;
            color: #fff;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            font-weight: bold;
            transition: all 0.3s ease;
        }
        
        .copy-btn:hover {
            background-color: #45a049;
            transform: scale(1.05);
        }
        
      
        @media (min-width: 600px) {
            .contract-box {
                flex-direction: row;
                justify-content: space-between;
            }
        }
        

        #Gallery
        .gallery {
            padding: 5rem 2rem;
            background: #111111;
        }

        .gallery .container {
            background: #111111;
            padding: 2rem;
            border-radius: 10px;
        }

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

        .gallery-item {
            background: #1a1a1a;
            border-radius: 15px;
            overflow: hidden;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .gallery-item:hover {
            transform: translateY(-10px);
            border-color: #4CAF50;
            box-shadow: 0 20px 40px rgba(76, 175, 80, 0.3);
        }

        .gallery-item img {
            /* width: 100%;
            height: 250px;
            object-fit: cover; */
            width: 100%;
            height: auto;
            object-fit: contain;
            display: block;  
            
        }

        .gallery-item-content {
            padding: 1.5rem;
        }

        .gallery-item h3 {
            color: #4CAF50;
            margin-bottom: 0.5rem;
        }

        /* How to Buy */
        .how-to-buy {
            padding: 5rem 2rem;
            background: #0a0a0a;
        }

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

        .step {
            text-align: center;
            padding: 2rem;
            background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
            border-radius: 15px;
            border: 1px solid #4CAF50;
            transition: all 0.3s ease;
        }

        .step:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(76, 175, 80, 0.3);
        }

        .step-number {
            width: 60px;
            height: 60px;
            background: linear-gradient(45deg, #4CAF50, #8BC34A);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
            font-size: 1.5rem;
            font-weight: bold;
        }

        /* Community */
        .community {
            padding: 5rem 2rem;
            background: #111111;
            text-align: center;
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-top: 3rem;
            flex-wrap: wrap;
        }

        .social-link {
            width: 80px;
            height: 80px;
            background: linear-gradient(45deg, #4CAF50, #8BC34A);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            color: white;
            font-size: 2rem;
            transition: all 0.3s ease;
        }

        .social-link:hover {
            transform: translateY(-5px) scale(1.1);
            box-shadow: 0 15px 30px rgba(76, 175, 80, 0.4);
        }

        /* Footer */
        .footer {
            background: #000000;
            padding: 2rem;
            text-align: center;
            border-top: 1px solid #4CAF50;
        }

        /* Animations */
        .floating {
            animation: floating 3s ease-in-out infinite;
        }

        @keyframes floating {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .navbar {
                padding: 1rem;
                flex-direction: column;
                gap: 1rem;
            }

            .nav-links {
                gap: 1rem;
            }

            .hero {
                min-height: 100vh;
                padding: 3rem 1rem;
            }

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

            .about {
                padding: 3rem 1rem;
            }

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

            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }

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

        @media (max-width: 480px) {
            .hero {
                min-height: 90vh;
                padding: 2rem 1rem;
            }

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

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

            .about {
                padding: 2rem 1rem;
            }

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

        /* Scroll animations */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }
    