        * {
            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.7;
            color: #333;
            background-color: #f9f9f9;
            max-width: 100vw;
            overflow-x: hidden;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            color: #0066cc;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #003366;
        }
        ul, ol {
            padding-left: 1.5em;
            margin: 1em 0;
        }
        h1, h2, h3, h4 {
            font-family: Georgia, 'Times New Roman', Times, serif;
            color: #0a1c3d;
            margin-top: 1.5em;
            margin-bottom: 0.75em;
            line-height: 1.3;
        }
        h1 {
            font-size: 2.5rem;
            border-bottom: 3px solid #003366;
            padding-bottom: 0.5rem;
        }
        h2 {
            font-size: 2rem;
            color: #00509e;
        }
        h3 {
            font-size: 1.6rem;
        }
        p {
            margin-bottom: 1.2em;
            text-align: justify;
        }
        .lead {
            font-size: 1.25rem;
            font-weight: 500;
            color: #444;
            margin-bottom: 2em;
            padding: 1em;
            background-color: #e8f0fe;
            border-left: 4px solid #003366;
        }
        .highlight {
            background-color: #fffacd;
            padding: 0.2em 0.4em;
            border-radius: 3px;
            font-weight: 600;
        }
        .term {
            font-style: italic;
            color: #555;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        main.container {
            background-color: #fff;
            padding: 30px;
            box-shadow: 0 0 20px rgba(0,0,0,0.05);
            margin-top: 20px;
            margin-bottom: 40px;
            border-radius: 8px;
        }
        header {
            background: linear-gradient(to right, #0a1c3d, #003366);
            color: white;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            color: white;
            font-size: 2rem;
            font-weight: 800;
            letter-spacing: 1px;
            text-transform: uppercase;
        }
        .logo span {
            color: #ffcc00;
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
        }
        .nav-links li {
            margin-left: 2rem;
        }
        .nav-links a {
            color: #fff;
            font-weight: 600;
            padding: 0.5rem 0;
            position: relative;
        }
        .nav-links a:hover {
            color: #ffcc00;
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background-color: #ffcc00;
            transition: width 0.3s ease;
        }
        .nav-links a:hover::after {
            width: 100%;
        }
        .burger {
            display: none;
            cursor: pointer;
            font-size: 1.8rem;
            color: white;
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.9rem;
            background-color: #f0f4f8;
            margin-top: 0;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            padding-left: 0;
            margin: 0;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '/';
            margin: 0 10px;
            color: #777;
        }
        .breadcrumb a {
            color: #555;
        }
        .breadcrumb a:hover {
            color: #003366;
        }
        .hero {
            margin: 2em 0;
            text-align: center;
        }
        .hero img {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .img-caption {
            text-align: center;
            font-style: italic;
            color: #666;
            margin-top: 0.5em;
            font-size: 0.9rem;
        }
        .interactive-module {
            background-color: #f8f9fa;
            padding: 2rem;
            border-radius: 10px;
            border: 1px solid #dee2e6;
            margin: 3rem 0;
        }
        .module-title {
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            color: #003366;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .module-title i {
            color: #ffcc00;
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }
        .form-control {
            width: 100%;
            padding: 0.8rem 1rem;
            border: 1px solid #ccc;
            border-radius: 5px;
            font-size: 1rem;
            transition: border-color 0.3s ease;
        }
        .form-control:focus {
            border-color: #0066cc;
            outline: none;
            box-shadow: 0 0 0 3px rgba(0,102,204,0.2);
        }
        textarea.form-control {
            min-height: 120px;
            resize: vertical;
        }
        .rating-stars {
            display: flex;
            gap: 10px;
            font-size: 1.8rem;
            color: #ddd;
            margin: 0.5rem 0;
        }
        .rating-stars label {
            cursor: pointer;
        }
        .rating-stars input {
            display: none;
        }
        .rating-stars input:checked ~ label,
        .rating-stars label:hover,
        .rating-stars label:hover ~ label {
            color: #ffcc00;
        }
        .btn {
            display: inline-block;
            background-color: #003366;
            color: white;
            padding: 0.8rem 2rem;
            border: none;
            border-radius: 5px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.3s ease, transform 0.2s ease;
        }
        .btn:hover {
            background-color: #00509e;
            transform: translateY(-2px);
        }
        .btn i {
            margin-right: 8px;
        }
        .match-report {
            margin: 3rem 0;
            padding: 2rem;
            border: 2px solid #e0e0e0;
            border-radius: 10px;
            background-color: #fdfdfd;
        }
        .match-header {
            display: grid;
            grid-template-columns: 1fr auto 1fr;
            align-items: center;
            gap: 2rem;
            margin-bottom: 2rem;
            text-align: center;
        }
        .team {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        .team-logo {
            font-size: 3rem;
            color: #003366;
            margin-bottom: 0.5rem;
        }
        .team-name {
            font-size: 1.8rem;
            font-weight: 700;
        }
        .score {
            font-size: 3rem;
            font-weight: 900;
            color: #d00;
            background-color: #fff0f0;
            padding: 0 1rem;
            border-radius: 8px;
        }
        .footer-links {
            background-color: #eef2f7;
            padding: 3rem 0;
            margin-top: 4rem;
        }
        .web-links-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.5rem;
            margin-bottom: 2rem;
        }
        .web-link {
            background: white;
            padding: 1.2rem;
            border-radius: 8px;
            box-shadow: 0 3px 8px rgba(0,0,0,0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .web-link:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 15px rgba(0,0,0,0.1);
        }
        .web-link a {
            color: #003366;
            font-weight: 600;
            display: block;
            font-size: 1.05rem;
        }
        footer {
            background-color: #0a1c3d;
            color: #ccc;
            padding: 3rem 0 2rem;
            text-align: center;
        }
        .footer-content {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        .copyright {
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid #2a4365;
            width: 100%;
            font-size: 0.9rem;
            color: #8ca3c7;
        }
        @media (max-width: 992px) {
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            .nav-links {
                position: fixed;
                top: 70px;
                right: -100%;
                width: 70%;
                height: calc(100vh - 70px);
                background-color: #003366;
                flex-direction: column;
                align-items: flex-start;
                padding: 2rem;
                transition: right 0.5s ease;
                box-shadow: -5px 0 15px rgba(0,0,0,0.2);
            }
            .nav-links.active {
                right: 0;
            }
            .nav-links li {
                margin: 1rem 0;
                width: 100%;
            }
            .nav-links a {
                font-size: 1.2rem;
                display: block;
                padding: 0.8rem 0;
            }
            .burger {
                display: block;
            }
            .match-header {
                grid-template-columns: 1fr;
                gap: 1rem;
            }
            .score {
                order: -1;
                font-size: 2.5rem;
            }
        }
        @media (max-width: 768px) {
            .container {
                padding: 0 15px;
            }
            main.container {
                padding: 20px;
            }
            .header-container {
                flex-direction: column;
                align-items: flex-start;
            }
            .logo {
                margin-bottom: 1rem;
            }
            .hero img {
                max-height: 300px;
            }
            .web-links-container {
                grid-template-columns: 1fr;
            }
        }
