/* ===== RESET Y VARIABLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* PALETA DE COLORES - PERSONALIZADA */
    --primary-dark: #000000;
    --primary-medium: #4b137a;
    --primary-light: #816fa2;
    --accent-glow: #d5a1c3;
    --accent-primary: #b885aa;
    --accent-hover: #a88db3;
    --text-light: #ffffff;
    --text-muted: #e0d0e0;
    --text-dark: #000000;
    --success-color: #4ade80;
}

body {
    font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-medium) 100%);
    color: var(--text-light);
    min-height: 100vh;
    line-height: 1.5;
    overflow-x: hidden;
}

/* ===== HEADER CON EFECTO GLASS ===== */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: linear-gradient(180deg, rgba(0,0,0,0.9) 0%, transparent 100%);
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(75, 19, 122, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(213, 161, 195, 0.2);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 4%;
    height: 68px;
    max-width: 100%;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 25px;
}

.logo {
    font-size: 2rem;
    font-weight: 800;
    text-decoration: none;
    background: linear-gradient(135deg, var(--text-light) 0%, var(--accent-glow) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 2px;
}

.logo span {
    background: linear-gradient(135deg, var(--accent-glow) 0%, var(--accent-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 20px;
}

.nav-menu a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    padding: 8px 12px;
    border-radius: 30px;
}

.nav-menu a:hover,
.nav-menu a.active,
.nav-menu a:focus {
    background: rgba(213, 161, 195, 0.15);
    color: var(--text-light);
    text-shadow: 0 0 10px rgba(213, 161, 195, 0.5);
    outline: none;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.icon-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(213, 161, 195, 0.2);
    color: var(--text-light);
    font-size: 1.2rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.icon-btn:hover,
.icon-btn:focus {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(184, 133, 170, 0.4);
    outline: none;
}

.profile {
    cursor: pointer;
}

.profile img {
    width: 42px;
    height: 42px;
    border-radius: 20px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.profile:hover img,
.profile:focus img {
    border-color: var(--accent-glow);
    box-shadow: 0 0 20px rgba(213, 161, 195, 0.5);
}

/* ===== HERO SECTION CON VIDEO ===== */
.hero {
    position: relative;
    height: 80vh;
    overflow: hidden;
}

.background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
}

/* Ocultar controles del video */
.background-video::-webkit-media-controls {
    display: none !important;
}
.background-video::-webkit-media-controls-panel {
    display: none !important;
    opacity: 0 !important;
}

/* Overlay degradado negro del lado izquierdo */
.hero-overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        rgba(0,0,0,1) 0%, 
        rgba(0,0,0,0.9) 20%,
        rgba(0,0,0,0.7) 40%,
        rgba(0,0,0,0.4) 60%,
        rgba(0,0,0,0.2) 80%,
        transparent 100%);
    z-index: 1;
    pointer-events: none;
}

/* Degradados superior e inferior mejorados */
.hero-vignette-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(180deg, 
        rgba(0,0,0,0.9) 0%,
        rgba(0,0,0,0.5) 50%,
        transparent 100%);
    z-index: 1;
    pointer-events: none;
}

.hero-vignette-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(0deg, 
        var(--primary-dark) 0%,
        rgba(0,0,0,0.8) 30%,
        rgba(0,0,0,0.4) 70%,
        transparent 100%);
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    padding-left: 4%;
    padding-top: 15vh;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 30px rgba(213, 161, 195, 0.3);
}

.gradient-text {
    background: linear-gradient(135deg, var(--accent-glow) 0%, var(--accent-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-muted);
}

.hero-cta-text {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.email-form {
    display: flex;
    max-width: 600px;
}

.email-form input {
    flex: 1;
    padding: 15px 20px;
    font-size: 1rem;
    border: 2px solid rgba(213, 161, 195, 0.3);
    background: rgba(0, 0, 0, 0.5);
    color: var(--text-light);
    border-radius: 30px 0 0 30px;
    outline: none;
    transition: all 0.3s ease;
}

.email-form input:focus {
    border-color: var(--accent-glow);
    box-shadow: 0 0 20px rgba(213, 161, 195, 0.3);
}

.btn-glow {
    padding: 15px 30px;
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-glow) 100%);
    color: var(--text-light);
    border: none;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    border-radius: 0 30px 30px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-glow::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-glow:hover::before,
.btn-glow:focus::before {
    left: 100%;
}

.btn-glow:hover,
.btn-glow:focus {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(184, 133, 170, 0.5);
    outline: none;
}

/* ===== BLUR DINÁMICO ===== */
.main-content {
    padding: 0 4%;
    margin-top: -100px;
    position: relative;
    z-index: 3;
}

.dynamic-blur {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    pointer-events: none;
    z-index: 2;
    transition: backdrop-filter 0.1s ease;
}

/* ===== FILAS DE CONTENIDO ===== */
.row {
    margin-bottom: 50px;
    position: relative;
    z-index: 5;
}

.row-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
}

.title-number {
    font-size: 1.2rem;
    font-weight: 300;
    color: var(--accent-glow);
    background: rgba(213, 161, 195, 0.1);
    padding: 4px 12px;
    border-radius: 30px;
    border: 1px solid rgba(213, 161, 195, 0.2);
    letter-spacing: 1px;
}

/* Carruseles sin scrollbar visible */
.row-posters {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 10px 0 20px 0;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.row-posters::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

/* Tarjetas con numeración */
.poster-card {
    flex: 0 0 auto;
    width: 300px;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    border: 2px solid transparent;
    z-index: 1;
}

.poster-card[data-glow] {
    position: relative;
}

.poster-number {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 5;
    font-size: 2rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.8);
    text-shadow: 
        2px 2px 0 rgba(0,0,0,0.5),
        -1px -1px 0 rgba(0,0,0,0.5),
        1px -1px 0 rgba(0,0,0,0.5),
        -1px 1px 0 rgba(0,0,0,0.5),
        0 0 20px rgba(213, 161, 195, 0.5);
    font-family: 'Arial Black', sans-serif;
    background: linear-gradient(135deg, var(--accent-glow), var(--accent-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 1px rgba(0,0,0,0.3);
}

.poster-card:hover .poster-number {
    transform: scale(1.1);
    text-shadow: 0 0 30px var(--accent-glow);
}

.poster-overlay {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    padding: 15px;
    background: linear-gradient(0deg, rgba(0,0,0,0.8), transparent);
    display: flex;
    gap: 10px;
    justify-content: center;
    transition: bottom 0.3s ease;
    z-index: 4;
}

.poster-card:hover .poster-overlay,
.poster-card:focus .poster-overlay {
    bottom: 0;
}

.poster-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    border: 2px solid var(--text-light);
    color: var(--text-light);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.poster-btn:hover,
.poster-btn:focus {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
    transform: scale(1.1);
}

.card-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at var(--x, 50%) var(--y, 50%), 
                                rgba(213, 161, 195, 0.4) 0%, 
                                transparent 60%);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
    z-index: 2;
}

.poster-card:hover .card-glow,
.poster-card:focus .card-glow {
    opacity: 1;
}

.poster-card:hover,
.poster-card:focus {
    transform: scale(1.05);
    border-color: var(--accent-primary);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4),
                0 0 0 2px rgba(213, 161, 195, 0.2),
                0 0 30px rgba(213, 161, 195, 0.4);
    outline: none;
}

.poster-card img {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    object-fit: cover;
    display: block;
}

/* ===== BENEFICIOS ===== */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.benefit-card {
    background: rgba(75, 19, 122, 0.3);
    padding: 30px 20px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(213, 161, 195, 0.2);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    overflow: hidden;
    cursor: pointer;
}

.benefit-card:hover,
.benefit-card:focus {
    transform: translateY(-5px);
    border-color: var(--accent-primary);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3),
                0 0 30px rgba(213, 161, 195, 0.3);
    outline: none;
}

.benefit-icon {
    font-size: 3rem;
    color: var(--accent-glow);
    margin-bottom: 15px;
    filter: drop-shadow(0 0 10px rgba(213, 161, 195, 0.5));
}

.benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-light);
}

.benefit-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ===== FAQ ===== */
.faq-list {
    max-width: 800px;
    margin: 0 auto 30px;
    text-align: left;
}

.faq-item {
    background: rgba(75, 19, 122, 0.3);
    margin-bottom: 10px;
    border: 1px solid rgba(213, 161, 195, 0.2);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.faq-item:hover,
.faq-item:focus-within {
    border-color: var(--accent-primary);
    box-shadow: 0 10px 30px rgba(213, 161, 195, 0.2);
}

.faq-item summary {
    padding: 20px 25px;
    font-size: 1.2rem;
    cursor: pointer;
    list-style: none;
    position: relative;
    background: rgba(213, 161, 195, 0.05);
    transition: all 0.3s ease;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 25px;
    font-size: 2rem;
    line-height: 1;
    color: var(--accent-glow);
    transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
    content: '×';
    transform: rotate(90deg);
}

.faq-item p {
    padding: 20px 25px;
    color: var(--text-muted);
    border-top: 1px solid rgba(213, 161, 195, 0.1);
}

.faq-cta {
    font-size: 1.2rem;
    margin: 30px 0 15px;
    color: var(--text-muted);
    text-align: center;
}

.faq-email-form {
    max-width: 600px;
    margin: 0 auto;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--primary-dark);
    border-top: 1px solid rgba(213, 161, 195, 0.2);
    padding: 50px 4%;
    margin-top: 40px;
    position: relative;
    z-index: 5;
}

.footer-content {
    max-width: 1000px;
    margin: 0 auto;
}

.footer-contact {
    color: var(--text-muted);
    margin-bottom: 30px;
}

.footer-contact a {
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
}

.glow-link:hover,
.glow-link:focus {
    color: var(--accent-glow);
    text-shadow: 0 0 10px rgba(213, 161, 195, 0.5);
    outline: none;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-column a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-column a:hover,
.footer-column a:focus {
    color: var(--text-light);
    transform: translateX(5px);
    text-shadow: 0 0 10px rgba(213, 161, 195, 0.5);
    outline: none;
}

.service-code {
    background: transparent;
    border: 1px solid rgba(213, 161, 195, 0.3);
    color: var(--text-muted);
    padding: 8px 15px;
    margin-bottom: 20px;
    cursor: pointer;
    font-size: 0.9rem;
    border-radius: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-code:hover,
.service-code:focus {
    border-color: var(--accent-primary);
    color: var(--text-light);
    box-shadow: 0 5px 15px rgba(213, 161, 195, 0.3);
    outline: none;
}

.copyright {
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* ===== MODAL ===== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    opacity: 1;
}

.modal-content {
    background: var(--primary-medium);
    border-radius: 30px;
    padding: 40px;
    max-width: 450px;
    width: 90%;
    text-align: center;
    position: relative;
    border: 1px solid rgba(213, 161, 195, 0.3);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform 0.3s ease;
    overflow: hidden;
}

.modal.show .modal-content {
    transform: scale(1);
}

.modal-icon {
    margin-bottom: 25px;
}

.modal-icon i {
    font-size: 5rem;
    color: var(--success-color);
    filter: drop-shadow(0 0 20px rgba(74, 222, 128, 0.5));
    animation: successPop 0.5s ease;
}

@keyframes successPop {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.modal-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--text-light), var(--accent-glow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.modal-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 15px;
    line-height: 1.6;
}

.modal-email {
    background: rgba(213, 161, 195, 0.1);
    padding: 12px 20px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 25px;
    font-size: 1.1rem;
    color: var(--accent-glow);
    border: 1px solid rgba(213, 161, 195, 0.2);
}

.modal-btn {
    padding: 12px 40px;
    font-size: 1.1rem;
}

/* ===== EFECTOS GLOBALES ===== */
.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: scale(0);
    animation: ripple-animation 0.6s ease-out;
    pointer-events: none;
    width: 100px;
    height: 100px;
    margin-left: -50px;
    margin-top: -50px;
    z-index: 999;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-content {
        padding-top: 20vh;
    }

    .email-form {
        flex-direction: column;
        gap: 10px;
    }

    .email-form input,
    .btn-glow {
        border-radius: 30px;
        width: 100%;
    }

    .poster-card {
        width: 250px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-overlay-gradient {
        background: linear-gradient(90deg, 
            rgba(0,0,0,1) 0%, 
            rgba(0,0,0,0.9) 40%,
            rgba(0,0,0,0.7) 60%,
            transparent 100%);
    }
}

@media (max-width: 480px) {
    .hero {
        height: 70vh;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-content {
        padding-top: 15vh;
    }

    .poster-card {
        width: 200px;
    }

    .title-number {
        font-size: 1rem;
    }
}

/* ===== ESPACIADORES ===== */
.spacer-1 {
    height: 30px;
    width: 100%;
}

.spacer-2 {
    height: 60px;
    width: 100%;
}

.spacer-3 {
    height: 90px;
    width: 100%;
}

@media (max-width: 768px) {
    .spacer-3 {
        height: 60px;
    }
}

/* ===== NUEVAS SECCIONES ===== */
.service-showcase, .player-showcase {
    margin: 40px 0;
    position: relative;
    z-index: 5;
}

.service-card, .player-card {
    background: rgba(75, 19, 122, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(213, 161, 195, 0.2);
    border-radius: 30px;
    padding: 40px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.player-card {
    grid-template-columns: 2fr 1fr;
}

.service-card:hover, .player-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-primary);
    box-shadow: 0 20px 40px rgba(213, 161, 195, 0.2);
}

.service-content, .player-content {
    position: relative;
    z-index: 2;
}

.service-title, .player-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-light);
}

.service-description, .player-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 25px;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.service-features span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    background: rgba(213, 161, 195, 0.1);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.95rem;
}

.service-features i {
    color: var(--accent-glow);
}

.player-tech {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.tech-item {
    background: rgba(213, 161, 195, 0.05);
    padding: 12px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(213, 161, 195, 0.1);
}

.tech-item i {
    font-size: 1.5rem;
    color: var(--accent-glow);
    margin-bottom: 5px;
    display: block;
}

.tech-item span {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.player-stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    border: 1px solid rgba(213, 161, 195, 0.2);
}

.stat {
    text-align: center;
}

.stat-value {
    font-size: 2rem;
    font-weight: bold;
    color: var(--accent-glow);
    display: block;
    text-shadow: 0 0 20px rgba(213, 161, 195, 0.5);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.service-image {
    font-size: 8rem;
    color: var(--accent-glow);
    opacity: 0.3;
}

/* ===== BOTONES NEON (NEGROS CON BORDE NEON ROSA) ===== */
.btn-neon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 40px;
    background: #000000;
    color: var(--text-light);
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: none;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    z-index: 1;
    box-shadow: 0 0 10px rgba(213, 161, 195, 0.3);
}

.btn-neon .btn-text {
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, var(--text-light), var(--accent-glow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn-neon-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        var(--accent-glow), 
        var(--accent-primary), 
        var(--accent-glow), 
        #ff00ff, 
        var(--accent-glow));
    background-size: 400% 400%;
    border-radius: 52px;
    z-index: -1;
    animation: neon-border 3s ease infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-neon:hover .btn-neon-glow,
.btn-neon:focus .btn-neon-glow,
.btn-neon.focused .btn-neon-glow {
    opacity: 1;
}

.btn-neon:hover,
.btn-neon:focus,
.btn-neon.focused {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(213, 161, 195, 0.6);
    outline: none;
}

@keyframes neon-border {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

/* ===== RESPONSIVE PARA NUEVAS SECCIONES ===== */
@media (max-width: 900px) {
    .service-card {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 30px;
    }
    
    .player-card {
        grid-template-columns: 1fr;
    }
    
    .service-features {
        justify-content: center;
    }
    
    .service-image {
        display: none;
    }
    
    .player-stats {
        flex-direction: row;
        justify-content: space-around;
    }
}

@media (max-width: 480px) {
    .service-title, .player-title {
        font-size: 1.8rem;
    }
    
    .service-features {
        flex-direction: column;
        align-items: center;
    }
    
    .player-tech {
        grid-template-columns: 1fr;
    }
    
    .btn-neon {
        padding: 14px 30px;
        font-size: 1rem;
    }
}
/* ===== SLIDER ===== */
.hero-slider {
    position: relative;
    height: 80vh;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease, visibility 1s ease;
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

/* Slide 1 - Video */
.slide .background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
}

/* Slide 2 - Streaming */
.slide-bg.streaming-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #000000, #4b137a);
    z-index: 0;
}

/* Slide 3 - Radio */
.slide-bg.radio-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #000000, #331f2a);
    z-index: 0;
}

.slide-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.slide-content.centered {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
}

.slide-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 0 30px rgba(0,0,0,0.5);
}

.slide-description {
    font-size: 1.3rem;
    color: var(--text-muted);
    margin-bottom: 25px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.slide-features {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.slide-features span {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 1rem;
}

.slide-features i {
    color: var(--accent-glow);
}

.btn-slide {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 40px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-glow));
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-slide:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(213,161,195,0.4);
}

.btn-slide.radio-btn {
    background: linear-gradient(135deg, #ff99bb, #f5b0c5);
}

.slider-controls {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: var(--accent-glow);
    transform: scale(1.2);
    box-shadow: 0 0 20px var(--accent-glow);
}

.slider-arrows {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    z-index: 10;
    pointer-events: none;
}

.slider-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    pointer-events: auto;
    transition: all 0.3s ease;
}

.slider-arrow:hover {
    background: var(--accent-primary);
    transform: scale(1.1);
}

/* ===== SECCIÓN RADIO EN INDEX ===== */
.radio-showcase {
    margin: 40px 0;
    position: relative;
    z-index: 5;
}

.radio-card {
    background: linear-gradient(135deg, #1a0f13, #2a1a22);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 153, 187, 0.2);
    border-radius: 30px;
    padding: 40px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 0 30px rgba(255, 153, 187, 0.1);
}

.radio-card:hover {
    transform: translateY(-5px);
    border-color: #ff99bb;
    box-shadow: 0 20px 40px rgba(255, 153, 187, 0.2);
}

.radio-content {
    position: relative;
    z-index: 2;
}

.radio-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-light);
}

.gradient-text-pastel {
    background: linear-gradient(135deg, #f8c1d1, #ff99bb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.radio-description {
    font-size: 1.1rem;
    color: #f0d0dd;
    line-height: 1.6;
    margin-bottom: 25px;
}

.radio-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 25px;
}

.radio-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 153, 187, 0.1);
    padding: 10px;
    border-radius: 12px;
    font-size: 0.95rem;
}

.radio-feature i {
    color: #ff99bb;
    font-size: 1.1rem;
}

.radio-tech {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.tech-tag {
    background: rgba(255, 153, 187, 0.15);
    border: 1px solid rgba(255, 153, 187, 0.3);
    padding: 6px 15px;
    border-radius: 30px;
    font-size: 0.9rem;
    color: #ff99bb;
}

.btn-radio-home {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 40px;
    background: #000000;
    color: var(--text-light);
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    z-index: 1;
}

.btn-radio-home .btn-text {
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, #ffffff, #ff99bb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn-radio-home .btn-radio-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #ff99bb, #f5b0c5, #ff99bb);
    background-size: 400% 400%;
    border-radius: 52px;
    z-index: -1;
    animation: radio-glow 3s ease infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-radio-home:hover .btn-radio-glow {
    opacity: 1;
}

.btn-radio-home:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 40px rgba(255, 153, 187, 0.6);
}

@keyframes radio-glow {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.radio-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.radio-image i {
    font-size: 8rem;
    color: #ff99bb;
    opacity: 0.5;
}

.radio-waves {
    position: absolute;
    display: flex;
    gap: 5px;
}

.radio-waves span {
    width: 4px;
    height: 20px;
    background: #ff99bb;
    border-radius: 2px;
    animation: wave 1s infinite ease-in-out;
}

.radio-waves span:nth-child(2) { animation-delay: 0.2s; }
.radio-waves span:nth-child(3) { animation-delay: 0.4s; }
.radio-waves span:nth-child(4) { animation-delay: 0.6s; }

@keyframes wave {
    0%, 100% { height: 20px; }
    50% { height: 40px; }
}

/* ===== FOOTER ACTUALIZADO ===== */
.footer {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(213, 161, 195, 0.2);
    padding: 60px 4% 30px;
    margin-top: 60px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-contact {
    color: var(--text-muted);
    margin-bottom: 40px;
    text-align: center;
}

.footer-contact a {
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.footer-column h4 {
    color: var(--accent-glow);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-column a {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    margin-bottom: 12px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.footer-column a:hover {
    color: var(--text-light);
    transform: translateX(5px);
}

.footer-column p {
    color: var(--text-muted);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-column p i {
    color: var(--accent-glow);
    width: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(213, 161, 195, 0.1);
}

.service-code {
    background: transparent;
    border: 1px solid rgba(213, 161, 195, 0.3);
    color: var(--text-muted);
    padding: 8px 20px;
    margin-bottom: 20px;
    cursor: pointer;
    font-size: 0.9rem;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.service-code:hover {
    border-color: var(--accent-primary);
    color: var(--text-light);
}

.copyright {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Responsive footer */
@media (max-width: 900px) {
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .radio-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .footer-links {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-column a:hover {
        transform: none;
    }
    
    .footer-column p {
        justify-content: center;
    }
    
    .radio-card {
        grid-template-columns: 1fr;
    }
    
    .slide-title {
        font-size: 2.2rem;
    }
    
    .slide-description {
        font-size: 1rem;
    }
    
    .slide-features {
        flex-direction: column;
        align-items: center;
    }
}
/* ===== MEJORAS PARA POSTERS DE TUANI+ ===== */
.poster-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    padding: 0 5px;
    text-align: left;
}

.poster-overlay {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Animación de carga */
.fa-spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
/* ===== CARRUSEL AUTOMÁTICO CON CSS ===== */
@keyframes infiniteScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-300px * 10 - 10px * 9)); /* Ancho total: 300px por poster + gaps */
    }
}

#rowTendencias .row-posters {
    animation: infiniteScroll 60s linear infinite;
    width: fit-content;
    display: flex;
    gap: 10px;
    padding-bottom: 10px;
}

/* Pausar animación al hacer hover */
#rowTendencias .row-posters:hover {
    animation-play-state: paused;
}

/* Asegurar que los elementos no se compriman */
#rowTendencias .poster-card {
    flex: 0 0 auto;
    width: 300px;
}