:root {
            --ea-red: #E31F26;
            --ea-dark: #0C0C0C;
            --ea-light: #F5F5F5;
            --ea-gray: #2A2A2A;
            --ea-blue: #0066B2;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            color: #333;
            overflow-x: hidden;
        }
        .gradient-bg {
            background: linear-gradient(135deg, var(--ea-dark) 0%, var(--ea-gray) 100%);
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.8rem;
            color: var(--ea-red) !important;
        }
        .hero-section {
            background: linear-gradient(rgba(12,12,12,0.85), rgba(12,12,12,0.9)), 
                        url('https://images.unsplash.com/photo-1550745165-9bc0b252726f?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            min-height: 90vh;
            display: flex;
            align-items: center;
        }
        .section-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 40px;
        }
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 70px;
            height: 4px;
            background: var(--ea-red);
        }
        .card-hover {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .card-hover:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15) !important;
        }
        .btn-ea {
            background-color: var(--ea-red);
            color: white;
            padding: 12px 28px;
            border-radius: 4px;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
        }
        .btn-ea:hover {
            background-color: #c4191f;
            color: white;
            transform: scale(1.05);
        }
        .icon-box {
            width: 80px;
            height: 80px;
            background: rgba(227,31,38,0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }
        .flink {
            display: inline-block;
            padding: 8px 20px;
            margin: 5px;
            background: #f8f9fa;
            border-radius: 30px;
            color: #333;
            text-decoration: none;
            transition: all 0.3s ease;
            border: 1px solid #dee2e6;
        }
        .flink:hover {
            background: var(--ea-red);
            color: white;
            border-color: var(--ea-red);
            transform: translateY(-3px);
        }
        footer {
            background: var(--ea-dark);
            color: #aaa;
        }
        .footer-link {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer-link:hover {
            color: white;
        }
        .game-card {
            border-radius: 12px;
            overflow: hidden;
            border: none;
            height: 100%;
        }
        .stats-number {
            font-size: 3rem;
            font-weight: 800;
            color: var(--ea-red);
            line-height: 1;
        }
        .team-img {
            width: 120px;
            height: 120px;
            object-fit: cover;
            border-radius: 50%;
            border: 4px solid white;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        @media (max-width: 768px) {
            .hero-section {
                min-height: 70vh;
                text-align: center;
            }
            .section-title:after {
                left: 50%;
                transform: translateX(-50%);
            }
            .stats-number {
                font-size: 2.5rem;
            }
        }
