
        :root {
            --primary: #ff4757;
            --secondary: #2f3542;
            --accent: #1e90ff;
            --light: #ffffff;
            --bg: #f1f2f6;
        }

        * {
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background-color: var(--bg);
            margin: 0;
            color: var(--secondary);
        }

        header {
            background: linear-gradient(135deg, var(--primary), var(--accent));
            color: white;
            padding: 2rem;
            text-align: center;
            clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
        }

        .container {
            max-width: 800px;
            margin: auto;
            padding: 20px;
        }

        .intro-img {
            width: 100%;
            height: 300px;
            object-fit: cover;
            border-radius: 20px;
            margin-bottom: 20px;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }

        h2 {
            border-left: 5px solid var(--primary);
            padding-left: 15px;
            margin: 0;
            text-transform: uppercase;
            font-size: 1.1rem;
            cursor: pointer;
            transition: color 0.3s ease;
        }

        h2:hover {
            color: var(--primary);
        }

        .sport-section {
            background: white;
            padding: 20px;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            margin-bottom: 20px;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

        .sport-section:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        }

        .sport-header {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .sport-header img {
            width: 90px;
            height: 65px;
            border-radius: 10px;
            object-fit: cover;
            flex-shrink: 0;
        }

        /* 📱 Móviles */
        @media (max-width: 600px) {
            .container {
                padding: 15px;
            }

            .sport-header img {
                width: 70px;
                height: 55px;
            }

            h2 {
                font-size: 0.95rem;
                padding-left: 12px;
            }

            .intro-img {
                height: 200px;
            }
        }
   