/* Configuración General */
body {
    font-family: 'Segoe UI', Roboto, sans-serif;
    text-align: center;
    background-color: #f0f2f5;
    margin: 0;
    padding: 0;
    color: #1a1a2e;
}

header {
    background: linear-gradient(135deg, #6200ee, #03dac5);
    color: white;
    padding: 60px 20px;
}

/* Botón con efecto */
.btn-download {
    display: inline-block;
    background-color: #ff0266;
    color: white;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    margin-top: 25px;
    box-shadow: 0 4px 15px rgba(255, 2, 102, 0.4);
    transition: 0.3s;
}

.btn-download:hover {
    background-color: #d80256;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 2, 102, 0.6);
}

/* Tarjetas de Características */
.features {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 40px;
    flex-wrap: wrap;
}

.card {
    background: white;
    padding: 25px;
    border-radius: 20px;
    width: 280px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.card:hover { transform: translateY(-5px); }

/* SECCIÓN CÓMO USAR (MEJORADA) */
.how-it-works {
    padding: 50px 20px;
    background-color: #ffffff;
}

.how-it-works h2 { margin-bottom: 40px; color: #6200ee; }

.steps {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}

.step {
    flex: 1;
    min-width: 200px;
    padding: 20px;
    position: relative;
}

.step span {
    background: linear-gradient(135deg, #6200ee, #9147ff);
    color: white;
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    display: inline-block;
    margin-bottom: 15px;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(98, 0, 238, 0.3);
}

.step p {
    font-weight: 500;
    color: #444;
    line-height: 1.4;
}

/* FAQ y Patch Notes */
.faq { padding: 40px; max-width: 600px; margin: 0 auto; }
details { background: white; padding: 15px; border-radius: 10px; cursor: pointer; margin-bottom: 10px; text-align: left; }

.patch-notes { 
    padding: 40px 20px; 
    background: #1a1a2e; 
    color: white; 
    border-radius: 25px; 
    margin: 40px 20px; 
    text-align: left;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.update-card { background: rgba(255, 255, 255, 0.05); padding: 25px; border-left: 5px solid #03dac5; border-radius: 0 15px 15px 0; }
.version { background: #6200ee; padding: 5px 12px; border-radius: 6px; font-weight: bold; margin-right: 10px; }
.fix { color: #ff5252; font-weight: bold; margin-right: 5px; }
.new { color: #03dac5; font-weight: bold; margin-right: 5px; }
.update-list { list-style: none; padding: 0; margin-top: 20px; }
.update-list li { margin: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 8px; }

footer { padding: 30px; color: #888; font-size: 0.9rem; }
