:root {
            --primary-color: #1a237e;
            --secondary-color: #d32f2f;
            --accent-color: #ffc107;
            --light-bg: #f5f5f5;
            --dark-text: #212121;
        }
        body {
            font-family: 'Helvetica Neue', 'Segoe UI', Arial, sans-serif;
            color: var(--dark-text);
            line-height: 1.7;
        }
        h1, h2, h3, h4, h5, h6 {
            font-weight: 700;
            color: var(--primary-color);
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.8rem;
        }
        .nav-link {
            font-weight: 500;
            transition: color 0.3s;
        }
        .nav-link:hover {
            color: var(--secondary-color) !important;
        }
        .hero-section {
            background: linear-gradient(rgba(26, 35, 126, 0.85), rgba(26, 35, 126, 0.9)), url('https://images.unsplash.com/photo-1556056504-5c7696c4c28d?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80') no-repeat center center/cover;
            color: white;
            padding: 120px 0;
        }
        .hero-title {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
        }
        .section-padding {
            padding: 80px 0;
        }
        .section-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 50px;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background-color: var(--secondary-color);
        }
        .card {
            border: none;
            border-radius: 10px;
            overflow: hidden;
            transition: transform 0.3s, box-shadow 0.3s;
            height: 100%;
        }
        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        .card-img-top {
            height: 220px;
            object-fit: cover;
        }
        .icon-box {
            width: 70px;
            height: 70px;
            background-color: var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: white;
            font-size: 1.8rem;
        }
        .btn-primary {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
            padding: 12px 30px;
            font-weight: 600;
            border-radius: 30px;
            transition: all 0.3s;
        }
        .btn-primary:hover {
            background-color: var(--secondary-color);
            border-color: var(--secondary-color);
            transform: scale(1.05);
        }
        .form-control {
            padding: 12px 15px;
            border-radius: 5px;
            border: 1px solid #ddd;
        }
        footer {
            background-color: #1a1a1a;
            color: #bbb;
        }
        .flink {
            display: inline-block;
            padding: 8px 15px;
            margin: 5px 10px 5px 0;
            background-color: #333;
            color: #fff;
            border-radius: 5px;
            text-decoration: none;
            transition: background-color 0.3s;
        }
        .flink:hover {
            background-color: var(--primary-color);
            color: white;
            text-decoration: none;
        }
        .friendlink {
            background-color: var(--light-bg);
        }
        .match-card {
            border-left: 5px solid var(--secondary-color);
        }
        .analysis-chart {
            height: 300px;
            background: linear-gradient(to right, #1a237e, #3949ab, #5c6bc0);
            border-radius: 10px;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 20px 0;
        }
        .player-img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            border-radius: 10px;
        }
        .table-hover tbody tr:hover {
            background-color: rgba(26, 35, 126, 0.05);
        }
        .stats-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-color);
        }
        .stats-label {
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: #666;
        }
        .news-date {
            color: var(--secondary-color);
            font-weight: 600;
        }
        .contact-icon {
            font-size: 2rem;
            color: var(--primary-color);
            margin-bottom: 15px;
        }
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background-color: var(--primary-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            z-index: 1000;
            opacity: 0;
            transition: opacity 0.3s;
            text-decoration: none;
        }
        .back-to-top.show {
            opacity: 1;
        }
        .back-to-top:hover {
            background-color: var(--secondary-color);
            color: white;
        }
