/* Roadmap Page Styles */
:root {
    --neon-blue: #00f3ff;
    --neon-purple: #bc13fe;
    --dark-bg: #050505;
    --card-bg: rgba(255, 255, 255, 0.03);
}

body {
    background-color: var(--dark-bg);
}

.roadmap-hero {
    position: relative;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: #fff;
    text-align: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0.6;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, var(--dark-bg));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
}

.glitch-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    text-shadow: 2px 2px var(--neon-blue), -2px -2px var(--neon-purple);
    margin-bottom: 1rem;
}

.timeline-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

/* Vertical Line */
.timeline-line {
    position: absolute;
    left: 50%;
    width: 4px;
    background: var(--neon-blue);
    top: 0;
    bottom: 0;
    transform: translateX(-50%);
    box-shadow: 0 0 15px var(--neon-blue);
    z-index: 1;
}

/* Timeline Cards */
.timeline-card {
    position: relative;
    width: 50%;
    padding: 2rem 3rem;
    margin-bottom: 4rem;
    z-index: 2;
}

.timeline-card.left {
    left: 0;
    text-align: right;
}

.timeline-card.right {
    left: 50%;
    text-align: left;
}

.content {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s;
    position: relative;
    overflow: hidden;
}

.content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--neon-blue), var(--neon-purple));
}

.timeline-card:hover .content {
    transform: scale(1.02);
    box-shadow: 0 0 30px rgba(0, 243, 255, 0.2);
    border-color: var(--neon-blue);
}

.quarter-badge {
    display: inline-block;
    background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple));
    color: #000;
    font-weight: 800;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    margin-bottom: 1rem;
    font-family: 'Orbitron', sans-serif;
}

.content h2 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.content ul {
    list-style: none;
    padding: 0;
}

.content ul li {
    color: #ccc;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.content ul li i {
    color: var(--neon-blue);
    margin-right: 10px;
}

.timeline-card.left .content ul li i {
    margin-left: 10px;
    margin-right: 0;
}

/* Nodes on the line */
.node {
    position: absolute;
    top: 50px;
    width: 20px;
    height: 20px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 10px #fff, 0 0 20px var(--neon-blue);
    z-index: 3;
}

.left .node {
    right: -10px;
}

.right .node {
    left: -10px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .timeline-line {
        left: 20px;
    }

    .timeline-card {
        width: 100%;
        left: 0;
        padding-left: 50px;
        padding-right: 10px;
        text-align: left;
    }

    .timeline-card.left,
    .timeline-card.right {
        text-align: left;
    }

    .left .node,
    .right .node {
        left: 10px;
        right: auto;
    }

    .timeline-card.left .content ul li i {
        margin-left: 0;
        margin-right: 10px;
    }
}