﻿body {
    background: #0d0d0d;
    color: #e2d3a2;
    font-family: 'Cinzel', serif;
    margin: 0;
    padding: 0;
}

.roadmap-section {
    padding: 5rem 2rem;
    text-align: center;
}

.roadmap-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #f0e6c0;
    text-shadow: 0 0 10px #c9aa71;
}

.timeline {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
    gap: 2rem;
}

.milestone {
    background: #1c1c1c;
    border: 2px solid #a68c69;
    border-radius: 1rem;
    padding: 2rem;
    width: 300px;
    box-shadow: 0 0 15px rgba(166, 140, 105, 0.5);
    transition: transform 0.3s;
}

    .milestone:hover {
        transform: scale(1.05);
    }

    .milestone h2 {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }

    .milestone p {
        font-size: 1rem;
        line-height: 1.4;
        color: #e8dcbf;
    }
