.investment-section {
    background: #0c0f16;
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.investment-container {
    max-width: 900px;
    margin: 0 auto;
}

/*.section-title {
    font-size: 2.2rem;
    background: linear-gradient(to right, #00ffe0, #00b3ff);
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    margin-bottom: 50px;
}*/

.token-info,
.token-benefits,
.investment-details,
.funds-usage {
    margin-bottom: 40px;
    text-align: left;
}

.token-benefits ul {
    list-style: none;
    padding-left: 0;
}

.token-benefits li {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.bar-chart {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.bar {
    display: flex;
    flex-direction: column;
}

.bar span {
    font-weight: 600;
    margin-bottom: 5px;
}

.bar-fill {
    background: linear-gradient(to right, #00ffe0, #00b3ff);
    color: #000;
    font-weight: bold;
    padding: 8px 12px;
    border-radius: 8px;
    text-align: right;
    width: 0;
    animation: fill-bar 1.5s ease-out forwards;
}

@keyframes fill-bar {
    0% {
        width: 0;
    }

    100% {
        width: var(--width);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .section-title {
        font-size: 1.6rem;
    }

    .bar-fill {
        font-size: 0.9rem;
        padding: 6px 10px;
    }
}