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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #000;
    color: #fff;
    min-height: 100vh;
}

.container {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Background style */
.background {
    position: fixed;
    inset: 0;
    overflow: hidden;
    z-index: -1;
}

.gradient-orb {
    position: absolute;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    filter: blur(150px);
    opacity: 0.3;
    animation: float 8s ease-in-out infinite;
}

.pink {
    background: linear-gradient(45deg, rgba(236, 72, 153, 0.3), rgba(139, 92, 246, 0.3));
    animation-delay: -2s;
}

.purple {
    background: linear-gradient(-45deg, rgba(96, 165, 250, 0.3), rgba(236, 72, 153, 0.3));
    animation-delay: -4s;
}

.blue {
    background: linear-gradient(90deg, rgba(139, 92, 246, 0.3), rgba(96, 165, 250, 0.3));
    animation-delay: -6s;
}

/* Top navigation style */
.top-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    z-index: 10;
}

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

.logo-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ec4899, #8b5cf6);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
}

.title {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
}

.wallet-button {
    background-color: #ec4899;
    color: white;
    padding: 8px 16px;
    border-radius: 9999px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.wallet-button:hover {
    opacity: 0.9;
}

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

.logo-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ec4899, #8b5cf6);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.nav-logo {
    width: 50%;
    height: 50%;
    object-fit: cover;
}



/* Main content style */
.main-content {
    flex: 1;
    padding: 80px 20px 100px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.section-manifesto {
    background: rgba(23, 23, 23, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 40px;
    margin: 40px 0;
}

.section-manifesto h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
    background: linear-gradient(to right, #ec4899, #8b5cf6);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.section-manifesto p {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

/* Token Distribution */
.token-distribution {
    margin: 60px 0;
}

.token-distribution h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 30px;
    background: linear-gradient(to right, #ec4899, #8b5cf6);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.token-content {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.chart-container {
    flex: 1;
    min-width: 300px;
    background: rgba(23, 23, 23, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 30px;
}

.pie-chart-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
}

.pie-chart {
    width: 100%;
    height: 100%;
}

.pie-chart path {
    transition: all 0.3s ease;
}

.percentage-display {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
    background: rgba(23, 23, 23, 0.9);
    padding: 10px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.percentage-display.visible {
    opacity: 1;
}

.percentage-display .name {
    font-size: 14px;
    margin-bottom: 4px;
    color: rgba(255, 255, 255, 0.7);
}

.percentage-display .value {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
}

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

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    cursor: pointer;
}

.legend-color {
    width: 16px;
    height: 16px;
    border-radius: 4px;
}

.legend-color.supply {
    background-color: #860ef5;
}

.legend-color.prize {
    background-color: #ffc514;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.legend-color.team {
    background-color: #d64daf;
}

.token-info {
    flex: 1;
    min-width: 300px;
    background: rgba(23, 23, 23, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 30px;
}

.token-info-item {
    margin-bottom: 30px;
}

.token-info-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.9);
}

.token-info-item p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

.escrow-account {
    margin-top: 40px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.contact-section {
    text-align: center;
    padding: 40px 0;
}

.contact-section h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    background: linear-gradient(to right, #ec4899, #8b5cf6);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #fff;
    font-size: 1.2rem;
    transition: opacity 0.3s ease;
}

.social-link:hover {
    opacity: 0.8;
}

.social-link img {
    height: 30px;
    width: auto;
}

/* Bottom navigation style */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    display: flex;
    justify-content: center;
    gap: 3rem;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    z-index: 10;
        align-items: center;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-item:hover {
    color: rgba(255, 255, 255, 0.8);
}

.nav-item.active {
    color: #fff;
    background-color: #ec4899;
    width: 65px;
    padding: 10px 0;
    border-radius: 10px;
}

.nav-item .icon {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

.nav-item span {
    font-size: 0.75rem;
    font-weight: 500;
    margin-top: -5px;
}

@keyframes float {
    0%, 100% {
        transform: translate(-50%, -50%) translateY(-30px) translateX(-20px);
    }
    25% {
        transform: translate(-50%, -50%) translateY(0px) translateX(20px);
    }
    50% {
        transform: translate(-50%, -50%) translateY(30px) translateX(-10px);
    }
    75% {
        transform: translate(-50%, -50%) translateY(0px) translateX(10px);
    }
}

@media (max-width: 768px) {
    .main-content {
        padding: 60px 10px 80px;
    }

    .section-manifesto {
        padding: 20px;
    }

    .token-content {
        flex-direction: column;
    }

    .social-links {
        gap: 30px;
    }
}

