        /* Hero Section */
        .torneos-hero {
            background: var(--gradient-bg);
            padding: 120px 5% 60px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .torneos-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('https://images.unsplash.com/photo-1612872087720-bb876e2e67d1?w=1920&h=1080&fit=crop&q=80') center/cover;
            opacity: 0.1;
            z-index: 0;
        }

        .torneos-hero h1 {
            position: relative;
            z-index: 1;
            font-size: 3.5rem;
            font-weight: 900;
            margin-bottom: 1rem;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .torneos-hero p {
            position: relative;
            z-index: 1;
            font-size: 1.2rem;
            color: var(--text-secondary);
            max-width: 600px;
            margin: 0 auto;
        }

        /* Tournament Cards */
        .tournaments-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 2rem;
        }

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

        .tournament-card:hover {
            border-color: var(--primary-cyan);
            box-shadow: var(--shadow-lg);
            transform: translateY(-10px);
        }

        .tournament-image {
            height: 200px;
            background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(0, 255, 136, 0.1));
            background-image: url('https://images.unsplash.com/photo-1612872087720-bb876e2e67d1?w=800&h=600&fit=crop&q=75');
            background-size: cover;
            background-position: center;
            position: relative;
        }

        .tournament-image::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 50%;
            background: linear-gradient(to top, var(--dark-bg), transparent);
        }

        .tournament-badge {
            position: absolute;
            top: 1rem;
            right: 1rem;
            z-index: 1;
        }

        .tournament-content {
            padding: 1.5rem;
        }

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

        .tournament-details {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
            margin-bottom: 1.5rem;
        }

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

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

        .tournament-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1rem;
            padding: 1rem;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 10px;
            margin-bottom: 1rem;
        }

        .stat-mini {
            text-align: center;
        }

        .stat-mini-number {
            font-size: 1.5rem;
            font-weight: 900;
            color: var(--primary-cyan);
        }

        .stat-mini-label {
            font-size: 0.7rem;
            color: var(--text-muted);
            text-transform: uppercase;
        }

        .view-tournament-btn {
            width: 100%;
        }

        /* Live Badge */
        .live-badge {
            background: #ff4444;
            color: white;
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 700;
            display: inline-flex;
            align-items: center;
            gap: 0.3rem;
            animation: pulse 2s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.7; }
        }

        .live-dot {
            width: 8px;
            height: 8px;
            background: white;
            border-radius: 50%;
            animation: blink 1s ease-in-out infinite;
        }

        @keyframes blink {
            0%, 100% { opacity: 1; }
            50% { opacity: 0; }
        }

        /* Responsive */

        /* Mobile Small - < 480px */
        @media (max-width: 480px) {
            .torneos-hero h1 {
                font-size: var(--font-xl);
            }

            .torneos-hero p {
                font-size: 0.95rem;
            }

            .tournaments-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .tournament-image {
                height: 150px;
            }

            .tournament-stats {
                grid-template-columns: repeat(2, 1fr);
                gap: 0.5rem;
            }

            .stat-mini-number {
                font-size: 1.5rem;
            }

            .stat-mini-label {
                font-size: 0.6rem;
            }

            .filters {
                flex-direction: column;
                gap: 1rem;
            }

            .filter-group {
                width: 100%;
            }
        }

        /* Tablet - 768px */
        @media (max-width: 768px) {
            .torneos-hero h1 {
                font-size: 2rem;
            }

            .tournaments-grid {
                grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
            }
        }
    </style>
</head>
