        * { 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-color: #f8f9fa;
            max-width: 100vw;
            overflow-x: hidden;
        }
        img { max-width: 100%; height: auto; display: block; }
        h1, h2, h3, h4 { color: #0a3d62; font-weight: 800; margin-bottom: 1rem; line-height: 1.3; }
        h1 { font-size: 2.8rem; border-left: 8px solid #f0932b; padding-left: 1.5rem; margin-top: 1.5rem; }
        h2 { font-size: 2.2rem; border-bottom: 3px solid #6ab04c; padding-bottom: 0.5rem; }
        h3 { font-size: 1.8rem; color: #1e3799; }
        h4 { font-size: 1.4rem; color: #4a69bd; }
        p { margin-bottom: 1.5rem; font-size: 1.1rem; }
        .lead { font-size: 1.3rem; font-weight: 500; color: #555; }
        a { color: #1e3799; text-decoration: none; transition: color 0.3s ease; }
        a:hover { color: #f0932b; text-decoration: underline; }
        strong { color: #0a3d62; font-weight: 700; }
        em { color: #6D214F; }
        .highlight { background-color: #fff9c4; padding: 0.2rem 0.5rem; border-radius: 3px; }
        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 2rem;
        }
        @media (max-width: 768px) {
            .container { padding: 0 1rem; }
            h1 { font-size: 2.2rem; padding-left: 1rem; }
            h2 { font-size: 1.8rem; }
            h3 { font-size: 1.5rem; }
        }
        header { background: linear-gradient(135deg, #0a3d62 0%, #1e3799 100%); color: white; padding: 1rem 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: 2.2rem; font-weight: 900; color: #fdcb6e; text-transform: uppercase; letter-spacing: 1px; }
        .logo a:hover { color: #ffeaa7; text-decoration: none; }
        nav ul { display: flex; list-style: none; }
        nav li { margin-left: 2rem; }
        nav a { color: white; font-weight: 600; font-size: 1.05rem; padding: 0.5rem 0; }
        .hamburger { display: none; font-size: 1.8rem; background: none; border: none; color: white; cursor: pointer; }
        @media (max-width: 992px) {
            .hamburger { display: block; }
            nav ul { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; width: 100%; background: #0a3d62; padding: 1rem 0; box-shadow: 0 5px 10px rgba(0,0,0,0.2); }
            nav ul.active { display: flex; }
            nav li { margin: 0; text-align: center; padding: 0.8rem 0; border-bottom: 1px solid #1e5799; }
        }
        .breadcrumb { padding: 1rem 0; font-size: 0.95rem; background-color: #edf2f7; }
        .breadcrumb a { color: #555; }
        .breadcrumb a:hover { color: #0a3d62; }
        .breadcrumb span { color: #777; }
        main { display: grid; grid-template-columns: 1fr 300px; gap: 3rem; padding: 2.5rem 0; }
        @media (max-width: 992px) { main { grid-template-columns: 1fr; } }
        article { background: white; padding: 2.5rem; border-radius: 12px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
        section { margin-bottom: 3rem; }
        .intro { background: linear-gradient(to right, #e3f2fd, #f3e5f5); padding: 2rem; border-radius: 10px; margin-bottom: 2.5rem; }
        aside { background: white; padding: 2rem; border-radius: 12px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); align-self: start; }
        .widget { margin-bottom: 2.5rem; }
        .widget h3 { font-size: 1.4rem; margin-bottom: 1.2rem; color: #0a3d62; }
        .feature-box { background: #f8f9fa; border-left: 5px solid #6ab04c; padding: 1.5rem; margin: 2rem 0; border-radius: 0 8px 8px 0; }
        form { display: flex; flex-direction: column; gap: 1rem; }
        input, textarea, select { padding: 0.9rem; border: 2px solid #ddd; border-radius: 8px; font-size: 1rem; transition: border 0.3s; }
        input:focus, textarea:focus, select:focus { outline: none; border-color: #6ab04c; }
        button, .btn {
            background: linear-gradient(to right, #1e3799, #0a3d62);
            color: white;
            border: none;
            padding: 1rem 1.8rem;
            border-radius: 8px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: center;
            display: inline-block;
        }
        button:hover, .btn:hover {
            background: linear-gradient(to right, #f0932b, #eb4d4b);
            transform: translateY(-3px);
            box-shadow: 0 7px 14px rgba(240, 147, 43, 0.3);
            text-decoration: none;
        }
        .rating { display: flex; gap: 0.5rem; margin: 1rem 0; }
        .rating i { color: #ddd; cursor: pointer; font-size: 1.5rem; transition: color 0.2s; }
        .rating i:hover, .rating i.active { color: #fdcb6e; }
        .fixture-table { width: 100%; border-collapse: collapse; margin: 2rem 0; }
        .fixture-table th, .fixture-table td { padding: 1.2rem 1rem; text-align: left; border-bottom: 1px solid #e0e0e0; }
        .fixture-table th { background-color: #0a3d62; color: white; font-weight: 700; }
        .fixture-table tr:hover { background-color: #f1f8e9; }
        .match-time { font-weight: 700; color: #d63031; }
        .featured-img { margin: 2.5rem 0; border-radius: 10px; overflow: hidden; box-shadow: 0 10px 20px rgba(0,0,0,0.1); }
        .caption { text-align: center; font-style: italic; color: #666; padding: 0.8rem; background: #f8f9fa; }
        .link-list { list-style: none; padding: 1rem; background: #f1f8ff; border-radius: 10px; }
        .link-list li { padding: 0.7rem 0; border-bottom: 1px dashed #bbdefb; }
        .link-list li:last-child { border-bottom: none; }
        footer { background: #0a3d62; color: #dfe6e9; padding: 3rem 0 1.5rem; margin-top: 3rem; }
        .footer-content { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2.5rem; }
        .footer-col h4 { color: #fdcb6e; margin-bottom: 1.5rem; font-size: 1.2rem; }
        .footer-col ul { list-style: none; }
        .footer-col li { margin-bottom: 0.8rem; }
        .footer-col a { color: #b2bec3; }
        .footer-col a:hover { color: #fdcb6e; }
        friend-link { display: block; font-style: italic; color: #74b9ff; margin: 0.5rem 0; }
        .copyright { text-align: center; padding-top: 2rem; margin-top: 2rem; border-top: 1px solid #1e5799; color: #95a5a6; font-size: 0.9rem; }
        @media (max-width: 768px) {
            .footer-content { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 576px) {
            .footer-content { grid-template-columns: 1fr; }
        }
        .text-center { text-align: center; }
        .mb-3 { margin-bottom: 3rem; }
        .mt-3 { margin-top: 3rem; }
        .updated { font-size: 0.95rem; color: #777; background: #fff9c4; padding: 0.5rem 1rem; border-radius: 20px; display: inline-block; margin-bottom: 1.5rem; }
        .emoji { font-size: 1.3rem; }
