html {
    scroll-behavior: smooth;
}
body {
    font-family: 'Montserrat', sans-serif;
    color: white;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    
    min-height: 100vh;
}

.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; 
    z-index: -1; 
}

.content {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 100vh;
    padding: 20px;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Utility classes */
.gradient-text {
    background: linear-gradient(to right, #38bdf8, #c084fc, #f472b6);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    padding: 1.5rem;
    transition: background-color 0.3s;
    -webkit-border-radius: 1rem;
    -moz-border-radius: 1rem;
    -ms-border-radius: 1rem;
    -o-border-radius: 1rem;
    -webkit-transition: background-color 0.3s;
    -moz-transition: background-color 0.3s;
    -ms-transition: background-color 0.3s;
    -o-transition: background-color 0.3s;
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.15);
}

/* Images and Icons */
.project-logo {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.platform-icon {
    width: 24px;
    height: 24px;
    border-radius: 4px;
}

.hero-logo {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    margin-bottom: 2rem;
    border: 4px solid rgba(255, 255, 255, 0.2);
}

.team-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin-bottom: 1rem;
    border: 4px solid rgba(255, 255, 255, 0.2);
}

.social-icon {
    width: 20px;
    height: 20px;
    border-radius: 4px;
}

/* Navbar */
.navbar {
    position: fixed;
    width: 100%;
    z-index: 50;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 4rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-links a {
    color: white;
    text-decoration: none;
    padding: 0.5rem 0.75rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #38bdf8;
}

.nav-platforms {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    margin-right: 1rem;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
}

/* Platform Links */
.platform-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.platform-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    transition: background-color 0.3s;
}

.platform-link:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Team Section */
.team {
    padding: 1rem 0;
}

.team h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 4rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.team-member {
    text-align: center;
}

.team-member h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.team-member p {
    color: #94a3b8;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

/* Buttons */
.btn-primary {
    background: #0ea5e9;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: background-color 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.btn-primary:hover {
    background: #0284c7;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: background-color 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Hero section */
.hero {
    padding: 8rem 0;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.25rem;
    color: #cbd5e1;
    max-width: 36rem;
    margin: 0 auto 3rem;
}

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

/* Token Info section */
.token-info {
    padding: 4rem 0;
    background: rgba(0, 0, 0, 0.2);
}

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

.info-grid .glass-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.info-grid .glass-card p {
    font-size: 1.875rem;
    font-weight: bold;
}

.positive {
    color: #4ade80;
}

.secondary {
    color: #94a3b8;
}

/* Roadmap section */
.roadmap {
    padding: 6rem 0;
}

.roadmap h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 4rem;
}

.roadmap-grid {
    display: grid;
    gap: 3rem;
    max-width: 48rem;
    margin: 0 auto;
}

.roadmap-item {
    display: flex;
    gap: 1rem;
}

.roadmap-item svg {
    flex-shrink: 0;
}

.roadmap-item svg.completed {
    color: #4ade80;
}

.roadmap-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.roadmap-item p {
    color: #cbd5e1;
}

/* Tokenomics section */
.tokenomics {
    padding: 6rem 0;
    background: rgba(0, 0, 0, 0.2);
}

.tokenomics h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 4rem;
}

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

.indicator {
    height: 0.5rem;
    border-radius: 0.25rem;
    margin-bottom: 1rem;
}

.indicator.blue { background: #0ea5e9; }
.indicator.purple { background: #a855f7; }
.indicator.pink { background: #ec4899; }
.indicator.indigo { background: #6366f1; }

/* Community section */
.community {
    padding: 6rem 0;
}

.community h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 4rem;
}

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

.community-grid .glass-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: white;
}

/* Footer */
footer {
    background: rgba(0, 0, 0, 0.4);
    padding: 3rem 0;
}

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

.footer-brand p {
    color: #94a3b8;
    margin-top: 1rem;
}

.footer-platforms {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-links h3 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    display: block;
    padding: 0.25rem 0;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #94a3b8;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 4rem;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.9);
        backdrop-filter: blur(12px);
        padding: 1rem;
    }

    .menu-toggle {
        display: block;
    }

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

    .cta-buttons {
        flex-direction: column;
    }

    .platform-links {
        flex-direction: column;
        align-items: center;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }
}


#tokenomics {
    text-align: center;
    padding: 70px 0;
    
}

.chart-container {
    position: relative;
    width: 90%; /* Adjust chart size */
    max-width: 450px; /* Set max size */
    margin: 0 auto; /* Center the chart */
}

.chart-legend {
    margin-top: 20px;
}

.chart-legend ul {
    list-style: none;
    padding: 0;
}

.chart-legend li {
    margin: 5px 0;
    display: flex;
    align-items: center;
}

.chart-legend span {
    width: 20px;
    height: 20px;
    display: inline-block;
    margin-right: 10px;
    border-radius: 50%;
}
