:root {
    --ares-gold: #ffcf40;
    --ares-cyan: #00f2ff;
    --ares-glow: rgba(255, 207, 64, 0.2);
    --glass-border: rgba(255, 255, 255, 0.15);
    --transition-speed: 0.8s;
}

/* 1. Estructura de Contenedores (V1.3) */
#tron-ares-carousel {
    background: transparent;
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 60px 0;
    animation: glitch-entry 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.carousel-main-wrapper {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    padding: 0 60px; /* Espacio para botones */
    box-sizing: border-box;
}

.carousel-viewport {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 40px 0;
}

.carousel-track {
    display: flex;
    gap: 30px;
    transition: transform var(--transition-speed) cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
}

/* 2. Recuperación Estilos V1.2 (Cards Complejas) */
.tron-card {
    /* Responsividad Corregida */
    flex: 0 0 100%;
    min-width: 100%;
    
    height: 450px;
    position: relative;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--glass-border);
    display: flex;
    flex-direction: column;
    padding: 40px;
    box-sizing: border-box;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), background 0.4s ease;
}

@media (min-width: 768px) {
    .tron-card { 
        flex: 0 0 calc(50% - 15px); 
        min-width: calc(50% - 15px);
    }
}

@media (min-width: 1024px) {
    .tron-card { 
        flex: 0 0 calc(33.333% - 20px); 
        min-width: calc(33.333% - 20px);
    }
}

.tron-card:hover {
    transform: translateY(-12px) scale(1.02);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--ares-cyan);
}

/* 3. Iconos y Pulso Sutil (Originales V1.2) */
.icon-box {
    font-size: 4rem; /* Recuperado tamaño original */
    color: white;
    margin-bottom: 25px;
    text-align: center;
}

.pulse-neon i {
    filter: drop-shadow(0 0 8px var(--ares-cyan));
    animation: neon-throb 3.5s infinite ease-in-out; /* Pulso lento y sutil */
}

@keyframes neon-throb {
    0%, 100% { filter: drop-shadow(0 0 5px var(--ares-cyan)); opacity: 0.7; }
    50% { filter: drop-shadow(0 0 12px var(--ares-cyan)); opacity: 1; }
}

/* Borde Neón Ares (Efecto Complejo Recuperado) */
.tron-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 2px;
    background: linear-gradient(135deg, var(--ares-gold), transparent, var(--ares-cyan));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0.3;
    transition: opacity 0.5s ease;
}

.tron-card:hover::after {
    opacity: 1;
}

/* 4. Animación Glitch Entrada */
@keyframes glitch-entry {
    0% { opacity: 0; transform: translateY(30px); filter: brightness(2) blur(10px); }
    100% { opacity: 1; transform: translateY(0); filter: brightness(1) blur(0); }
}

/* 5. Navegación y Botones */
.nav-btn {
    width: 55px;
    height: 55px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid var(--ares-gold);
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.nav-btn:hover { background: var(--ares-gold); }
.nav-btn:hover svg { fill: #000; }
.nav-btn svg { fill: var(--ares-gold); width: 28px; transition: fill 0.3s ease; }

.prev { left: 0; }
.next { right: 0; }

.btn-ares {
    background: transparent;
    border: 1px solid var(--ares-gold);
    color: var(--ares-gold);
    padding: 12px;
    font-weight: bold;
    margin-top: auto;
    cursor: pointer;
    transition: 0.3s;
    letter-spacing: 2px;
}

.btn-ares:hover {
    background: var(--ares-gold);
    color: #000;
    box-shadow: 0 0 15px var(--ares-glow);
}

.dot {
    width: 12px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    cursor: pointer;
    transition: 0.3s;
}

.dot.active {
    background: var(--ares-cyan);
    width: 30px;
    box-shadow: 0 0 10px var(--ares-cyan);
}