        * { 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: #333;
            background: linear-gradient(135deg, #f5f7fa 0%, #e4edf5 100%);
            background-attachment: fixed;
        }
        img { max-width: 100%; height: auto; display: block; }
        h1, h2, h3, h4 { color: #0a2351; margin-bottom: 1rem; font-weight: 700; line-height: 1.3; }
        h1 { font-size: 2.8rem; border-bottom: 4px solid #1e90ff; padding-bottom: 0.5rem; }
        h2 { font-size: 2.2rem; margin-top: 2.5rem; padding-left: 0.75rem; border-left: 5px solid #ff6b35; }
        h3 { font-size: 1.8rem; color: #2d5a8c; margin-top: 2rem; }
        p { margin-bottom: 1.5rem; font-size: 1.1rem; text-align: justify; }
        a { color: #1e90ff; text-decoration: none; transition: color 0.3s, text-shadow 0.3s; }
        a:hover { color: #ff6b35; text-shadow: 0 0 1px rgba(255,107,53,0.3); }
        strong { color: #0a2351; }
        em { color: #555; }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }
        .site-header {
            background: linear-gradient(to right, #0a2351, #1a3d7c);
            color: white;
            padding: 1.2rem 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2rem;
            font-weight: 800;
            color: white;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo .fa-futbol { color: #1e90ff; animation: spin 15s linear infinite; }
        @keyframes spin { 100% { transform: rotate(360deg); } }
        .nav-desktop { display: flex; gap: 2rem; }
        .nav-desktop a {
            color: #d1e3ff;
            font-weight: 600;
            padding: 0.5rem 0;
            position: relative;
        }
        .nav-desktop a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: #1e90ff;
            transition: width 0.3s;
        }
        .nav-desktop a:hover::after { width: 100%; }
        .hamburger { display: none; font-size: 1.8rem; cursor: pointer; }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background: #0a2351;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 1rem;
            box-shadow: 0 10px 15px rgba(0,0,0,0.2);
        }
        .nav-mobile.active { display: flex; }
        .nav-mobile a { color: white; padding: 0.8rem; border-bottom: 1px solid #1a3d7c; }
        .breadcrumb {
            background: #e9f2ff;
            padding: 0.8rem 1.5rem;
            font-size: 0.95rem;
            border-radius: 0 0 8px 8px;
        }
        .breadcrumb a { color: #1a3d7c; }
        .breadcrumb span { color: #666; }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            padding: 2.5rem 0;
        }
        @media (max-width: 992px) {
            .main-content { grid-template-columns: 1fr; }
        }
        .article-content {
            background: white;
            padding: 2.5rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        }
        .intro-box {
            background: linear-gradient(to right, #f0f8ff, #e1f0ff);
            border-left: 6px solid #1e90ff;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 10px 10px 0;
        }
        .highlight {
            background: #fff9e6;
            border: 2px dashed #ffcc00;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 10px;
        }
        .match-schedule {
            background: #f8fafc;
            border: 1px solid #e2e8f0;
            border-radius: 10px;
            padding: 1.5rem;
            margin: 2rem 0;
            overflow-x: auto;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            min-width: 600px;
        }
        th, td { padding: 1rem; text-align: left; border-bottom: 1px solid #e2e8f0; }
        th { background: #1e90ff; color: white; font-weight: 600; }
        tr:hover { background: #f1f9ff; }
        .img-container {
            margin: 2.5rem 0;
            text-align: center;
        }
        .img-container img {
            border-radius: 12px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
            margin: 0 auto 0.5rem;
        }
        .caption { font-size: 0.95rem; color: #666; font-style: italic; }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .widget {
            background: white;
            padding: 1.8rem;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .widget h3 { font-size: 1.5rem; margin-top: 0; }
        .search-form, .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        input, textarea, select {
            padding: 0.9rem;
            border: 1px solid #cbd5e0;
            border-radius: 8px;
            font-family: inherit;
            font-size: 1rem;
            transition: border 0.3s, box-shadow 0.3s;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: #1e90ff;
            box-shadow: 0 0 0 3px rgba(30,144,255,0.2);
        }
        button, .btn {
            background: linear-gradient(to right, #1e90ff, #0a7cff);
            color: white;
            border: none;
            padding: 1rem 1.5rem;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        button:hover, .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 14px rgba(30,144,255,0.3);
        }
        .stars { display: flex; gap: 0.5rem; font-size: 1.8rem; }
        .stars i { color: #ffcc00; cursor: pointer; transition: transform 0.2s; }
        .stars i:hover { transform: scale(1.2); }
        .related-links { list-style: none; }
        .related-links li { margin-bottom: 0.8rem; padding-left: 1.2rem; position: relative; }
        .related-links li::before { content: '→'; position: absolute; left: 0; color: #1e90ff; }
        .footer-links {
            background: #0a2351;
            padding: 2.5rem 1.5rem;
            margin-top: 3rem;
        }
        .web-links-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.5rem;
            max-width: 1200px;
            margin: 0 auto 2rem;
        }
        .web-link {
            background: rgba(255,255,255,0.05);
            padding: 1.2rem;
            border-radius: 8px;
            border-left: 4px solid #1e90ff;
            transition: background 0.3s, transform 0.3s;
        }
        .web-link:hover {
            background: rgba(255,255,255,0.1);
            transform: translateX(5px);
        }
        .web-link a { color: #d1e3ff; font-weight: 500; }
        .site-footer {
            background: #06122e;
            color: #b0c4de;
            text-align: center;
            padding: 2rem;
            font-size: 0.95rem;
        }
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        .social-links { display: flex; justify-content: center; gap: 1.5rem; font-size: 1.3rem; }
        .social-links a { color: #b0c4de; }
        .social-links a:hover { color: #1e90ff; }
        @media (max-width: 768px) {
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            h3 { font-size: 1.5rem; }
            .header-content { flex-wrap: wrap; }
            .nav-desktop { display: none; }
            .hamburger { display: block; }
            .article-content { padding: 1.5rem; }
            .widget { padding: 1.5rem; }
            .main-content { gap: 1.5rem; }
        }
