        /* Hero mejorado con mejor contraste */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 120px 5% 80px;
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 100%);
        }

        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('/img/full-shot-blurry-woman-playing-paddle-tennis.jpg') center/cover;
            filter: brightness(0.15) blur(2px);
            z-index: 0;
        }

        .hero-content {
            max-width: 900px;
            text-align: center;
            z-index: 2;
            position: relative;
        }

        .hero-badge {
            display: inline-block;
            padding: 0.6rem 1.5rem;
            background: rgba(0, 255, 136, 0.15);
            border: 1px solid rgba(0, 255, 136, 0.3);
            border-radius: 50px;
            color: var(--primary-green);
            font-weight: 600;
            font-size: 0.95rem;
            margin-bottom: 2rem;
            animation: pulse 2s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        .hero-content h1 {
            font-size: 4rem;
            font-weight: 900;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, #fff, #00d4ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero-tagline {
            font-size: 1.5rem;
            color: var(--text-secondary);
            margin-bottom: 1rem;
            font-weight: 500;
        }

        .hero-micro-copy {
            font-size: 1.1rem;
            color: var(--primary-cyan);
            margin-bottom: 3rem;
            font-weight: 600;
        }

        .hero-cta-group {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            margin-bottom: 3rem;
            flex-wrap: wrap;
        }

        .cta-large {
            padding: 1.2rem 3rem;
            font-size: 1.1rem;
            border-radius: 50px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.8rem;
        }

        .cta-primary {
            background: linear-gradient(135deg, var(--primary-cyan), var(--primary-green));
            color: var(--dark-bg);
            border: none;
        }

        .cta-primary:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 212, 255, 0.5);
        }

        .cta-secondary {
            background: transparent;
            border: 2px solid var(--primary-cyan);
            color: var(--primary-cyan);
        }

        .cta-secondary:hover {
            background: var(--primary-cyan);
            color: var(--dark-bg);
            transform: translateY(-5px);
        }

        /* Buscador de Ranking destacado */
        .ranking-search-hero {
            max-width: 600px;
            margin: 0 auto 2rem;
            position: relative;
        }

        .ranking-search-hero h3 {
            font-size: 1.3rem;
            color: var(--text-primary);
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }

        .search-box {
            position: relative;
            display: flex;
            gap: 0.5rem;
        }

        .search-box input {
            flex: 1;
            padding: 1rem 1.5rem;
            background: rgba(255, 255, 255, 0.08);
            border: 2px solid rgba(255, 255, 255, 0.2);
            border-radius: 50px;
            color: var(--text-primary);
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .search-box input:focus {
            outline: none;
            border-color: var(--primary-cyan);
            background: rgba(255, 255, 255, 0.12);
        }

        .search-box button {
            padding: 1rem 2rem;
            background: linear-gradient(135deg, var(--primary-cyan), var(--primary-green));
            border: none;
            border-radius: 50px;
            color: var(--dark-bg);
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .search-box button:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0, 212, 255, 0.4);
        }

        /* Stats dinámicos mejorados */
        .stats-section {
            padding: 80px 5%;
            background: linear-gradient(135deg, var(--primary-cyan) 0%, var(--primary-green) 100%);
            position: relative;
        }

        .stats-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .stats-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .stats-header h2 {
            font-size: 2.5rem;
            font-weight: 900;
            color: var(--dark-bg);
            margin-bottom: 1rem;
        }

        .stats-header p {
            font-size: 1.2rem;
            color: rgba(10, 14, 39, 0.8);
            font-weight: 600;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 2rem;
        }

        .stat-card {
            text-align: center;
            padding: 2rem;
            background: rgba(255, 255, 255, 0.15);
            border-radius: 20px;
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255, 255, 255, 0.3);
        }

        .stat-number {
            font-size: 3.5rem;
            font-weight: 900;
            color: var(--dark-bg);
            display: block;
            margin-bottom: 0.5rem;
        }

        .stat-label {
            font-size: 1.1rem;
            color: rgba(10, 14, 39, 0.9);
            font-weight: 600;
        }

        .stat-sublabel {
            font-size: 0.9rem;
            color: rgba(10, 14, 39, 0.7);
            margin-top: 0.3rem;
        }

        /* Beneficios enfocados en dolor → solución */
        .benefits-section {
            padding: 100px 5%;
            background: var(--dark-bg);
        }

        .benefits-header {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 4rem;
        }

        .benefits-header h2 {
            font-size: 3rem;
            font-weight: 900;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, var(--primary-cyan), var(--primary-green));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .benefits-header p {
            font-size: 1.2rem;
            color: var(--text-secondary);
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .benefit-card {
            background: rgba(255, 255, 255, 0.03);
            padding: 2.5rem;
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
        }

        .benefit-card:hover {
            transform: translateY(-10px);
            border-color: var(--primary-cyan);
            box-shadow: 0 20px 60px rgba(0, 212, 255, 0.3);
        }

        .benefit-icon {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            color: var(--primary-cyan);
        }

        .benefit-problem {
            font-size: 1.1rem;
            color: #ff4757;
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .benefit-solution {
            font-size: 1.3rem;
            color: var(--text-primary);
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .benefit-description {
            color: var(--text-secondary);
            line-height: 1.6;
        }

        /* Torneos cercanos */
        .nearby-tournaments {
            padding: 100px 5%;
            background: linear-gradient(180deg, var(--dark-bg) 0%, var(--dark-card) 100%);
        }

        .nearby-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .nearby-header h2 {
            font-size: 3rem;
            font-weight: 900;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, var(--primary-cyan), var(--primary-green));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .tournaments-carousel {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto 3rem;
        }

        .tournament-card-home {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            overflow: hidden;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .tournament-card-home:hover {
            transform: translateY(-10px);
            border-color: var(--primary-cyan);
            box-shadow: 0 20px 60px rgba(0, 212, 255, 0.3);
        }

        .tournament-card-header {
            padding: 1.5rem;
            background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(0, 255, 136, 0.05));
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .tournament-name {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 0.5rem;
        }

        .tournament-date {
            color: var(--text-secondary);
            font-size: 0.95rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .tournament-card-body {
            padding: 1.5rem;
        }

        .tournament-info-row {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            color: var(--text-secondary);
            margin-bottom: 0.8rem;
        }

        .tournament-info-row i {
            color: var(--primary-cyan);
            width: 20px;
        }

        /* Ganadores recientes */
        .recent-winners {
            padding: 100px 5%;
            background: var(--dark-bg);
        }

        .winners-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .winners-header h2 {
            font-size: 3rem;
            font-weight: 900;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, var(--primary-cyan), var(--primary-green));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .winners-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto 3rem;
        }

        .winner-card {
            background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(0, 255, 136, 0.05));
            border: 2px solid rgba(0, 212, 255, 0.2);
            border-radius: 20px;
            padding: 2rem;
            text-align: center;
            transition: all 0.3s ease;
        }

        .winner-card:hover {
            transform: scale(1.05);
            box-shadow: 0 20px 60px rgba(0, 212, 255, 0.4);
        }

        .winner-trophy {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .winner-trophy.first { color: #FFD700; }
        .winner-trophy.second { color: #C0C0C0; }
        .winner-trophy.third { color: #CD7F32; }

        .winner-names {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 0.5rem;
        }

        .winner-tournament {
            color: var(--text-secondary);
            font-size: 0.95rem;
            margin-bottom: 0.3rem;
        }

        .winner-category {
            color: var(--primary-cyan);
            font-size: 0.9rem;
        }

        /* Prueba social / Testimonios */
        .social-proof {
            padding: 100px 5%;
            background: linear-gradient(135deg, rgba(0, 212, 255, 0.05), rgba(0, 255, 136, 0.05));
        }

        .social-proof-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .social-proof-header h2 {
            font-size: 3rem;
            font-weight: 900;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, var(--primary-cyan), var(--primary-green));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto 4rem;
        }

        .testimonial-card {
            background: rgba(255, 255, 255, 0.05);
            padding: 2.5rem;
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
        }

        .testimonial-quote {
            font-size: 3rem;
            color: var(--primary-cyan);
            position: absolute;
            top: 1rem;
            left: 1.5rem;
            opacity: 0.3;
        }

        .testimonial-text {
            font-size: 1.1rem;
            color: var(--text-primary);
            line-height: 1.6;
            margin-bottom: 1.5rem;
            margin-top: 2rem;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary-cyan), var(--primary-green));
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 900;
            font-size: 1.2rem;
            color: var(--dark-bg);
        }

        .author-info h4 {
            color: var(--text-primary);
            font-weight: 600;
            margin-bottom: 0.2rem;
        }

        .author-info p {
            color: var(--text-secondary);
            font-size: 0.9rem;
        }

        .clubs-logos {
            text-align: center;
            margin-top: 4rem;
        }

        .clubs-logos h3 {
            font-size: 1.3rem;
            color: var(--text-secondary);
            margin-bottom: 2rem;
            font-weight: 600;
        }

        .logos-grid {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 3rem;
            flex-wrap: wrap;
            opacity: 0.6;
        }

        .logo-placeholder {
            width: 120px;
            height: 120px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .logo-placeholder i {
            font-size: 2.5rem;
            color: var(--primary-cyan);
        }

        /* CTA Final mejorado */
        .final-cta {
            padding: 100px 5%;
            background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-card) 100%);
            text-align: center;
        }

        .final-cta h2 {
            font-size: 3.5rem;
            font-weight: 900;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, var(--primary-cyan), var(--primary-green));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .final-cta p {
            font-size: 1.3rem;
            color: var(--text-secondary);
            margin-bottom: 3rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .final-cta-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2.5rem;
            }

            .hero-tagline {
                font-size: 1.2rem;
            }

            .hero-cta-group {
                flex-direction: column;
                align-items: stretch;
            }

            .cta-large {
                width: 100%;
                justify-content: center;
            }

            .search-box {
                flex-direction: column;
            }

            .benefits-header h2,
            .nearby-header h2,
            .winners-header h2,
            .social-proof-header h2,
            .final-cta h2 {
                font-size: 2rem;
            }

            .stats-header h2 {
                font-size: 2rem;
            }
        }

        /* Loading indicator */
        .loading-spinner {
            display: inline-block;
            width: 20px;
            height: 20px;
            border: 3px solid rgba(255,255,255,.3);
            border-radius: 50%;
            border-top-color: #fff;
            animation: spin 1s ease-in-out infinite;
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }

        /* CTA Flotante Persistente */
        .floating-cta {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 999;
            display: flex;
            flex-direction: column;
            gap: 1rem;
            animation: slideInRight 0.5s ease-out;
        }

        @keyframes slideInRight {
            from {
                transform: translateX(400px);
                opacity: 0;
            }
            to {
                transform: translateX(0);
                opacity: 1;
            }
        }

        .floating-cta-btn {
            padding: 1rem 1.5rem;
            background: linear-gradient(135deg, var(--primary-cyan), var(--primary-green));
            border: none;
            border-radius: 50px;
            color: var(--dark-bg);
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            box-shadow: 0 10px 40px rgba(0, 212, 255, 0.4);
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.8rem;
            white-space: nowrap;
        }

        .floating-cta-btn:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 15px 50px rgba(0, 212, 255, 0.6);
        }

        .floating-cta-btn.secondary {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 2px solid var(--primary-cyan);
            color: var(--primary-cyan);
        }

        /* Badges de torneos */
        .tournament-badge {
            display: inline-block;
            padding: 0.4rem 0.8rem;
            border-radius: 15px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-top: 0.5rem;
        }

        .tournament-badge.open {
            background: rgba(0, 255, 136, 0.2);
            color: var(--primary-green);
            border: 1px solid var(--primary-green);
        }

        .tournament-badge.closed {
            background: rgba(255, 71, 87, 0.2);
            color: #ff4757;
            border: 1px solid #ff4757;
        }

        .tournament-badge.live {
            background: rgba(0, 212, 255, 0.2);
            color: var(--primary-cyan);
            border: 1px solid var(--primary-cyan);
            animation: pulse 2s ease-in-out infinite;
        }

        /* Botón Ver Torneo en cards */
        .tournament-card-home .cta-btn-small {
            padding: 0.8rem 1.5rem;
            background: linear-gradient(135deg, var(--primary-cyan), var(--primary-green));
            border: none;
            border-radius: 25px;
            color: var(--dark-bg);
            font-weight: 700;
            font-size: 0.9rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            margin-top: 1rem;
            width: 100%;
            justify-content: center;
        }

        .tournament-card-home .cta-btn-small:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0, 212, 255, 0.4);
        }

        /* Testimonios mejorados con estrellas */
        .testimonial-rating {
            display: flex;
            gap: 0.3rem;
            margin-bottom: 1rem;
            justify-content: center;
        }

        .testimonial-rating i {
            color: #FFD700;
            font-size: 1.2rem;
        }

        .testimonial-club-photo {
            width: 100%;
            height: 150px;
            background-size: cover;
            background-position: center;
            border-radius: 15px;
            margin-bottom: 1rem;
        }

        .testimonial-tournament-name {
            font-size: 0.85rem;
            color: var(--primary-cyan);
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        /* Onboarding Section */
        .onboarding-section {
            padding: 100px 5%;
            background: linear-gradient(135deg, rgba(0, 212, 255, 0.05), rgba(0, 255, 136, 0.05));
        }

        .onboarding-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .onboarding-header h2 {
            font-size: 3rem;
            font-weight: 900;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, var(--primary-cyan), var(--primary-green));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .onboarding-badge {
            display: inline-block;
            padding: 0.6rem 1.5rem;
            background: rgba(0, 255, 136, 0.2);
            border: 2px solid var(--primary-green);
            border-radius: 50px;
            color: var(--primary-green);
            font-weight: 700;
            font-size: 1.1rem;
            margin-bottom: 2rem;
        }

        .onboarding-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto 3rem;
        }

        .onboarding-step {
            background: rgba(255, 255, 255, 0.05);
            padding: 2.5rem;
            border-radius: 20px;
            border: 2px solid rgba(255, 255, 255, 0.1);
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
        }

        .onboarding-step:hover {
            transform: translateY(-10px);
            border-color: var(--primary-cyan);
        }

        .step-number {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary-cyan), var(--primary-green));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            font-weight: 900;
            color: var(--dark-bg);
            margin: 0 auto 1.5rem;
        }

        .onboarding-step h3 {
            font-size: 1.5rem;
            color: var(--text-primary);
            margin-bottom: 1rem;
        }

        .onboarding-step p {
            color: var(--text-secondary);
            line-height: 1.6;
        }

        /* Stats mejoradas con más métricas */
        .stats-extra {
            display: flex;
            justify-content: center;
            gap: 3rem;
            margin-top: 2rem;
            flex-wrap: wrap;
        }

        .stat-extra-item {
            text-align: center;
        }

        .stat-extra-number {
            font-size: 2rem;
            font-weight: 900;
            color: var(--dark-bg);
            display: flex;
            align-items: center;
            gap: 0.5rem;
            justify-content: center;
        }

        .stat-extra-label {
            font-size: 0.95rem;
            color: rgba(10, 14, 39, 0.8);
            margin-top: 0.3rem;
        }

        .stat-badge {
            display: inline-block;
            padding: 0.3rem 0.8rem;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 15px;
            font-size: 0.8rem;
        }

        /* Responsive mejorado para mobile */
        @media (max-width: 768px) {
            .floating-cta {
                bottom: 20px;
                right: 20px;
                left: 20px;
            }

            .floating-cta-btn {
                justify-content: center;
                font-size: 0.95rem;
                padding: 0.9rem 1.2rem;
            }

            .search-box input {
                font-size: 1rem;
                padding: 1.2rem 1.5rem;
            }

            .search-box button {
                padding: 1.2rem 1.8rem;
                font-size: 1rem;
            }

            .cta-large {
                padding: 1.3rem 2.5rem;
                font-size: 1rem;
            }

            .onboarding-header h2 {
                font-size: 2rem;
            }
        }
