:root {
            --primary-green: #1e7e34;
            --secondary-gold: #ffd700;
            --dark-bg: #0a1f1c;
            --light-bg: #f8f9fa;
            --text-dark: #212529;
            --text-light: #e9ecef;
            --accent-blue: #0d6efd;
            --border-radius: 8px;
            --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: var(--text-dark);
            background-color: var(--light-bg);
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }
        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }
        ul {
            list-style: none;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: var(--border-radius);
        }
        .site-header {
            background: linear-gradient(135deg, var(--dark-bg) 0%, var(--primary-green) 100%);
            color: var(--text-light);
            padding: 1rem 2rem;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--box-shadow);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 900;
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--secondary-gold);
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
        .logo .fa-futbol {
            color: white;
            font-size: 1.8rem;
        }
        .nav-desktop {
            display: flex;
            gap: 2rem;
        }
        .nav-desktop a {
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: var(--border-radius);
        }
        .nav-desktop a:hover {
            background-color: rgba(255, 255, 255, 0.15);
            transform: translateY(-2px);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background-color: var(--dark-bg);
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            padding: 1rem;
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            padding: 1rem;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        .nav-mobile a:hover {
            background-color: var(--primary-green);
            padding-left: 1.5rem;
        }
        .breadcrumb {
            background-color: #e9ecef;
            padding: 0.8rem 2rem;
            font-size: 0.9rem;
            color: #6c757d;
            border-bottom: 1px solid #dee2e6;
        }
        .breadcrumb a {
            color: var(--primary-green);
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .main-container {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            max-width: 1400px;
            margin: 2rem auto;
            padding: 0 2rem;
            flex: 1;
        }
        .content-area {
            background: white;
            padding: 2.5rem;
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        h1 {
            color: var(--primary-green);
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            border-bottom: 3px solid var(--secondary-gold);
            padding-bottom: 0.5rem;
        }
        h2 {
            color: var(--dark-bg);
            font-size: 2rem;
            margin: 2.5rem 0 1.2rem;
            padding-left: 0.8rem;
            border-left: 5px solid var(--accent-blue);
        }
        h3 {
            font-size: 1.5rem;
            color: var(--primary-green);
            margin: 2rem 0 1rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.2rem;
            font-weight: 500;
            color: #495057;
            background: #f8f9fa;
            padding: 1.5rem;
            border-radius: var(--border-radius);
            border-left: 4px solid var(--secondary-gold);
            margin-bottom: 2.5rem;
        }
        .highlight {
            background-color: #fff3cd;
            border-left: 4px solid #ffc107;
            padding: 1.2rem;
            margin: 1.5rem 0;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }
        .stat-card {
            background: linear-gradient(145deg, #ffffff, #e9ecef);
            padding: 1.5rem;
            border-radius: var(--border-radius);
            text-align: center;
            box-shadow: var(--box-shadow);
            border-top: 5px solid var(--primary-green);
        }
        .stat-card i {
            font-size: 2.5rem;
            color: var(--primary-green);
            margin-bottom: 1rem;
        }
        .stat-card h4 {
            font-size: 1.8rem;
            color: var(--dark-bg);
        }
        .article-img {
            margin: 2.5rem auto;
            max-width: 800px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
            overflow: hidden;
        }
        .article-img figcaption {
            text-align: center;
            font-style: italic;
            color: #6c757d;
            padding: 0.8rem;
            background-color: #f8f9fa;
            border-radius: 0 0 var(--border-radius) var(--border-radius);
        }
        .content-link {
            color: var(--accent-blue);
            font-weight: 600;
            border-bottom: 1px dotted var(--accent-blue);
        }
        .content-link:hover {
            color: var(--primary-green);
            border-bottom-style: solid;
        }
        .widget {
            background: white;
            padding: 1.8rem;
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
        }
        .widget h3 {
            font-size: 1.4rem;
            margin-top: 0;
            color: var(--dark-bg);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .widget h3 i {
            color: var(--primary-green);
        }
        form {
            display: flex;
            flex-direction: column;
            gap: 1.2rem;
            margin-top: 1.2rem;
        }
        input, textarea, select {
            padding: 0.9rem;
            border: 1px solid #ced4da;
            border-radius: var(--border-radius);
            font-family: inherit;
            font-size: 1rem;
            transition: var(--transition);
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: var(--primary-green);
            box-shadow: 0 0 0 0.25rem rgba(30, 126, 52, 0.25);
        }
        button, .btn {
            background: linear-gradient(to right, var(--primary-green), #2a9d5e);
            color: white;
            border: none;
            padding: 1rem 1.8rem;
            border-radius: var(--border-radius);
            font-weight: 700;
            cursor: pointer;
            transition: var(--transition);
            text-align: center;
            display: inline-block;
        }
        button:hover, .btn:hover {
            background: linear-gradient(to right, #176129, var(--primary-green));
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(30, 126, 52, 0.3);
        }
        .rating {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin: 1rem 0;
            direction: rtl;
        }
        .rating input {
            display: none;
        }
        .rating label {
            font-size: 2rem;
            color: #ddd;
            cursor: pointer;
            transition: var(--transition);
        }
        .rating label:hover,
        .rating label:hover ~ label,
        .rating input:checked ~ label {
            color: var(--secondary-gold);
        }
        .site-footer {
            background-color: var(--dark-bg);
            color: var(--text-light);
            padding: 3rem 2rem 1.5rem;
            margin-top: 3rem;
        }
        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2.5rem;
        }
        .footer-logo {
            font-size: 2rem;
            font-weight: 900;
            color: var(--secondary-gold);
            margin-bottom: 1rem;
        }
        .footer-section h4 {
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
            color: white;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--primary-green);
            display: inline-block;
        }
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        .footer-links a:hover {
            color: var(--secondary-gold);
            padding-left: 5px;
        }
        friend-link {
            display: block;
            background-color: rgba(255, 255, 255, 0.05);
            padding: 1rem;
            border-radius: var(--border-radius);
            margin-top: 0.5rem;
            border-left: 3px solid var(--primary-green);
        }
        friend-link a {
            font-weight: 600;
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #adb5bd;
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            .main-container {
                grid-template-columns: 1fr;
                padding: 0 1.5rem;
            }
            h1 {
                font-size: 2.4rem;
            }
            .nav-desktop {
                display: none;
            }
            .hamburger {
                display: block;
            }
        }
        @media (max-width: 768px) {
            .header-container, .breadcrumb, .content-area, .widget {
                padding-left: 1.5rem;
                padding-right: 1.5rem;
            }
            .content-area {
                padding: 1.8rem;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            .lead {
                font-size: 1.1rem;
                padding: 1.2rem;
            }
            .stats-grid {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 480px) {
            .site-header, .breadcrumb {
                padding-left: 1rem;
                padding-right: 1rem;
            }
            .logo a {
                font-size: 1.8rem;
            }
            .rating label {
                font-size: 1.7rem;
            }
        }
