.nav-bar a.active {
    background: rgba(142, 165, 140, 0.15);
    color: #b4c9b1;
}

.about-hero {
    text-align: center;
    padding: 160px 24px 80px;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

.about-hero h1 {
    font-size: 3em;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.about-hero h1 span {
    color: #8EA58C;
    text-shadow: 0 0 30px rgba(142, 165, 140, 0.5);
}

.about-hero p {
    font-size: 1.2em;
    color: #a0a0a0;
    max-width: 500px;
    margin: 0 auto;
}

.about-section {
    max-width: 700px;
    margin: 0 auto 60px;
    padding: 0 24px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.about-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-icon {
    width: 56px;
    height: 56px;
    background: rgba(142, 165, 140, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.section-icon svg {
    width: 28px;
    height: 28px;
    color: #8EA58C;
}

.about-section h2 {
    font-size: 1.8em;
    font-weight: 600;
    color: #fff;
    margin-bottom: 16px;
}

.about-section p {
    font-size: 1.05em;
    color: #a0a0a0;
    line-height: 1.7;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    color: #c0c0c0;
    font-size: 1.05em;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list li svg {
    width: 20px;
    height: 20px;
    color: #8EA58C;
    flex-shrink: 0;
}

.creator-card {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    background: rgba(51, 51, 51, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 28px;
    margin-top: 20px;
}

.creator-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #8EA58C, #6b8269);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2em;
    font-weight: 700;
    color: #0d0e10;
    flex-shrink: 0;
}

.creator-info h3 {
    font-size: 1.3em;
    font-weight: 600;
    color: #fff;
    margin-bottom: 4px;
}

.creator-title {
    color: #8EA58C !important;
    font-size: 0.9em !important;
    margin-bottom: 12px !important;
}

.creator-info p {
    font-size: 0.95em;
    color: #888;
    line-height: 1.6;
}

.creator-links {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.creator-links a,
.creator-links .copy-btn {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    transition: all 0.25s ease;
    border: none;
    cursor: pointer;
}

.creator-links a:hover,
.creator-links .copy-btn:hover {
    background: rgba(142, 165, 140, 0.15);
    color: #8EA58C;
}

.creator-links .copy-btn.copied {
    background: rgba(142, 165, 140, 0.3);
    color: #8EA58C;
}

.creator-links .copy-btn {
    position: relative;
}

.creator-links .copy-btn .tooltip {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #8EA58C;
    color: #0d0e10;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.75em;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    margin-bottom: 8px;
}

.creator-links .copy-btn .tooltip::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: #8EA58C;
}

.creator-links .copy-btn.copied .tooltip {
    opacity: 1;
    visibility: visible;
}

.creator-links a svg,
.creator-links .copy-btn svg {
    width: 20px;
    height: 20px;
}

.roadmap {
    margin-top: 24px;
    position: relative;
    padding-left: 32px;
}

.roadmap::before {
    content: "";
    position: absolute;
    left: 11px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(255, 255, 255, 0.1);
}

.roadmap-item {
    position: relative;
    padding-bottom: 32px;
}

.roadmap-item:last-child {
    padding-bottom: 0;
}

.roadmap-marker {
    position: absolute;
    left: -32px;
    width: 24px;
    height: 24px;
    background: #1a1c1f;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.roadmap-marker svg {
    width: 14px;
    height: 14px;
    color: #666;
}

.roadmap-item.completed .roadmap-marker {
    background: #8EA58C;
    border-color: #8EA58C;
}

.roadmap-item.completed .roadmap-marker svg {
    color: #0d0e10;
}

.roadmap-item.in-progress .roadmap-marker {
    border-color: #8EA58C;
}

.roadmap-item.in-progress .roadmap-marker svg {
    color: #8EA58C;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.roadmap-content h4 {
    font-size: 1.1em;
    font-weight: 600;
    color: #fff;
    margin-bottom: 4px;
}

.roadmap-content p {
    font-size: 0.9em;
    color: #888;
}

footer {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.5s forwards;
}

@media (max-width: 600px) {
    .about-hero {
        padding: 120px 16px 60px;
    }
    .about-hero h1 {
        font-size: 2.2em;
    }
    .about-section {
        padding: 0 16px;
    }
    .creator-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .creator-links {
        justify-content: center;
    }
}
