.gs-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
    margin: 40px 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    box-sizing: border-box;
}

.gs-container * {
    box-sizing: border-box;
}

/* Glassmorphism Dark Theme Card */
.gs-card {
    background: rgba(22, 27, 34, 0.85); /* Tema oscuro moderno */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    color: #e2e8f0;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.gs-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6 0%, #8b5cf6 100%);
    opacity: 0.8;
}

.gs-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.15);
}

.gs-title {
    margin: 0 0 24px 0 !important;
    font-size: 1.4rem !important;
    font-weight: 700 !important;
    color: #f8fafc !important;
    line-height: 1.3 !important;
    letter-spacing: -0.02em;
}

.gs-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 30px;
    flex-grow: 1;
}

.gs-stat-item {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 16px 12px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: background 0.2s ease;
}

.gs-stat-item:hover {
    background: rgba(255, 255, 255, 0.06);
}

.gs-stat-val {
    display: block;
    font-size: 1.35rem;
    font-weight: 800;
    background: linear-gradient(to right, #60a5fa, #a78bfa);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 6px;
    line-height: 1;
}

.gs-stat-label {
    display: block;
    font-size: 0.75rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
}

.gs-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.gs-updated {
    font-size: 0.8rem !important;
    color: #64748b !important;
    margin: 0 !important;
}

/* CTA Button sin href puramente estético y funcional vía JS */
.gs-cta {
    background: linear-gradient(135deg, #3b82f6 0%, #4f46e5 100%);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    outline: none;
    user-select: none;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 140px;
    text-align: center;
    white-space: nowrap;
}

.gs-cta:hover {
    background: linear-gradient(135deg, #2563eb 0%, #4338ca 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(59, 130, 246, 0.4);
    color: #ffffff;
}

.gs-cta:active {
    transform: translateY(1px);
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
}

/* Responsividad extra */
@media (max-width: 480px) {
    .gs-stats-grid {
        gap: 8px;
    }
    
    .gs-stat-item {
        padding: 12px 8px;
    }
    
    .gs-stat-val {
        font-size: 1.15rem;
    }
    
    .gs-stat-label {
        font-size: 0.65rem;
    }
    
    .gs-footer {
        flex-direction: column;
        gap: 16px;
        align-items: stretch;
        text-align: center;
    }
}
