/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #121212;
    color: #ffffff;
}
.container {
    width: 80%;
    margin: 0 auto;
    text-align: center;
}

/* Header */
header {
    background: #000;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
header h1 {
    color: #27ae60;
    font-size: 24px;
}
nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}
nav ul li {
    display: inline;
}
nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

/* Hero Section */
#hero {
    background: url('https://www.ledger.com/wp-content/uploads/2021/04/stablecoins.jpg') center/cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
}
#hero h1 {
    font-size: 3.5rem;
    font-weight: bold;
}
.highlight {
    color: #27ae60;
}
.btn {
    display: inline-block;
    padding: 12px 25px;
    background: #27ae60;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 20px;
    transition: all 0.3s ease-in-out;
}
.btn:hover {
    background: #219150;
}

/* Sections */
section {
    padding: 80px 0;
}
h2 {
    color: #27ae60;
    font-size: 2rem;
    margin-bottom: 20px;
}

/* Roadmap */
.timeline {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.timeline-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
}
.timeline-item:hover {
    transform: scale(1.05);
}

/* FAQ */
.faq-item {
    background: #1a1a1a;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 8px;
}
.faq-item h3 {
    color: #27ae60;
}

/* Footer */
footer {
    background: #000;
    padding: 20px;
    text-align: center;
}
footer p {
    font-size: 14px;
}

/* Animaciones Generales */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Mejora en Roadmap */
.timeline {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.timeline-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    width: 80%;
    border-radius: 10px;
    text-align: left;
    animation: fadeIn 1s ease-in-out;
}
.timeline-item:nth-child(even) {
    animation: slideIn 1s ease-in-out;
}

/* Estilos Responsivos */
@media screen and (max-width: 768px) {
    .container {
        width: 95%;
    }
    #hero h1 {
        font-size: 2.5rem;
    }
    .timeline-item {
        width: 100%;
    }
}

/* Botones con efecto Hover */
.btn {
    display: inline-block;
    padding: 12px 25px;
    background: linear-gradient(45deg, #27ae60, #2ecc71);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 20px;
    transition: all 0.3s ease-in-out;
}
.btn:hover {
    background: linear-gradient(45deg, #219150, #27ae60);
    transform: scale(1.05);
}

