        :root {
            --primary-red: #dc2626;
            --secondary-red: #ef4444;
            --light-red: #fecaca;
            --dark-red: #991b1b;
            --accent-orange: #ea580c;
            --gradient-primary: linear-gradient(135deg, var(--primary-red) 0%, var(--secondary-red) 50%, var(--accent-orange) 100%);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: #1f2937;
            background: #ffffff;
        }

        .hero-section {
            background: var(--gradient-primary);
            padding: 140px 0 100px;
            color: white;
            position: relative;
            overflow: hidden;
            min-height: 70vh;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><defs><pattern id="sport-pattern" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1.5" fill="white" opacity="0.15"/><circle cx="30" cy="30" r="1" fill="white" opacity="0.1"/><rect x="20" y="5" width="1" height="1" fill="white" opacity="0.2"/></pattern></defs><rect width="200" height="200" fill="url(%23sport-pattern)"/></svg>');
            animation: float 20s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-10px) rotate(1deg); }
        }

        .hero-brand {
            font-size: 4.5rem;
            font-weight: 900;
            text-shadow: 4px 4px 12px rgba(0,0,0,0.5);
            letter-spacing: -3px;
            position: relative;
            z-index: 2;
            background: linear-gradient(45deg, #ffffff, #f8fafc, #ffffff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: glow 3s ease-in-out infinite alternate;
        }

        @keyframes glow {
            0% { text-shadow: 0 0 20px rgba(255,255,255,0.5); }
            100% { text-shadow: 0 0 30px rgba(255,255,255,0.8); }
        }

        .hero-tagline {
            font-size: 1.4rem;
            font-weight: 400;
            margin-top: 25px;
            opacity: 0.95;
            position: relative;
            z-index: 2;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .live-indicator {
            display: inline-flex;
            align-items: center;
            background: rgba(255,255,255,0.2);
            padding: 8px 16px;
            border-radius: 25px;
            margin-top: 20px;
            backdrop-filter: blur(10px);
        }

        .live-dot {
            width: 12px;
            height: 12px;
            background: #22c55e;
            border-radius: 50%;
            margin-right: 8px;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
            70% { box-shadow: 0 0 0 10px rgba(34, 197, 94, 0); }
            100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
        }

        .content-section {
            padding: 100px 0;
            background: linear-gradient(to bottom, #ffffff 0%, #f9fafb 100%);
        }

        .section-header {
            color: var(--primary-red);
            font-weight: 800;
            margin-bottom: 40px;
            position: relative;
            padding-bottom: 20px;
            font-size: 2.5rem;
        }

        .section-header::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 5px;
            background: var(--gradient-primary);
            border-radius: 3px;
        }

        .highlight-text {
            font-weight: 700;
            color: var(--primary-red);
            background: linear-gradient(120deg, transparent 0%, var(--light-red) 50%, transparent 100%);
            padding: 3px 6px;
            border-radius: 4px;
            display: inline-block;
        }

        .sports-showcase {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
            margin: 60px 0;
        }

        .sport-showcase-card {
            background: white;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 15px 40px rgba(220, 38, 38, 0.1);
            border: 2px solid transparent;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
        }

        .sport-showcase-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 6px;
            background: var(--gradient-primary);
            border-radius: 20px 20px 0 0;
        }

        .sport-showcase-card:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: 0 25px 60px rgba(220, 38, 38, 0.2);
            border-color: var(--light-red);
        }

        .sport-icon {
            font-size: 3rem;
            margin-bottom: 20px;
            display: block;
        }

        .sport-showcase-card h4 {
            color: var(--primary-red);
            font-weight: 800;
            margin-bottom: 20px;
            font-size: 1.4rem;
        }

        .sport-showcase-card p {
            color: #4b5563;
            line-height: 1.8;
            font-size: 1.05rem;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin: 50px 0;
        }

        .feature-card {
            background: white;
            padding: 30px;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transition: transform 0.3s ease;
        }

        .feature-card:hover {
            transform: translateY(-5px);
        }

        .feature-icon {
            width: 60px;
            height: 60px;
            background: var(--gradient-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 1.5rem;
            color: white;
        }

        .advantages-section {
            background: linear-gradient(135deg, var(--light-red) 0%, #fef2f2 100%);
            padding: 100px 0;
        }

        .comparison-table {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            margin: 50px 0;
        }

        .comparison-table thead {
            background: var(--gradient-primary);
            color: white;
        }

        .comparison-table th,
        .comparison-table td {
            padding: 20px;
            text-align: center;
            border-bottom: 1px solid #e5e7eb;
        }

        .check-icon {
            color: #22c55e;
            font-size: 1.2rem;
            font-weight: bold;
        }

        .cross-icon {
            color: #ef4444;
            font-size: 1.2rem;
            font-weight: bold;
        }

        .cta-section {
            background: var(--gradient-primary);
            padding: 80px 0;
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="white" opacity="0.1"/><circle cx="20" cy="20" r="1" fill="white" opacity="0.1"/><circle cx="80" cy="80" r="1.5" fill="white" opacity="0.1"/></svg>');
            animation: float 15s ease-in-out infinite;
        }

        .cta-button {
            background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
            color: var(--primary-red);
            border: none;
            padding: 18px 50px;
            border-radius: 50px;
            font-weight: 800;
            font-size: 1.2rem;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(255,255,255,0.3);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(255,255,255,0.4);
            color: var(--primary-red);
        }

        .faq-section {
            background: #f9fafb;
            padding: 100px 0;
        }

        .accordion-button {
            background-color: white;
            color: var(--primary-red);
            font-weight: 700;
            border: none;
            box-shadow: none;
            font-size: 1.1rem;
        }

        .accordion-button:not(.collapsed) {
            background: var(--gradient-primary);
            color: white;
        }

        .accordion-button:focus {
            box-shadow: 0 0 0 0.25rem rgba(220, 38, 38, 0.25);
        }

        .accordion-item {
            border: 2px solid #e5e7eb;
            margin-bottom: 15px;
            border-radius: 12px;
            overflow: hidden;
        }

        .accordion-body {
            font-size: 1.05rem;
            line-height: 1.8;
            color: #4b5563;
        }

        footer {
            background: linear-gradient(135deg, var(--dark-red) 0%, #1f2937 100%);
            color: white;
            text-align: center;
            padding: 60px 0;
        }

        @media (max-width: 768px) {
            .hero-brand {
                font-size: 2.8rem;
            }
            
            .hero-section {
                padding: 100px 0 60px;
            }
            
            .sports-showcase {
                grid-template-columns: 1fr;
                gap: 25px;
            }

            .sport-showcase-card {
                padding: 30px;
            }

            .section-header {
                font-size: 2rem;
            }
        }

        .breadcrumb-nav {
            background: rgba(255,255,255,0.1);
            padding: 15px 0;
            backdrop-filter: blur(10px);
        }

        .breadcrumb-nav a {
            color: white;
            text-decoration: none;
            opacity: 0.8;
        }

        .breadcrumb-nav a:hover {
            opacity: 1;
        }