
        body {
            background-color: #000;
            color: #fff;
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
        }

        .tokenomics-container {
            max-width: 1200px;
            margin: 50px auto;
            padding: 20px;
            text-align: center;
        }

        .tokenomics-title {
            font-size: 32px;
            font-weight: bold;
            margin-bottom: 20px;
            color: #d4af37;
            /* Golden color */
        }

        .token-info {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 20px;
            margin-bottom: 30px;
        }

        .token-info div {
            flex: 1 1 calc(33.333% - 20px);
            background: #222;
            border: 1px solid #555;
            padding: 15px;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(255, 255, 255, 0.1);
            transition: transform 0.3s;
        }

        .token-info div:hover {
            transform: translateY(-5px);
        }

        .chart-section {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
            margin-top: 40px;
        }

        .chart-container {
            position: relative;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: conic-gradient(#d62728 0% 40%,
                    /* 40% Public Sale After 5 Years */
                    #ff7f0e 40% 60%,
                    /* 20% Public Sale Within 5 Years */
                    #2ca02c 60% 80%,
                    /* 20% Affiliate Program */
                    #1f77b4 80% 85%,
                    /* 5% Development */
                    #9467bd 85% 90%,
                    /* 5% Marketing */
                    #17becf 90% 95%,
                    /* 5% Private Sale */
                    #8c564b 95% 100%
                    /* 5% DAO */
                );
            box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
        }

        .token-details {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 20px;
            margin-top: 20px;
            color: #fff;
        }

        .token-details .detail {
            flex: 1 1 calc(33.333% - 20px);
            background: #333;
            border-radius: 10px;
            padding: 15px;
            border: 1px solid #444;
            transition: transform 0.3s;
        }

        .token-details .detail:hover {
            transform: translateY(-5px);
            box-shadow: 0 4px 10px rgba(255, 255, 255, 0.1);
        }

        @media (max-width: 768px) {

            .token-info div,
            .token-details .detail {
                flex: 1 1 100%;
            }
        }
    
        /* CSS for Metaverse Animations and Styling */
        .meta-card {
            background: linear-gradient(135deg, #000000, #000000);
            border-radius: 15px;
            padding: 30px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }

        .meta-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 30px rgba(0, 0, 0, 0.3);
        }

        .meta-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 20px;
        }

        .meta-icon img {
            max-width: 100%;
            height: auto;
            animation: meta-icon-spin 10s linear infinite;
        }

        .meta-info {
            color: #fff;
            font-weight: bold;
            font-size: 22px;
        }

        .meta-title {
            font-size: 28px;
        }

        @keyframes meta-icon-spin {
            0% {
                transform: rotate(0deg);
            }

            100% {
                transform: rotate(360deg);
            }
        }

        .metaverse-animation {
            animation: metaverse-glow 1.5s infinite alternate;
        }

        @keyframes metaverse-glow {
            0% {
                box-shadow: 0 0 10px rgba(110, 69, 226, 0.4);
            }

            100% {
                box-shadow: 0 0 20px rgba(110, 69, 226, 0.8);
            }
        }

        .section-title-s7 {
            color: #fff;
            text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
        }

        .section-bg {
            background: url('images/metaverse_bg.jpg') no-repeat center center/cover;
            padding: 60px 0;
        }
    
        @media only screen and (max-width: 600px) {
            .coin {
                max-width: 250px;
            }

            .coinbox {
                min-height: 250px;
            }

            .glass {
                position: absolute;
                z-index: 11111111;
                top: 153px !important;
            }
        }

        .pdfooter {
            padding-top: 62px;
            padding-bottom: 0px !important;
        }

        .gaps {
            background: #070c16;
        }

        .circlebg1 {
            position: absolute;
            left: 0;
            top: 0;
            z-index: 1;
        }

        .circlebg2 {
            position: absolute;
            left: 0;
            right: 0;
            top: 30px;
            z-index: 1;
            margin: auto;
            text-align: center;
        }

        .circlebg3 {
            position: absolute;
            right: 0;
            top: 0;
            z-index: 1;
        }

        .modal {
            background: #000000bf;
        }

        .blink {
            color: red;
            position: relative;
            animation-name: example;
            animation-duration: 1s;
            animation-iteration-count: infinite;
        }

        @keyframes example {
            0% {
                color: White;

            }

            25% {
                color: red;

            }

            50% {
                color: White;
            }

            75% {
                color: red;
            }

            100% {
                color: White;
            }
        }
 
        body {
            margin: 0;
            padding: 0;
        }

        .popup {
            display: none;
            position: relative;
            padding: 20px;
            background-color: #070c15;
            border-radius: 5px;
            box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
            text-align: center;
            color: #fff;
            max-width: 400px;
            margin: 50px auto;
            z-index: 999999999;
        }

        .popup-logo {
            width: 194px;

            margin-bottom: 10px;
        }

        .countdown-box {
            font-size: 30px;
            margin-bottom: 10px;
            padding: 10px;
            border: 2px solid #fff;
            border-radius: 5px;
            display: inline-block;
        }

        .countdown-separator {
            font-size: 30px;
            margin-bottom: 10px;
            margin: 0 5px;
            color: #fff;
            display: inline-block;
        }

        .popup-text {
            font-size: 20px;
            margin-bottom: 13px;
            color: #ffffff;
            font-family: sans-serif;
            font-weight: 600;
        }

        .popup-button {
            padding: 10px 20px;
            background-color: #b97b14;
            color: #fff;
            border: none;
            border-radius: 5px;
            cursor: pointer;
        }

        .popup-button:hover {
            background-color: #ac7046;
        }

        .founder-card {
            background: #fff;
            border-radius: 15px;
            box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
            max-width: 400px;
            padding: 25px;
            text-align: center;
            transition: transform 0.3s, box-shadow 0.3s;
            margin: 20px auto;
        }

        .founder-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
        }

        .founder-image {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            object-fit: cover;
            margin-bottom: 15px;
        }

        .founder-name {
            font-size: 24px;
            font-weight: bold;
            color: #333;
            margin-bottom: 10px;
        }

        .founder-details {
            font-size: 16px;
            color: #555;
            line-height: 1.5;
        }
   
        /* Fullscreen loader styling */
        #loading-screen {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: #131117;
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9999;
        }

        .loader {
            text-align: center;
        }

        .loader img {
            width: 120px;
            height: 120px;
            margin-bottom: 20px;
        }

        .loader-text {
            font-size: 1.5rem;
            font-weight: bold;
            color: #fff;
            animation: fadeIn 2s infinite alternate;
        }

        @keyframes fadeIn {
            0% {
                opacity: 0.5;
            }

            100% {
                opacity: 1;
            }
        }

        /* Hide loader after the page is loaded */
        body.loaded #loading-screen {
            display: none;
        }
    