/* MERCADO SIMPLE */
.market-card-simple {
    background: rgba(20,20,30,0.8);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 30px;
    text-align: center;
    margin-bottom: 60px;
    border: 1px solid rgba(168,85,247,0.3);
}
.market-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}
.market-stat {
    text-align: center;
}
.market-stat .stat-label {
    display: block;
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 5px;
}
.market-stat .stat-value {
    font-family: 'Orbitron', monospace;
    font-size: 32px;
    font-weight: bold;
    color: #a855f7;
}
.market-timer-simple {
    margin: 20px 0;
    color: rgba(255,255,255,0.7);
}
.btn-report-simple {
    background: linear-gradient(135deg, #a855f7, #7c3aed);
    border: none;
    padding: 10px 24px;
    border-radius: 40px;
    color: white;
    font-weight: bold;
    cursor: pointer;
    margin: 15px 0;
}
.market-note-simple {
    font-size: 11px;
    color: rgba(255,255,255,0.4);
}

/* MODAL ESTADÍSTICAS */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    align-items: center;
    justify-content: center;
    z-index: 1000;
}
.modal-content {
    background: #1a1a2e;
    border-radius: 24px;
    width: 90%;
    max-width: 400px;
}
.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.modal-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: rgba(255,255,255,0.6);
}
.modal-body {
    padding: 20px;
}
.stats-input {
    width: 100%;
    padding: 12px;
    background: rgba(0,0,0,0.3);
    border: 1px solid rgba(168,85,247,0.3);
    border-radius: 12px;
    color: white;
    margin-bottom: 15px;
}
.btn-stats {
    width: 100%;
    background: linear-gradient(135deg, #a855f7, #7c3aed);
    border: none;
    padding: 10px;
    border-radius: 12px;
    color: white;
    font-weight: bold;
    cursor: pointer;
}
.stats-result {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    justify-content: center;
}
.stat-card {
    background: rgba(0,0,0,0.3);
    border-radius: 16px;
    padding: 12px;
    text-align: center;
    flex: 1;
}
.stat-card i {
    font-size: 24px;
    color: #a855f7;
}
.stat-card span {
    font-size: 24px;
    font-weight: bold;
    display: block;
}
.stat-card label {
    font-size: 10px;
    color: rgba(255,255,255,0.6);
}
.error-message {
    color: #ff4444;
    margin-top: 15px;
    text-align: center;
}
