/* -------------------------------
   ESTILOS GENERALES
   -------------------------------*/ 
body {
    font-family: 'Segoe UI', system-ui, sans-serif;
    background-color: #121218;
    color: #e0e0e0;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

.emulador-container {
    max-width: 1400px;
    margin: 30px auto;
    padding: 30px 20px;
}

/* -------------------------------
   ESTILOS DEL TÍTULO
   -------------------------------*/ 
.emulador-title-container {
    display: flex;
    margin-bottom: 40px;
}

.emulador-title {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    background-color: rgba(26, 26, 31, 0.9);
    position: relative;
    overflow: hidden;
    border-left: 4px solid #4e73df;
    color: #00B4FF;
    margin-bottom: 10px;
    width: fit-content;
}

.emulador-title:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
    background-color: rgba(35, 35, 40, 0.95);
}

/* -------------------------------
   CUADROS DE INFORMACIÓN 
   -------------------------------*/ 
.emulador-grid {
    display: grid;
    grid-template-areas: 
        "top-card top-card top-card"
        "left-card . right-card";
    grid-template-columns: 1fr 30px 1fr;
    gap: 30px;
}

.top-card { grid-area: top-card; }
.left-card { grid-area: left-card; }
.right-card { grid-area: right-card; }

.emulador-card {
    background-color: rgba(26, 26, 31, 0.9);
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-left: 4px solid #000000;
    transition: all 0.3s ease;
}

.emulador-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
    background-color: rgba(35, 35, 40, 0.95);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #333;
}

.card-title {
    color: #4DFF4D;
    font-size: 1.4rem;
    margin: 0;
    font-weight: 600;
}

.card-badge {
    background-color: #4DFF4D;
    color: #121218;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.emulador-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 10px;
    margin: 15px 0;
}

.emulador-table tr {
    background-color: rgba(39, 39, 58, 0.5);
}

.emulador-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #333;
}

.emulador-table td:first-child {
    font-weight: 600;
    color: #00B4FF;
    width: 45%;
    border-right: 1px solid #333;
}

.price-box {
    background: linear-gradient(135deg, #252538 0%, #1e2a3a 100%);
    padding: 18px;
    border-radius: 8px;
    margin-top: 25px;
    border-left: 3px solid #000000;
}

.price-box.secondary {
    border-left-color: #000000;
}

.price-title {
    color: #FFD700;
    font-size: 1.1rem;
    margin-top: 0;
    margin-bottom: 15px;
    text-align: center;
    font-weight: 600;
}

.price-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px dashed #444;
}

.price-row:last-child {
    border-bottom: none;
}

.price-label {
    font-weight: 600;
}

.price-value {
    color: #4DFF4D;
    font-weight: 600;
}

.update-content {
    padding: 10px 5px;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    padding: 10px;
    background-color: rgba(39, 39, 58, 0.5);
    border-radius: 6px;
}

.feature-icon {
    color: #4DFF4D;
    font-weight: bold;
    margin-right: 10px;
    font-size: 1.1rem;
}

/* -------------------------------
   DISEÑO RESPONSIVE
   -------------------------------*/ 
@media (max-width: 1200px) {
    .emulador-grid {
        grid-template-areas: 
            "top-card top-card"
            "left-card right-card";
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .emulador-container {
        padding: 15px 10px;
    }
    
    .emulador-title {
        font-size: 1.5rem;
        padding: 10px 20px;
    }
    
    .emulador-title::before {
        font-size: 1.3rem;
    }
    
    .emulador-grid {
        grid-template-areas: 
            "top-card"
            "left-card"
            "right-card";
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .card-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .card-badge {
        margin-top: 10px;
        align-self: flex-start;
    }
}

@media (max-width: 480px) {
    .emulador-title {
        font-size: 1.3rem;
        padding: 8px 16px;
    }
    
    .emulador-title::before {
        font-size: 1.1rem;
    }
}