    :root {
            --primary-color: #e35c29;
            --secondary-color: #333;
            --accent-color: #b23a65;
            --bg-color: #f0f0f5;
            --text-color: #444;
            --hover-color: #c24d22;
            --button-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Courier New', monospace;
        }

        body {
            background-color: var(--bg-color);
            color: var(--text-color);
            line-height: 1.6;
        }

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

        header {
            background-color: var(--primary-color);
            color: white;
            text-align: center;
            padding: 20px 0;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            position: relative;
        }

        header h1 {
            font-size: 2.5rem;
            margin-bottom: 10px;
        }

        .mascot {
            width: 150px;
            height: 150px;
            margin: 0 auto;
            display: block;
        }

        .hero {
            text-align: center;
            padding: 60px 0;
            background-color: rgba(255, 255, 255, 0.8);
            margin-top: 20px;
            border-radius: 10px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
        }

        .hero h2 {
            font-size: 2rem;
            margin-bottom: 20px;
            color: var(--secondary-color);
        }

        .hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 30px;
        }

        .manifesto {
            background-color: rgba(255, 245, 230, 0.95);
            padding: 40px;
            margin: 40px 0;
            border-radius: 10px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
            border: 1px solid #d6c6b0;
        }

        .manifesto h2 {
            text-align: center;
            color: var(--secondary-color);
            margin-bottom: 20px;
            font-size: 1.8rem;
            border-bottom: 2px solid var(--primary-color);
            padding-bottom: 10px;
        }

        .manifesto p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            line-height: 1.8;
        }

        .cta-button {
            display: inline-block;
            background-color: var(--primary-color);
            color: white;
            padding: 15px 35px;
            font-size: 1.3rem;
            border-radius: 8px;
            text-decoration: none;
            margin-top: 20px;
            transition: all 0.3s ease;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
            border: none;
            cursor: pointer;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }

        .cta-button:hover {
            background-color: var(--hover-color);
            transform: translateY(-3px);
            box-shadow: var(--button-shadow);
        }

        .cta-button:active {
            transform: translateY(-1px);
        }

        .telegram-button {
            background-color: #0088cc;
        }

        .telegram-button:hover {
            background-color: #0077b3;
        }

        .uniswap-button {
            background-color: #ff007a;
        }

        .uniswap-button:hover {
            background-color: #e0006c;
        }

        .clanker-button {
            background-color: #ff6600;
        }

        .clanker-button:hover {
            background-color: #e65c00;
        }

        footer {
            text-align: center;
            padding: 30px 0;
            margin-top: 60px;
            border-top: 1px solid #ddd;
            color: var(--secondary-color);
        }

        @media (max-width: 768px) {
            header h1 {
                font-size: 2rem;
            }

            .hero h2 {
                font-size: 1.6rem;
            }

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

            .manifesto {
                padding: 20px;
            }

            .cta-button {
                padding: 12px 25px;
                font-size: 1.1rem;
                display: block;
                margin: 15px auto;
                max-width: 280px;
            }
        }

        /* Pixel Art Style */
        .pixel-art {
            image-rendering: pixelated;
            image-rendering: -moz-crisp-edges;
            image-rendering: crisp-edges;
        }

        /* DAO Stats Section */
        .dao-stats {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            margin: 40px 0;
        }

        .stat-card {
            background-color: white;
            border-radius: 8px;
            padding: 20px;
            width: 30%;
            min-width: 250px;
            margin-bottom: 20px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .stat-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
        }

        .stat-card h3 {
            color: var(--primary-color);
            margin-bottom: 10px;
        }

        .stat-card p {
            font-size: 2rem;
            font-weight: bold;
            color: var(--secondary-color);
        }

        .stat-card small {
            color: #777;
        }

        /* Token Section */
        .token-section {
            background-color: white;
            padding: 40px;
            margin: 40px 0;
            border-radius: 10px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
            text-align: center;
        }

        .token-section h2 {
            color: var(--secondary-color);
            margin-bottom: 30px;
            font-size: 2rem;
        }

        .token-cards {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
        }

        .token-card {
            background-color: #f9f9f9;
            border-radius: 10px;
            padding: 25px;
            width: 300px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 1px solid #eee;
        }

        .token-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        }

        .token-logo {
            width: 80px;
            height: 80px;
            margin: 0 auto 15px;
        }

        .token-name {
            font-size: 1.4rem;
            font-weight: bold;
            margin-bottom: 10px;
            color: var(--secondary-color);
        }

        .token-address {
            font-size: 0.8rem;
            color: #666;
            word-break: break-all;
            margin-bottom: 15px;
            padding: 5px;
            background-color: #f0f0f0;
            border-radius: 4px;
        }

        .token-description {
            margin-bottom: 20px;
            font-size: 0.9rem;
        }

        /* Action Buttons */
        .action-buttons {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 15px;
            margin-top: 30px;
        }

        .float-cta {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 100;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(227, 92, 41, 0.7);
            }

            70% {
                box-shadow: 0 0 0 15px rgba(227, 92, 41, 0);
            }

            100% {
                box-shadow: 0 0 0 0 rgba(227, 92, 41, 0);
            }
        }

        /* Count down timer */
        .countdown {
            background-color: rgba(0, 0, 0, 0.7);
            color: white;
            padding: 10px 20px;
            border-radius: 5px;
            position: absolute;
            top: 10px;
            right: 10px;
            font-size: 1.2rem;
            font-weight: bold;
        }

        /* Benefits Section */
        .benefits-section {
            padding: 40px 0;
        }

        .benefits-section h2 {
            text-align: center;
            margin-bottom: 40px;
            color: var(--secondary-color);
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }

        .benefit-card {
            background-color: white;
            border-radius: 8px;
            padding: 25px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease;
        }

        .benefit-card:hover {
            transform: translateY(-5px);
        }

        .benefit-icon {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 15px;
        }

        .benefit-title {
            font-size: 1.3rem;
            margin-bottom: 10px;
            color: var(--secondary-color);
        }

        /* Modal */
        .modal {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
        }

        .modal-content {
            background-color: #fefefe;
            margin: 10% auto;
            padding: 30px;
            border-radius: 10px;
            max-width: 500px;
            text-align: center;
        }

        .close-modal {
            color: #aaa;
            float: right;
            font-size: 28px;
            font-weight: bold;
            cursor: pointer;
        }

        .close-modal:hover {
            color: #000;
        }

        .social-proof {
            background-color: rgba(231, 245, 255, 0.95);
            padding: 30px;
            margin: 40px 0;
            border-radius: 10px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
            text-align: center;
        }

        .social-proof h2 {
            margin-bottom: 25px;
            color: var(--secondary-color);
        }

        .testimonials {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
        }

        .testimonial {
            background-color: white;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
            width: 300px;
            text-align: left;
        }

        .testimonial-text {
            font-style: italic;
            margin-bottom: 15px;
        }

        .testimonial-author {
            font-weight: bold;
        }

        .token-ticker {
            display: inline-block;
            background-color: #333;
            color: white;
            padding: 3px 8px;
            border-radius: 4px;
            font-weight: bold;
            margin-left: 5px;
        }