:root {
            --primary-color: #1e3a8a;
            --secondary-color: #dc2626;
            --accent-color: #fbbf24;
            --text-dark: #1f2937;
            --text-light: #6b7280;
            --bg-light: #f8fafc;
            --bg-card: #ffffff;
            --border-color: #e5e7eb;
            --success-color: #10b981;
            --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
            --transition: all 0.3s ease;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            background-color: var(--bg-light);
            overflow-x: hidden;
        }
        a {
            color: inherit;
            text-decoration: none;
            transition: var(--transition);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background-color: var(--bg-card);
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }
        .logo a {
            font-size: 2rem;
            font-weight: 900;
            color: var(--primary-color);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo .fa-futbol {
            color: var(--secondary-color);
        }
        .nav-desktop {
            display: flex;
            gap: 30px;
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
        }
        .nav-desktop a {
            font-weight: 600;
            position: relative;
            padding: 5px 0;
        }
        .nav-desktop a:hover {
            color: var(--secondary-color);
        }
        .nav-desktop a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--secondary-color);
            transition: var(--transition);
        }
        .nav-desktop a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--primary-color);
            cursor: pointer;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background-color: var(--bg-card);
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            box-shadow: var(--shadow);
            padding: 20px;
            z-index: 999;
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            padding: 15px 0;
            border-bottom: 1px solid var(--border-color);
            font-weight: 600;
        }
        .nav-mobile a:last-child {
            border-bottom: none;
        }
        .breadcrumb {
            padding: 15px 20px;
            background-color: #edf2f7;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: var(--text-light);
        }
        .breadcrumb a:hover {
            color: var(--primary-color);
            text-decoration: underline;
        }
        main {
            padding: 40px 20px;
        }
        .article-header {
            text-align: center;
            margin-bottom: 50px;
        }
        .article-header h1 {
            font-size: 3rem;
            color: var(--primary-color);
            margin-bottom: 20px;
            line-height: 1.2;
        }
        @media (max-width: 768px) {
            .article-header h1 {
                font-size: 2.2rem;
            }
        }
        .article-meta {
            color: var(--text-light);
            font-size: 0.95rem;
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }
        .article-meta span {
            display: flex;
            align-items: center;
            gap: 5px;
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        @media (max-width: 992px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background-color: var(--bg-card);
            padding: 40px;
            border-radius: 10px;
            box-shadow: var(--shadow);
        }
        .article-content h2 {
            color: var(--primary-color);
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--accent-color);
        }
        .article-content h3 {
            color: var(--text-dark);
            margin: 30px 0 15px;
        }
        .article-content p {
            margin-bottom: 20px;
            text-align: justify;
        }
        .article-content strong {
            color: var(--secondary-color);
        }
        .article-content em {
            color: var(--text-light);
        }
        .highlight-box {
            background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
            border-left: 5px solid var(--primary-color);
            padding: 25px;
            margin: 30px 0;
            border-radius: 0 8px 8px 0;
        }
        .featured-image {
            margin: 40px 0;
            text-align: center;
        }
        .featured-image img {
            border-radius: 10px;
            box-shadow: var(--shadow);
            margin: 0 auto;
        }
        .image-caption {
            font-style: italic;
            color: var(--text-light);
            margin-top: 10px;
            font-size: 0.9rem;
        }
        .interactive-features {
            display: flex;
            flex-direction: column;
            gap: 30px;
            margin: 50px 0;
        }
        .feature-form {
            background-color: #f8fafc;
            padding: 25px;
            border-radius: 10px;
            border: 1px solid var(--border-color);
        }
        .feature-form h3 {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-top: 0;
        }
        .form-group {
            margin-bottom: 20px;
        }
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
        }
        .form-input, .form-textarea, .form-select {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid var(--border-color);
            border-radius: 6px;
            font-family: inherit;
            font-size: 1rem;
            transition: var(--transition);
        }
        .form-input:focus, .form-textarea:focus, .form-select:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
        }
        .form-textarea {
            min-height: 120px;
            resize: vertical;
        }
        .form-submit {
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 14px 25px;
            border-radius: 6px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .form-submit:hover {
            background-color: #1c3fb7;
            transform: translateY(-2px);
        }
        .rating-stars {
            display: flex;
            gap: 5px;
            margin: 10px 0;
        }
        .star {
            font-size: 1.8rem;
            color: #d1d5db;
            cursor: pointer;
            transition: var(--transition);
        }
        .star:hover,
        .star.active {
            color: var(--accent-color);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .sidebar-widget {
            background-color: var(--bg-card);
            padding: 25px;
            border-radius: 10px;
            box-shadow: var(--shadow);
        }
        .sidebar-widget h3 {
            color: var(--primary-color);
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--border-color);
        }
        .related-links {
            list-style: none;
        }
        .related-links li {
            margin-bottom: 15px;
            padding-bottom: 15px;
            border-bottom: 1px dashed var(--border-color);
        }
        .related-links a {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .related-links a:hover {
            color: var(--secondary-color);
        }
        .related-links .fa-chevron-right {
            font-size: 0.8rem;
            color: var(--text-light);
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
        }
        .stat-item {
            text-align: center;
            padding: 15px;
            background-color: #f0f9ff;
            border-radius: 8px;
        }
        .stat-number {
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary-color);
            line-height: 1;
        }
        .stat-label {
            font-size: 0.85rem;
            color: var(--text-light);
            margin-top: 5px;
        }
        .longtail-links-section {
            background-color: #1e293b;
            color: white;
            padding: 50px 20px;
        }
        .longtail-links-section .container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 25px;
        }
        .web-link {
            background-color: rgba(255, 255, 255, 0.05);
            padding: 20px;
            border-radius: 8px;
            transition: var(--transition);
        }
        .web-link:hover {
            background-color: rgba(255, 255, 255, 0.1);
            transform: translateY(-3px);
        }
        .web-link a {
            color: #cbd5e1;
            display: block;
            font-size: 1.05rem;
        }
        .web-link a:hover {
            color: white;
        }
        .site-footer {
            background-color: #0f172a;
            color: #cbd5e1;
            padding: 40px 20px 20px;
            text-align: center;
        }
        .footer-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 25px;
            margin-bottom: 30px;
        }
        .footer-links a {
            color: #94a3b8;
        }
        .footer-links a:hover {
            color: white;
            text-decoration: underline;
        }
        .copyright {
            font-size: 0.9rem;
            color: #64748b;
            padding-top: 20px;
            border-top: 1px solid #334155;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .text-center {
            text-align: center;
        }
        .mb-4 {
            margin-bottom: 2rem;
        }
