/* ============================================
   ECUAPOKER - STYLE.CSS COMPLETO
   ============================================ */

/* Reset y Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px; /* Deja espacio para que la barra no tape la sección */
}
body {
    font-family: 'Roboto', sans-serif;
    background: #000;
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 20% 20%, rgba(0, 0, 0, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(3, 3, 3, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(255, 0, 0, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 3;
}

/* ============================================
   SISTEMA DE PARTÍCULAS - ENCIMA DE TODO
   ============================================ */

#particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0; /*  DETRÁS de todo */
    pointer-events: none; /*  Permite hacer clic a través de ellas */
    overflow: hidden;
}

.particle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
}

.particle.poker-chip {
    width: 50px;
    height: 50px;
    background: radial-gradient(circle at 30% 30%, #ff0000, #8b0000);
    border: 3px dashed #fff;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
    animation: float-particle linear infinite;
    opacity: 0.2;
}

.particle.poker-chip.gold {
    background: radial-gradient(circle at 30% 30%, #ffd700, #b8860b);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    opacity: 0.2;
}

.particle.poker-chip.blue {
    background: radial-gradient(circle at 30% 30%, #0066ff, #003399);
    box-shadow: 0 0 20px rgba(0, 102, 255, 0.5);
    opacity: 0.2;
}

.particle.poker-chip.green {
    background: radial-gradient(circle at 30% 30%, #00ff00, #006400);
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.5);
    opacity: 0.2;
}

.particle.poker-chip.black {
    background: radial-gradient(circle at 30% 30%, #333, #000);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    opacity: 0.2;
}

.particle.card {
    width: 60px;
    height: 80px;
    background: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    animation: float-particle linear infinite;
    opacity: 0.15;
}

.particle.card.red {
    color: #ff0000;
    border: 2px solid #ff0000;
}

.particle.card.black {
    color: #000;
    border: 2px solid #000;
}

.particle.sparkle {
    width: 12px;
    height: 12px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 15px #fff, 0 0 30px #ff0000;
    animation: sparkle-particle 3s ease-in-out infinite;
    opacity: 0.3;
}

@keyframes float-particle {
    0% {
        transform: translateY(100vh) rotate(0deg) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 0.2;
    }
    90% {
        opacity: 0.2;
    }
    100% {
        transform: translateY(-100vh) rotate(720deg) scale(1);
        opacity: 0;
    }
}

@keyframes sparkle-particle {
    0%, 100% {
        transform: scale(0) rotate(0deg);
        opacity: 0;
    }
    50% {
        transform: scale(1.5) rotate(180deg);
        opacity: 0.4;
    }
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    background: linear-gradient(135deg, #000000 0%, #1a0000 50%, #330000 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.hero-bg-image {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 150%;
    height: 90%;
    z-index: 0;
    opacity: 0.3;
    pointer-events: none;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: left;
}

.hero-bg-image img {
    width: 80%;
    max-width: 800px;
    height: auto;
    object-fit: contain;
    object-position: bottom center;
    filter: drop-shadow(0 0 50px rgba(255, 0, 0, 0.3));
    animation: hero-image-float 6s ease-in-out infinite;
}

@keyframes hero-image-float {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-20px) scale(1.05);
    }
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    color: #fff;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.8);
    margin-bottom: 30px;
    animation: glow 2s ease-in-out infinite;
    position: relative;
    z-index: 3;
}

@keyframes glow {
    0%, 100% { text-shadow: 0 0 30px rgba(255, 215, 0, 0.8); }
    50% { text-shadow: 0 0 50px rgba(255, 215, 0, 1); }
}

.hero-subtitle h2 {
    background: #cc0000;
    color: #fff;
    padding: 15px 40px;
    border-radius: 10px;
    font-size: 1.8rem;
    display: inline-block;
    margin-bottom: 30px;
    position: relative;
    z-index: 3;
}

.hero-description {
    max-width: 800px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
    padding: 20px;
    border: 2px solid #ff0000;
    border-radius: 10px;
    background: rgba(255, 0, 0, 0.1);
    position: relative;
    z-index: 3;
}

.hero-cta p {
    font-size: 1.2rem;
    font-weight: 700;
    padding: 15px;
    border: 2px solid #ff0000;
    border-radius: 10px;
    display: inline-block;
    position: relative;
    z-index: 3;
}

/* ============================================
   POKER APPS SECTION - ACTUALIZADO
   ============================================ */

.poker-apps-section {
    padding: 30px 0;        /* ← REDUCIDO (antes 50px) */
    background: transparent;
    position: relative;
    overflow: visible;
    z-index: 2;
    min-height: 180px;      /* ← REDUCIDO (antes 280px) */
    display: flex;
    align-items: center;
}

.poker-apps-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.3;
    pointer-events: none;
    overflow: hidden;
}

.poker-apps-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    filter: brightness(0.7) contrast(1.2);
}

.poker-apps-section::before {
    content: '';
    position: absolute;
    top: -2%;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        #ff0000 20%, 
        #ff4444 50%, 
        #ff0000 80%, 
        transparent 100%);
    box-shadow: 0 0 5px rgba(255, 0, 0, 0.8);
    z-index: 1;
    filter: none;
}

.poker-apps-section::after {
    content: '';
    position: absolute;
    top: -2%;
    left: -100%;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 1), 
        transparent);
    animation: line-shine 3s ease-in-out infinite;
    z-index: 1;
    filter: none;
}

@keyframes line-shine {
    0% {
        left: -100%;
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        left: 100%;
        opacity: 0;
    }
}

.apps-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;          /* ← AUMENTADO (antes 60px) */
    flex-wrap: wrap;
    position: relative;
    z-index: 3;
}

.app-logo {
    width: 100px;       /* ← AUMENTADO (antes 60px) */
    height: 100px;      /* ← AUMENTADO (antes 60px) */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    animation: float-app 3s ease-in-out infinite;
    background: transparent;        /* ← ELIMINADO el fondo */
    border-radius: 0;               /* ← ELIMINADO el borde redondeado */
    padding: 0;                     /* ← ELIMINADO el padding */
    backdrop-filter: none;          /* ← ELIMINADO el blur */
    border: none;                   /* ← ELIMINADO el borde */
    box-shadow: none;               /* ← ELIMINADA la sombra */
}

.app-logo:nth-child(1) { animation-delay: 0s; }
.app-logo:nth-child(2) { animation-delay: 0.5s; }
.app-logo:nth-child(3) { animation-delay: 1s; }
.app-logo:nth-child(4) { animation-delay: 1.5s; }
.app-logo:nth-child(5) { animation-delay: 2s; }

@keyframes float-app {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

.app-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.5));
    transition: all 0.3s;
}

.app-logo:hover {
    transform: scale(1.15);
    background: transparent;        /* ← SIN FONDO en hover */
}

.app-logo:hover img {
    filter: drop-shadow(0 10px 25px rgba(255, 0, 0, 0.6));
}

/* Responsive */
@media (max-width: 768px) {
 .poker-apps-section::before,
    .poker-apps-section::after {
        display: none !important;
    }
    
   .apps-container {
        display: flex !important;
        flex-wrap: nowrap !important; /* ← Evita que salte a otra línea */
        justify-content: center !important;
        gap: 15px !important; /* ← Reduce el espacio entre iconos */
        overflow-x: auto !important; /* ← Permite scroll si es necesario */
        padding: 10px 5px !important;
    }
    
    .app-logo {
        flex-shrink: 0 !important; /* ← Evita que se encojan */
        width: 60px !important; /* ← Tamaño más pequeño en móvil */
        height: 60px !important;
        margin: 0 !important;
    }
}

@media (max-width: 480px) {
    .apps-container {
        gap: 30px;
    }
    
    .app-logo {
        width: 60px;
        height: 60px;
    }
}
/* ============================================
   CLUBS SECTION - 20px DE ESPACIO
   ============================================ */

.clubs-section {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.6);
    position: relative;
    z-index: 2;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    color: #ff0000;
    margin-bottom: 50px;
    text-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
    position: relative;
}

.clubs-grid {
    display: grid;
    grid-template-columns: repeat(4, 280px);
    gap: 55px;              /* ← 20px DE ESPACIO */
    justify-content: center;
    justify-items: center;
    max-width: 1180px;      /* ← 4×280px + 3×20px = 1180px */
    margin: 0 auto;
    padding: 0 20px;
}

.club-card {
    background: linear-gradient(180deg, #e8e8e8 0%, #d4d4d4 50%, #b8860b 100%);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    width: 280px;
    min-height: 380px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    transition: all 0.3s;
    border: 2px solid rgba(255, 215, 0, 0.3);
}


.club-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 0, 0, 0.6);
}

.club-logo {
    width: 140px;
    height: 140px;
    margin-bottom: 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #ffd700;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.club-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.club-id {
    font-size: 1.1rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 5px;
}

.club-region {
    font-size: 0.95rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.btn-join {
    background: linear-gradient(135deg, #1a1a1a 0%, #000 100%);
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: auto;
    text-transform: uppercase;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

.btn-join:hover {
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(255, 0, 0, 0.5);
}

/* Responsive */
@media (max-width: 1200px) {
    .clubs-grid {
        grid-template-columns: repeat(3, 260px);
        gap: 20px;
        max-width: 820px;  /* 3×260px + 2×20px */
        padding: 0 20px;
    }
    
    .club-card {
        width: 260px;
        min-height: 360px;
    }
    
    .club-logo {
        width: 120px;
        height: 120px;
    }
}

@media (max-width: 968px) {
    .clubs-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2.5rem;
        margin-bottom: 40px;
    }
    
    .clubs-grid {
        grid-template-columns: repeat(2, 280px);
        gap: 20px;
        max-width: 580px;  /* 2×280px + 1×20px */
        padding: 0 20px;
    }
    
    .club-card {
        width: 280px;
        min-height: 360px;
    }
}

@media (max-width: 768px) {
    .clubs-section {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .clubs-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 320px;
        justify-items: center;
        padding: 0 15px;
    }
    
    .club-card {
        width: 100%;
        max-width: 320px;
        min-height: 320px;
        padding: 15px;
    }
    
    .club-logo {
        width: 100px;
        height: 100px;
        margin-bottom: 15px;
    }
    
    .club-id {
        font-size: 1rem;
    }
    
    .club-region {
        font-size: 0.85rem;
    }
    
    .btn-join {
        padding: 10px 20px;
        font-size: 0.8rem;
    }
}
/* ============================================
   WHATSAPP SECTION
   ============================================ */
/* WhatsApp Section */
.whatsapp-section {
    position: relative;
    padding: 80px 0 50px;
    background: #000;
    z-index: 2;
    text-align: center;
}

/* Botón WhatsApp */
.btn-whatsapp {
    display: inline-block;
    background: transparent;
    color: #fff;
    border: 2px solid gold;
    padding: 15px 40px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s;
    margin-bottom: 0;
}

.btn-whatsapp:hover {
    background: rgba(255, 215, 0, 0.2);
    transform: translateY(-3px);
}

/* Sección de jugadores - SOLO LA IMAGEN */
.ws {
    position: relative;
    background: #000;
    padding: 0;
    overflow: hidden;
}

.ws img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 2;
}

/* Responsive */
@media (max-width: 768px) {
    .ws img {
        width: 100%;
    }
}

/* ============================================
   LEARNING SECTION - CARTAS DE POKER (IMÁGENES)
   ============================================ */

.learning-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #000 0%, #1a0000 50%, #000 100%);
    position: relative;
    z-index: 2;
    overflow: hidden;
}

/* Fondo con brillo naranja/rojo */
.learning-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 500px;
    background: radial-gradient(ellipse at center, 
        rgba(255, 100, 0, 0.3) 0%, 
        rgba(255, 0, 0, 0.2) 40%, 
        transparent 70%);
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 0;
}

.learning-section .container {
    position: relative;
    z-index: 3;
}

.learning-cards {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

/* Imágenes de cartas */
.learning-cards img {
    width: 320px;
    height: auto;
    max-height: 550px;
    object-fit: contain;
    transition: all 0.3s;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));
}

/* Carta izquierda */
.learning-cards img:first-child {
    order: 1;
    transform: translateY(0);
}

/* Carta del centro - MÁS GRANDE y ELEVADA */
.learning-cards img:nth-child(2) {
    order: 2;
    transform: translateY(-50px) scale(1.1);
    filter: drop-shadow(0 0 60px rgba(255, 255, 255, 0.4)) 
            drop-shadow(0 20px 50px rgba(0, 0, 0, 0.8));
    z-index: 2;
}

/* Carta derecha */
.learning-cards img:last-child {
    order: 3;
    transform: translateY(0);
}

/* Hover effects */
.learning-cards img:hover {
    transform: translateY(-15px) scale(1.05);
    filter: drop-shadow(0 20px 50px rgba(255, 0, 0, 0.6));
}

.learning-cards img:nth-child(2):hover {
    transform: translateY(-60px) scale(1.15);
}

/* Responsive - Tablets */
@media (max-width: 1024px) {
    .learning-cards {
        gap: 20px;
    }
    
    .learning-cards img {
        width: 280px;
    }
    
    .learning-cards img:nth-child(2) {
        transform: translateY(-40px) scale(1.08);
    }
}

/* Responsive - Móviles */
@media (max-width: 768px) {
    .learning-section {
        padding: 60px 0;
    }
    
    .learning-cards {
        flex-direction: column;
        gap: 25px;
    }
    
    .learning-cards img {
        width: 100%;
        max-width: 350px;
        order: unset !important;
        transform: translateY(0) scale(1) !important;
    }
    
    /* La del centro primero en móvil */
    .learning-cards img:nth-child(2) {
        order: -1;
    }
}

@media (max-width: 480px) {
    .learning-cards img {
        width: 100%;
        max-width: 300px;
    }
}

/* ============================================
   INTERVIEWS SECTION - GRID CORREGIDO
   ============================================ */

.interviews-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(26, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.6) 100%);
    position: relative;
    z-index: 2;
}

.interviews-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 60px;
    text-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
    line-height: 1.3;
}

.interviews-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;  /* ← 2 columnas iguales */
    gap: 40px;
    align-items: stretch;  /* ← Misma altura */
    max-width: 1400px;
    margin: 0 auto;
}

/* Video Responsive */
.interview-video {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(255, 0, 0, 0.4);
    background: #000;
}

.interview-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 15px;
}

/* Carrusel de Testimonios - MISMA ALTURA QUE VIDEO */
.testimonials-carousel {
    position: relative;
    background: linear-gradient(135deg, rgba(26, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.9) 100%);
    border-radius: 15px;
    padding: 30px;
    border: 2px solid rgba(255, 0, 0, 0);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    min-height: 350px;  /* ← Misma altura que el video */
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.testimonials-track {
    position: relative;
    height: 100%;
    min-height: 350px;
}

.testimonial-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.5s ease-in-out;
    pointer-events: none;
    text-align: center;
    padding: 20px;
}

.testimonial-item.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: all;
}

/* Avatar */
.testimonial-avatar {
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #ff0000;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Nombre */
.testimonial-item h4 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 8px;
    font-weight: 700;
}

/* Estrellas */
.stars {
    color: #ffd700;
    font-size: 1.1rem;
    margin-bottom: 12px;
    letter-spacing: 2px;
}

/* Título */
.testimonial-title {
    color: #ff6b6b;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 15px;
    font-style: italic;
}

/* Texto */
.testimonial-item p {
    color: #ccc;
    line-height: 1.7;
    font-size: 0.95rem;
    margin: 0;
}

/* Botones de navegación */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 0, 0, 0.6);
    color: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: rgba(255, 0, 0, 0);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev {
    left: 10px;
}

.carousel-btn.next {
    right: 10px;
}

/* Responsive */
@media (max-width: 1024px) {
    .interviews-grid {
        grid-template-columns: 1fr;  /* ← 1 columna en tablets */
        gap: 30px;
    }
    
    .testimonials-carousel {
        min-height: 350px;
    }
}

@media (max-width: 768px) {
    .interviews-section {
        padding: 60px 0;
    }
    
    .interviews-section h2 {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .testimonials-carousel {
        padding: 25px 20px;
        min-height: 320px;
    }
    
    .testimonial-avatar {
        width: 70px;
        height: 70px;
    }
    
    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .interviews-section h2 {
        font-size: 1.5rem;
    }
    
    .testimonials-carousel {
        min-height: 300px;
    }
}
/* ============================================
   TESTIMONIALS CAROUSEL
   ============================================ */

.testimonials-carousel {
    position: relative;
    background: linear-gradient(135deg, rgba(26, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.9) 100%);
    border-radius: 20px;
    padding: 40px 30px;
    border: 2px solid rgba(255, 0, 0, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    min-height: 450px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.testimonials-track {
    position: relative;
    height: 100%;
}

.testimonial-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateX(100px);
    transition: all 0.6s ease-in-out;
    pointer-events: none;
    text-align: center;
    padding: 0 20px;
}

.testimonial-item.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: all;
}

/* Avatar */
.testimonial-avatar {
    width: 90px;
    height: 90px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #ff0000;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Nombre */
.testimonial-item h4 {
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 10px;
    font-weight: 700;
}

/* Estrellas */
.stars {
    color: #ffd700;
    font-size: 1.2rem;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

/* Título */
.testimonial-title {
    color: #ff6b6b;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
    font-style: italic;
}

/* Texto */
.testimonial-item p {
    color: #ccc;
    line-height: 1.8;
    font-size: 0.95rem;
    margin: 0;
}

/* Botones de navegación */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 0, 0, 0.6);
    color: #fff;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: rgba(255, 0, 0, 0.9);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev {
    left: 10px;
}

.carousel-btn.next {
    right: 10px;
}

/* Indicadores */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s;
}

.indicator.active {
    background: #ff0000;
    transform: scale(1.3);
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.6);
}

.indicator:hover {
    background: rgba(255, 0, 0, 0.6);
}

/* Responsive */
@media (max-width: 768px) {
    .testimonials-carousel {
        min-height: 400px;
        padding: 30px 20px;
    }
    
    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }
    
    .testimonial-avatar {
        width: 70px;
        height: 70px;
    }
}
/* ============================================
   FOOTER
   ============================================ */

.main-footer {
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.8) 0%, rgba(26, 0, 0, 0.7) 50%, rgba(10, 10, 10, 0.8) 100%);
    padding: 80px 0 30px;
    border-top: 3px solid rgba(255, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
    color: #fff;
    z-index: 2;
}

.footer-contact-top {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 3;
}

.footer-contact-top h3 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 25px;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.6);
    font-weight: 900;
    letter-spacing: 2px;
}

.contact-info {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    font-size: 1.2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    font-weight: 600;
}

.contact-item:hover {
    background: rgba(255, 0, 0, 0.3);
    border-color: #ff0000;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 0, 0, 0.4);
}

.contact-item .icon {
    font-size: 1.4rem;
}

.separator {
    color: #ff0000;
    font-size: 1.5rem;
    font-weight: bold;
}

.footer-main-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1.2fr;
    gap: 60px;
    margin-bottom: 50px;
    position: relative;
    z-index: 3;
}

.footer-section {
    padding: 30px;
}

.footer-section.about {
    text-align: center;
    border-right: 2px solid rgba(255, 0, 0, 0.3);
}

.footer-logo img {
    width: 180px;
    height: auto;
    margin-bottom: 25px;
    filter: drop-shadow(0 0 20px rgba(255, 0, 0, 0.5));
    animation: logoGlow 3s ease-in-out infinite;
}

@keyframes logoGlow {
    0%, 100% { filter: drop-shadow(0 0 20px rgba(255, 0, 0, 0.5)); }
    50% { filter: drop-shadow(0 0 35px rgba(255, 0, 0, 0.8)); }
}

.footer-section.about p {
    color: #ccc;
    line-height: 1.9;
    font-size: 1rem;
    text-align: justify;
}

.featured-club {
    text-align: center;
    border-right: 2px solid rgba(255, 0, 0, 0.3);
}

.featured-club h4 {
    color: #ff0000;
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-shadow: 0 0 20px rgba(255, 0, 0, 0.7);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.featured-club-card {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.15) 0%, rgba(0, 150, 255, 0.15) 100%);
    width: 290px;
    height: 290px;
    margin: 0 auto;
    padding: 35px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 4px solid;
    border-image: linear-gradient(135deg, #00ff88, #0096ff, #00ff88) 1;
    box-shadow: 0 0 40px rgba(0, 255, 136, 0.4), inset 0 0 40px rgba(0, 255, 136, 0.1);
    animation: rotateBorder 4s linear infinite;
    position: relative;
     overflow: visible;
}

@keyframes rotateBorder {
    0% { filter: hue-rotate(0deg); }
    100% { filter: hue-rotate(360deg); }
}

.featured-club-card::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(45deg, #00ff88, #0096ff, #ff0000, #00ff88);
    border-radius: 0%;
    z-index: -1;
    animation: rotateGradient 3s linear infinite;
    opacity: 0.5;
}

@keyframes rotateGradient {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.club-logo-jokerface img {
     width: 350px !important;
    height: 290px !important;
    margin-bottom: 20px;
    object-fit: cover;
     display: flex;
    justify-content: center;
    align-items: center;

}

.club-name {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.club-id {
    color: #00ff88;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.8);
}

.btn-join-club {
    background: linear-gradient(135deg, #00ff88, #0096ff);
    color: #000;
    border: none;
    padding: 15px 35px;
    border-radius: 30px;
    font-weight: 900;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 20px rgba(0, 255, 136, 0.4);
}

.btn-join-club:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.6);
}

.newsletter h4 {
    color: #ff6b6b;
    font-size: 1.8rem;
    margin-bottom: 25px;
    text-shadow: 0 0 20px rgba(255, 107, 107, 0.7);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
}

.newsletter p {
    color: #ccc;
    line-height: 1.9;
    margin-bottom: 25px;
    font-size: 1rem;
    text-align: justify;
     padding: 0;           /* Elimina padding */
    margin: 0 0 25px 0;   /* Ajusta márgenes */

}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.newsletter-input {
    padding: 15px 25px;
    border-radius: 30px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
}

.newsletter-input:focus {
    outline: none;
    border-color: #ff0000;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.3);
}

.newsletter-input::placeholder {
    color: #888;
}

.btn-subscribe {
    background: linear-gradient(135deg, #ff0000, #ff6b6b);
    color: #fff;
    border: none;
    padding: 15px 35px;
    border-radius: 30px;
    font-weight: 900;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 20px rgba(255, 0, 0, 0.4);
}

.btn-subscribe:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.6);
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 40px;
    position: relative;
    z-index: 3;
}

.social-icon {
    background: transparent;  /* O rgba(255, 255, 255, 0.1) si quieres un poco de fondo */
    border: none;             /* Elimina el borde */
    border-radius: 0;         /* Quita el borde redondeado */
    width: auto;              /* Ancho automático */
    height: auto;             /* Alto automático */
    padding: 10px;            /* Espacio alrededor del icono */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s;
    text-decoration: none;
    backdrop-filter: none;    /* Elimina el efecto blur */
}

.social-icon i {
    font-size: 2rem;          /* Ajusta el tamaño del icono */
    color: #fff;
}

/* Hover opcional */
.social-icon:hover {
    background: transparent;
    transform: scale(1.1);
    color: #ff0000;           /* Cambia de color al pasar el mouse */
     transform: translateY(-8px) rotate(360deg); /*rota el icono*/
}

.social-icon svg {
    width: 26px;
    height: 26px;
    fill: currentColor;
}


.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 2px solid rgba(255, 0, 0, 0.3);
    color: #888;
    font-size: 1rem;
    position: relative;
    z-index: 3;
}
/* ============================================
   FOOTER CONTACT SECTION - ANCHO TOTAL
   ============================================ */

.footer-contact-section {
    width: 100vw;           /* ← 100% del viewport */
    max-width: 100vw;       /* ← Sin límite */
    margin-left: calc(-50vw + 50%);  /* ← Romper contenedor */
    margin-right: calc(-50vw + 50%);
    padding: 0;
    position: relative;
    z-index: 10;
}

.footer-contact-top {
    text-align: center;
    padding: 20px 40px;
    
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.89) 0%, 
        rgba(14, 13, 13, 0.9) 50%, 
        rgba(0, 0, 0, 0.8) 100%);
    
    border: none;
    border-top: 2px solid rgba(255, 0, 0, 0.4);
    border-bottom: 2px solid rgba(255, 0, 0, 0.4);
    
    width: 100%;
    max-width: 100%;
    margin: 0;
    margin-top: -100px;  /* ← MÁS ARRIBA (cambia a -100px o más) */
    
    border-radius: 0;
    box-shadow: 0 5px 30px rgba(255, 0, 0, 0.3);
}

.footer-contact-top h3 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 15px;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.6);
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.contact-info {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;  /* ← Más espacio entre botones */
    flex-wrap: wrap;
    font-size: 1.1rem;
}

.contact-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    text-decoration: none;
    padding: 12px 35px;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 1.1rem;
}

.contact-item:hover {
    background: rgba(255, 0, 0, 0.3);
    border-color: #ff0000;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 0, 0, 0.4);
}

.contact-item .icon {
    font-size: 1.3rem;
}

.separator {
    color: #ff0000;
    font-size: 1.5rem;
    font-weight: bold;
    opacity: 0.5;
}

/* ============================================
   CONTACTO MÓVIL - PANTALLA COMPLETA
   ============================================ */
@media (max-width: 768px) {
    
    /* 1. Forzar ancho completo para el fondo de contacto */
    .footer-contact-top {
        margin-top: 0 !important;           /* Elimina el tirón negativo que lo corta */
        padding-top: 40px !important;       /* Da espacio seguro para que el título se vea completo */
        width: 100vw !important;
        max-width: 100vw !important;
        margin-left: calc(-50vw + 50%) !important;
        margin-right: calc(-50vw + 50%) !important;
        overflow: visible !important;       /* Evita que el padre corte el contenido */
    }
 /* 2. Centrar el título */
    .footer-contact-top h3 {
        margin: 0 0 20px 0 !important;      /* Resetea márgenes del título */
        line-height: 1.2 !important;        /* Asegura que las letras no se superpongan */
    }

    /* 3. Organizar los botones de contacto en columna y centrados */
    .contact-info {
        display: flex !important;
        flex-direction: column !important; /* Uno debajo del otro para mejor lectura */
        align-items: center !important;    /* Centrado horizontal */
        justify-content: center !important;
        gap: 15px !important;
        width: 100% !important;
    }

    /* 4. Estilo de los botones individuales */
    .contact-item {
        width: 90% !important;             /* Ocupan casi todo el ancho disponible */
        max-width: 350px !important;       /* Pero no más de esto */
        justify-content: center !important; /* Centrar icono y texto dentro del botón */
        padding: 15px 20px !important;
        font-size: 1.1rem !important;
    }

    /* Ocultar el separador "|" en móvil */
    .separator {
        display: none !important;
    }
}
/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1024px) {
    .footer-main-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-section.about,
    .featured-club {
        border-right: none;
        border-bottom: 2px solid rgba(255, 0, 0, 0.3);
        padding-bottom: 40px;
    }
    
    .interviews-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 968px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: linear-gradient(180deg, #1a0000 0%, #330000 100%);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        transition: left 0.3s ease;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu a {
        font-size: 1.5rem;
        padding: 15px 30px;
    }
    
    .hamburger {
        display: flex;
    }
}

@media (max-width: 768px) {
    .hero-bg-image {
        display: none;
    }
    
    .footer-contact-top h3 {
        font-size: 1.8rem;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 15px;
    }
    
    .separator {
        display: none;
    }
    
    .contact-item {
        width: 100%;
        justify-content: center;
    }
    
    .featured-club-card {
        width: 240px;
        height: 240px;
    }
    
    .club-logo-jokerface img {
        width: 100px;
        height: 300px;
    }
    
    .footer-social {
        gap: 15px;
    }
    
    .social-icon {
        width: 45px;
        height: 45px;
    }
    
    .clubs-grid {
        grid-template-columns: 1fr;
    }
    
    .apps-container {
        gap: 30px;
    }
    
    .app-logo {
        width: 50px;
        height: 50px;
    }
    
    .poker-apps-section::before,
    .poker-apps-section::after {
        height: 1px;
    }
}

@media (max-width: 480px) {
    .main-footer {
        padding: 50px 0 20px;
    }
    
    .footer-section {
        padding: 20px 15px;
    }
    
    .featured-club h4,
    .newsletter h4 {
        font-size: 1.4rem;
    }
    
    .club-name {
        font-size: 1.2rem;
    }
    
    .club-id {
        font-size: 1.1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle h2 {
        font-size: 1.2rem;
    }
}
/* ============================================
   PUNTOS DORADOS BRILLANTES - TINY SPARKLES
   ============================================ */

.sparkles-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9997;
    overflow: hidden;
}

.sparkle-dot {
    position: absolute;
    width: 3px;      /* ← MUY PEQUEÑO */
    height: 3px;     /* ← MUY PEQUEÑO */
    background: #ffd700;  /* ← SOLO DORADO */
    border-radius: 50%;
    box-shadow: 
        0 0 4px #ffd700,
        0 0 8px rgba(255, 215, 0, 0.5),
        0 0 15px rgba(255, 215, 0, 0.2);
    opacity: 0;
    animation: twinkle 4s ease-in-out infinite;
}

/* Animación de parpadeo suave */
@keyframes twinkle {
    0%, 100% {
        opacity: 0.2;
        transform: scale(0.8);
    }
    50% {
        opacity: 0.9;
        transform: scale(1.3);
    }
}

/* Delays escalonados para efecto natural */
.sparkle-dot:nth-child(1n) { animation-delay: 0s; }
.sparkle-dot:nth-child(2n) { animation-delay: 0.3s; }
.sparkle-dot:nth-child(3n) { animation-delay: 0.6s; }
.sparkle-dot:nth-child(4n) { animation-delay: 0.9s; }
.sparkle-dot:nth-child(5n) { animation-delay: 1.2s; }
.sparkle-dot:nth-child(6n) { animation-delay: 1.5s; }
.sparkle-dot:nth-child(7n) { animation-delay: 1.8s; }
.sparkle-dot:nth-child(8n) { animation-delay: 2.1s; }
.sparkle-dot:nth-child(9n) { animation-delay: 2.4s; }
.sparkle-dot:nth-child(10n) { animation-delay: 2.7s; }

/* Responsive - aún más pequeños en móviles */
@media (max-width: 768px) {
    .sparkle-dot {
        width: 2px;
        height: 2px;
        box-shadow: 
            0 0 3px #ffd700,
            0 0 6px rgba(255, 215, 0, 0.4);
    }
}
/* ============================================
   NAVEGACIÓN - MENÚ HAMBURGUESA MÓVIL
   ============================================ */

/* Desktop - Menú normal */
@media (min-width: 969px) {
    .hamburger {
        display: none !important;  /* Ocultar hamburguesa en desktop */
    }
    
    .nav-menu {
        display: flex !important;
        position: static !important;
        width: auto !important;
        height: auto !important;
        background: transparent !important;
        flex-direction: row !important;
        gap: 30px;
    }
}

/* Móvil - Menú hamburguesa */
@media (max-width: 968px) {
    .hamburger {
        display: flex !important;  /* Mostrar hamburguesa en móvil */
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        padding: 5px;
        z-index: 1001;
    }
    
    .hamburger span {
        width: 25px;
        height: 3px;
        background: #fff;
        border-radius: 3px;
        transition: all 0.3s;
    }
    
    /* Animación hamburguesa a X */
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
        background: #ff0000;
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
        background: #ff0000;
    }
    
    /* Menú móvil oculto por defecto */
    .nav-menu {
        position: fixed;
        top: 80px;  /* Debajo del nav */
        left: -100%;  /* Oculto a la izquierda */
        width: 100%;
        height: calc(100vh - 80px);
        background: linear-gradient(180deg, #1a0000 0%, #330000 100%);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 0;
        padding-top: 40px;
        transition: left 0.3s ease;
        z-index: 999;
        overflow-y: auto;
    }
    
    /* Menú móvil visible */
    .nav-menu.active {
        left: 0;  /* Mostrar menú */
    }
    
    .nav-menu li {
        width: 100%;
        text-align: center;
        list-style: none;
    }
    
    .nav-menu a {
        display: block;
        padding: 20px 30px;
        font-size: 1.3rem;
        color: #fff;
        text-decoration: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.3s;
    }
    
    .nav-menu a:hover,
    .nav-menu a.active {
        background: rgba(255, 0, 0, 0.3);
        color: #ff0000;
        border-left: 4px solid #ff0000;
    }
}

/* Ajustes para navegación fija */
.main-navigation {
    background: linear-gradient(135deg, #1a0000 0%, #330000 100%);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(255, 0, 0, 0.3);
    transition: all 0.3s;
}

.main-navigation.scrolled {
    background: rgba(26, 0, 0, 0.95);
    backdrop-filter: blur(10px);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo img {
    height: 45px;  /* Logo más pequeño en móvil */
    transition: transform 0.3s;
}

.logo img:hover {
    transform: scale(1.1);
}


/*  FIX MÓVIL: Evita que el header tape el contenido */
@media (max-width: 968px) {
    .hero {
        padding-top: 110px !important; /* Más espacio en móvil */
        min-height: auto;
    }
    html {
        scroll-padding-top: 100px; /* Ajusta el scroll suave */
    }
    /* Asegura que el menú no se corte en iOS */
    .nav-menu {
        padding-bottom: env(safe-area-inset-bottom);
    }
}
