* {
    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 {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.top-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #1a1a1a;
    z-index: 1000;
    overflow: hidden;
}

.logo img {
    height: 60px;
}

.desktop-nav {
    display: none;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-item img {
    height: 30px;
}

.main-content {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.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(255, 255, 255, 0.3), rgba(0, 0, 0, 0.3));
    animation-delay: -2s;
}

.purple {
    background: linear-gradient(-45deg, rgba(0, 0, 0, 0.3), rgba(255, 255, 255, 0.3));
    animation-delay: -4s;
}

.blue {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.3), rgba(0, 0, 0, 0.3));
    animation-delay: -6s;
}

.section-manifesto, .roadmap-chart {
    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, .roadmap-chart h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: #fff;
}

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

.roadmap-chart .chart-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 30px;
}

.roadmap-chart .chart-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.roadmap-chart .chart-point {
    width: 20px;
    height: 20px;
    background-color: #fff;
    border-radius: 50%;
}

.roadmap-chart .chart-content h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: #fff;
}

.roadmap-chart .chart-content p {
    color: rgba(255, 255, 255, 0.9);
}

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

.contact-section h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #fff;
}

.social-links-horizontal {
    display: flex;
    justify-content: center;
    gap: 30px;
    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-nav {
    display: flex;
    justify-content: space-around;
    padding: 10px;
    background-color: #1a1a1a;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #808080;
}

.nav-item.active {
    color: #ffffff;
}

.nav-item img {
    height: 24px;
    margin-bottom: 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);
    }
}

/* Mobile styles (<800px) */
@media (max-width: 799px) {
    .desktop-nav {
        display: none;
    }
    
    .top-nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
    }

    .main-content {
        margin-top: 60px;
        margin-bottom: 60px;
    }

    .bottom-nav {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
    }
    .logo img{
        height: 40px;
    }
    .roadmap-chart .chart-point {
        width: 20px;
        height: 8px;
        background-color: #fff;
        border-radius: 50%;
        margin-top: 10px;
    }
    .roadmap-chart .chart-item{
        display: flex;
        align-items: inherit;
        gap: 10px;
    }
}

/* Desktop styles (>900px) */
@media (min-width: 900px) {
    .container {
        flex-direction: row;
    }
    
    .top-nav {
        position: fixed;
        width: 250px;
        height: 100vh;
        flex-direction: column;
        justify-content: flex-start;
        gap: 30px;
        padding: 30px 20px;
        overflow-y: auto;
    }
    
    .desktop-nav {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    
    .desktop-nav .nav-item {
        flex-direction: row;
        gap: 10px;
        padding: 10px;
        border-radius: 5px;
    }
    
    .desktop-nav .nav-item.active {
        background-color: #333333;
    }
    
    .desktop-nav .nav-item img {
        margin-bottom: 0;
    }
    
    .social-links {
        margin-top: auto;
        flex-direction: column;
    }
    
    .bottom-nav {
        display: none;
    }
    
    .main-content {
        margin-left: 250px;
        width: calc(100% - 250px);
        overflow-y: auto;
        height: 100vh;
    }

    .roadmap-chart .chart-container {
        flex-direction: row;
        justify-content: space-between;
    }

    .roadmap-chart .chart-item {
        flex-direction: column;
        text-align: center;
    }

    .roadmap-chartI understand. I'll continue the text stream from the cut-off point, maintaining coherence and consistency. Here's the continuation:

    .roadmap-chart .chart-point {
        margin-bottom: 10px;
    }
}

