/* Yol Haritası Sayfası Stilleri */
.roadmap-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Oyun Seçici */
.game-selector-container {
    margin-bottom: 30px;
    text-align: center;
}

.game-selector-container h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.game-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
}

.game-selector-btn {
    padding: 10px 20px;
    background-color: var(--bg-secondary);
    color: var(--text-color);
    border: 2px solid var(--primary-color);
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
}

.game-selector-btn:hover {
    background-color: var(--primary-color);
    color: #fff;
}

.game-selector-btn.active {
    background-color: var(--primary-color);
    color: #fff;
}

/* Timeline */
.roadmap-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.roadmap-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 3px;
    background-color: var(--primary-color);
    transform: translateX(-50%);
}

.roadmap-item {
    position: relative;
    margin-bottom: 40px;
    width: 44%;
    padding-bottom: 20px;
}

.roadmap-item:nth-child(odd) {
    left: 0;
}

.roadmap-item:nth-child(even) {
    left: 56%;
}

.roadmap-item::after {
    content: '';
    position: absolute;
    top: 20px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: var(--primary-color);
}

.roadmap-item:nth-child(odd)::after {
    right: -60px;
}

.roadmap-item:nth-child(even)::after {
    left: -60px;
}

.roadmap-card {
    background-color: var(--card-bg);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.roadmap-date {
    display: block;
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 10px;
}

.roadmap-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.roadmap-game {
    display: inline-block;
    padding: 3px 8px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 4px;
    font-size: 0.8rem;
    margin-bottom: 10px;
}

.roadmap-description {
    margin-bottom: 15px;
    line-height: 1.5;
    color: #ffffff !important;
}

.roadmap-status {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: 600;
}

.status-completed {
    background-color: #4CAF50;
    color: white;
}

.status-in-progress {
    background-color: #FFC107;
    color: #333;
}

.status-planned {
    background-color: #7c7c7c;
    color: white;
}

.no-roadmap {
    text-align: center;
    padding: 30px;
    font-size: 1.2rem;
    opacity: 0.7;
}

/* Mobil Responsive */
@media (max-width: 768px) {
    .roadmap-timeline::before {
        left: 30px;
    }
    
    .roadmap-item {
        width: 80%;
        left: 55px !important;
    }
    
    .roadmap-item::after {
        left: -45px !important;
    }
} 