.roadmap-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 2rem;
    color: var(--text-primary);
}

.roadmap-section {
    margin: 2rem 0;
    padding: 1.5rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.roadmap-section:hover {
    transform: translateY(-5px);
}

.roadmap-section.completed {
    border-left: 4px solid #4CAF50;
}

.roadmap-section.current {
    border-left: 4px solid #2196F3;
}

.roadmap-section.upcoming {
    border-left: 4px solid #FFC107;
}

.roadmap-section.future {
    border-left: 4px solid #9C27B0;
}

.roadmap-section h2 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: var(--text-primary);
}

.roadmap-section ul {
    list-style: none;
    padding-left: 1rem;
}

.roadmap-section ul li {
    margin: 0.8rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-secondary);
}

.roadmap-section ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

@media (max-width: 768px) {
    .roadmap-container {
        margin: 1rem;
        padding: 1rem;
    }
    
    .roadmap-section {
        margin: 1rem 0;
    }
} 