/* Roadmap Section Styles */
.roadmap-section {
    padding: 70px 0;
    background-image: url('../images/backgruond.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.roadmap-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.roadmap-section .container {
    position: relative;
    z-index: 2;
    max-width: 1100px;
}

.roadmap-timeline {
    display: block;
}

/* Compact roadmap box (same style as drop-info) */
.roadmap-compact-box {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 14px;
    padding: 1.25rem 1.5rem;
    border: 1px solid rgba(148, 163, 184, 0.25);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.6);
}

.roadmap-row {
    display: flex;
    gap: 1rem;
    padding: 10px 12px;
    border: 1px solid rgba(148, 163, 184, 0.22);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.02);
    margin-bottom: 10px;
}

.roadmap-row:last-child {
    margin-bottom: 0;
}

.roadmap-label {
    flex: 0 0 220px;
    font-weight: 700;
    color: #f09a29;
}

.roadmap-text {
    flex: 1 1 auto;
    color: #d1d5db;
    font-size: 0.95rem;
    line-height: 1.6;
}

.roadmap-badge {
    width: 42px;
    height: 42px;
    background: linear-gradient(45deg, #207854, #00ff61);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 700;
    margin-right: 2rem;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgb(20 207 102 / 30%);
    text-align: center;
    line-height: 1.2;
    padding: 0.5rem;
}

.roadmap-content {
    background: rgba(255, 255, 255, 0.05);
    padding: 0.9rem 1rem;
    border-radius: 10px;
    border-left: 3px solid rgba(0, 255, 97, 0.75);
    backdrop-filter: blur(10px);
}

.roadmap-content h3 {
    color: #d4af37;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.roadmap-content p {
    color: #ccc;
    margin-bottom: 0;
    line-height: 1.4;
    font-size: 0.9rem;
}

.roadmap-content ul {
    list-style: none;
    margin-bottom: 0.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem 1.25rem;
}

.roadmap-content ul li {
    padding: 0;
    position: relative;
    color: #fff;
    font-size: 0.9rem;
}

.roadmap-content ul li::before {
    display: none;
}

.roadmap-time {
    display: inline-block;
    background: #d4af37;
    color: #000;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Arrow connectors between items (desktop) */
.roadmap-item::after {
    display: none;
}

.roadmap-item:last-child::after {
    content: '';
}

/* Responsive */
@media (max-width: 600px) {
    .roadmap-item {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .roadmap-section {
        padding: 60px 0;
    }

    .roadmap-content {
        padding: 1.5rem;
    }

    .roadmap-content h3 {
        font-size: 1.2rem;
    }
}
