/* Roadmap */
.map-container {
    max-width: 1080px;
    margin: 72px auto;
    padding: 0 20px 80px;
    color: #fff;
    font-family: "Nunito", sans-serif;
}

.map-header {
    text-align: center;
    margin-bottom: 42px;
}

.map-header h1 {
    font-size: 2.6em;
    margin-bottom: 12px;
}

.map-header p {
    color: #b0b0b0;
    font-size: 1em;
}

.map-section {
    background: #101016;
    border-radius: 16px;
    padding: 22px 22px 20px;
    margin-bottom: 18px;
    border: 1px solid #1f1f28;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.32);
}

.map-section h2 {
    color: #ffffff;
    font-size: 1.3em;
    margin: 0 0 6px;
}

.map-section-head {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}

.map-section-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(66, 240, 217, 0.12), rgba(42, 166, 255, 0.12));
    border: 1px solid #1f2730;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.map-section-icon img {
    width: 26px;
    height: 26px;
}

.map-section-note {
    color: #9aa0b5;
    font-size: 0.95em;
    margin: 0;
}

.map-chip {
    background: rgba(66, 240, 217, 0.12);
    color: #87ffe1;
    border: 1px solid #1f1f24;
    border-radius: 999px;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.map-progress {
    width: 100%;
    height: 7px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid #1f2730;
    margin: 8px 0 12px;
    overflow: hidden;
}

.map-progress-bar {
    height: 100%;
    background: linear-gradient(120deg, #42f0d9, #2aa6ff);
    border-radius: 999px;
    box-shadow: 0 4px 18px rgba(42,166,255,0.28);
}

.map-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
}

.map-list li {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 12px;
    align-items: flex-start;
}

.map-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    margin-top: 6px;
}

.map-check input {
    opacity: 0;
    position: absolute;
}

.map-check-visual {
    width: 16px;
    height: 16px;
    border-radius: 6px;
    border: 1px solid #2aa6ff88;
    background: rgba(255, 255, 255, 0.02);
    transition: 0.18s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.map-list li.done .map-check-visual {
    background: linear-gradient(120deg, #42f0d9, #2aa6ff);
    border-color: transparent;
    box-shadow: 0 8px 18px rgba(42,166,255,0.25);
}

.map-list li.done .map-check-visual::after {
    content: '';
    width: 8px;
    height: 4px;
    border-left: 2px solid #0c0c0c;
    border-bottom: 2px solid #0c0c0c;
    transform: rotate(-45deg);
    display: block;
}

.map-item-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid #1e2430;
    border-radius: 10px;
    padding: 10px 12px;
    color: #eaeaea;
    line-height: 1.52;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.22);
}

.map-list li.done .map-item-card {
    border-color: #2aa6ff55;
    color: #cfeff5;
}

.map-note {
    margin-top: 32px;
    color: #8a8a8a;
    font-size: 0.9em;
    text-align: center;
    background: rgba(255,255,255,0.02);
    border: 1px dashed #1f1f24;
    border-radius: 12px;
    padding: 12px;
}

@media (max-width: 768px) {
    .map-container {
        margin-top: 40px;
        padding-bottom: 50px;
    }

    .map-section-head {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .map-chip {
        width: fit-content;
    }

    .map-header h1 {
        font-size: 2.1em;
    }

    .map-header p {
        font-size: 0.95em;
    }

    .map-section {
        padding: 18px 16px;
        border-radius: 12px;
    }

    .map-section-icon {
        width: 48px;
        height: 48px;
        border-radius: 12px;
    }

    .map-section-note {
        font-size: 0.9em;
    }

    .map-list {
        gap: 8px;
    }

    .map-item-card {
        padding: 9px 10px;
        font-size: 0.95em;
        line-height: 1.45;
    }

}