/* Roadmap Page Specific Styles */
.page-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    letter-spacing: 4px;
}

.page-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.roadmap-header {
    padding: 150px 0 80px;
    background: linear-gradient(135deg, #1a0a2e 0%, #2a0a3e 100%);
    text-align: center;
    position: relative;
}

.roadmap-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(255, 0, 255, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

/* Roadmap Content */
.roadmap-content {
    background: var(--dark);
    padding: 80px 0;
}

/* Timeline */
.timeline {
    max-width: 800px;
    margin: 0 auto;
}

.no-items {
    text-align: center;
    color: var(--text-secondary);
    font-size: 20px;
    padding: 60px 0;
}

/* Timeline Item */
.timeline-item {
    display: flex;
    gap: 30px;
    position: relative;
}

/* Timeline Node (dot + line) */
.timeline-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
    width: 20px;
    padding-top: 28px;
}

.node-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.status-done .node-dot {
    background: var(--secondary);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.6);
}

.status-progress .node-dot {
    background: var(--primary);
    box-shadow: 0 0 15px rgba(255, 0, 255, 0.6);
    animation: nodePulse 2s ease-in-out infinite;
}

.status-awaiting .node-dot {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: none;
}

@keyframes nodePulse {
    0%, 100% {
        box-shadow: 0 0 15px rgba(255, 0, 255, 0.6);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 25px rgba(255, 0, 255, 0.9);
        transform: scale(1.15);
    }
}

.node-line {
    width: 2px;
    flex: 1;
    min-height: 30px;
    background: linear-gradient(180deg, rgba(255, 0, 255, 0.4) 0%, rgba(255, 0, 255, 0.1) 100%);
}

.status-done .node-line {
    background: linear-gradient(180deg, rgba(0, 255, 255, 0.4) 0%, rgba(255, 0, 255, 0.2) 100%);
}

.status-awaiting .node-line {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
}

/* Timeline Card */
.timeline-card {
    flex: 1;
    background: rgba(255, 255, 255, 0.03);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 0, 255, 0.2);
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.timeline-card:hover {
    transform: translateX(8px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(255, 0, 255, 0.15);
    background: rgba(255, 255, 255, 0.05);
}

.status-done .timeline-card {
    border-color: rgba(0, 255, 255, 0.25);
}

.status-done .timeline-card:hover {
    border-color: var(--secondary);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.15);
}

.status-awaiting .timeline-card {
    border-color: rgba(255, 255, 255, 0.1);
    opacity: 0.7;
}

.status-awaiting .timeline-card:hover {
    opacity: 1;
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.05);
}

/* Card Header */
.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
}

.card-header h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 20px;
    color: var(--text-primary);
    letter-spacing: 1px;
    flex: 1;
}

.status-done .card-header h3 {
    color: var(--secondary);
}

.status-progress .card-header h3 {
    color: var(--primary);
}

/* Status Badge */
.status-badge {
    font-family: 'Orbitron', sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 6px 14px;
    border-radius: 20px;
    white-space: nowrap;
    flex-shrink: 0;
}

.status-badge.status-done {
    background: rgba(0, 255, 255, 0.15);
    color: var(--secondary);
    border: 1px solid rgba(0, 255, 255, 0.3);
}

.status-badge.status-progress {
    background: rgba(255, 0, 255, 0.15);
    color: var(--primary);
    border: 1px solid rgba(255, 0, 255, 0.3);
}

.status-badge.status-awaiting {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

/* Card Description */
.card-description {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.8;
}

/* Release Tag */
.card-release {
    margin-top: 18px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.release-tag {
    display: inline-block;
    font-family: 'Orbitron', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: var(--secondary);
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid rgba(0, 255, 255, 0.25);
    padding: 5px 14px;
    border-radius: 6px;
    letter-spacing: 1px;
}

/* CTA Buttons */
.roadmap-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 768px) {
    .roadmap-header {
        padding: 120px 0 60px;
    }

    .roadmap-content {
        padding: 60px 0;
    }

    .timeline-item {
        gap: 20px;
    }

    .timeline-node {
        width: 16px;
        padding-top: 24px;
    }

    .node-dot {
        width: 16px;
        height: 16px;
    }

    .timeline-card {
        padding: 22px;
        margin-bottom: 22px;
    }

    .card-header {
        flex-direction: column;
        gap: 10px;
    }

    .card-header h3 {
        font-size: 17px;
    }

    .roadmap-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .roadmap-cta-buttons .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .timeline-item {
        gap: 15px;
    }

    .timeline-card {
        padding: 18px;
    }

    .card-header h3 {
        font-size: 15px;
    }

    .status-badge {
        font-size: 10px;
        padding: 5px 10px;
    }

    .card-description {
        font-size: 15px;
    }
}

/* Animation for cards on load */
.timeline-item {
    animation: fadeInUp 0.6s ease-out both;
}

.timeline-item:nth-child(1) { animation-delay: 0.1s; }
.timeline-item:nth-child(2) { animation-delay: 0.2s; }
.timeline-item:nth-child(3) { animation-delay: 0.3s; }
.timeline-item:nth-child(4) { animation-delay: 0.4s; }
.timeline-item:nth-child(5) { animation-delay: 0.5s; }
.timeline-item:nth-child(6) { animation-delay: 0.6s; }
.timeline-item:nth-child(7) { animation-delay: 0.7s; }
.timeline-item:nth-child(8) { animation-delay: 0.8s; }
.timeline-item:nth-child(9) { animation-delay: 0.9s; }
.timeline-item:nth-child(10) { animation-delay: 1.0s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
