* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f8f9fa;
            max-width: 100%;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: #1a5fb4;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #e5a50a;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0,0,0,0);
            border: 0;
        }
        header {
            background: linear-gradient(135deg, #0c4b8a 0%, #1a5fb4 100%);
            color: white;
            box-shadow: 0 2px 15px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: 800;
            display: flex;
            align-items: center;
        }
        .logo a {
            color: white;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo-icon {
            color: #e5a50a;
        }
        .logo:hover .logo-icon {
            transform: rotate(15deg);
            transition: transform 0.3s ease;
        }
        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        nav a {
            color: white;
            font-weight: 600;
            padding: 5px 0;
            position: relative;
        }
        nav a:hover {
            color: #e5a50a;
        }
        nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: #e5a50a;
            transition: width 0.3s ease;
        }
        nav a:hover::after {
            width: 100%;
        }
        .breadcrumb {
            background-color: #e9ecef;
            padding: 10px 0;
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
            gap: 5px;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '>';
            margin-left: 5px;
            color: #6c757d;
        }
        .search-bar {
            background-color: #e9ecef;
            padding: 30px 0;
            text-align: center;
        }
        .search-form {
            max-width: 600px;
            margin: 0 auto;
            display: flex;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            border-radius: 50px;
            overflow: hidden;
        }
        .search-input {
            flex-grow: 1;
            padding: 15px 25px;
            border: none;
            font-size: 1rem;
        }
        .search-btn {
            background-color: #e5a50a;
            color: white;
            border: none;
            padding: 0 30px;
            cursor: pointer;
            font-weight: 600;
            transition: background-color 0.3s ease;
        }
        .search-btn:hover {
            background-color: #d19407;
        }
        main {
            padding: 40px 0;
            background-color: white;
            box-shadow: 0 0 30px rgba(0,0,0,0.05);
            border-radius: 8px;
            margin: 20px auto;
        }
        .article-header {
            text-align: center;
            margin-bottom: 40px;
            padding-bottom: 20px;
            border-bottom: 2px solid #e9ecef;
        }
        .article-header h1 {
            font-size: 2.5rem;
            color: #0c4b8a;
            margin-bottom: 15px;
            line-height: 1.2;
        }
        .meta {
            color: #6c757d;
            font-size: 0.95rem;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
            margin-top: 15px;
        }
        .content {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .content-section {
            margin-bottom: 50px;
        }
        h2 {
            font-size: 1.8rem;
            color: #1a5fb4;
            margin: 30px 0 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid #e9ecef;
        }
        h3 {
            font-size: 1.4rem;
            color: #333;
            margin: 25px 0 15px;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.05rem;
            text-align: justify;
        }
        .highlight {
            background-color: #fff9e6;
            padding: 25px;
            border-left: 4px solid #e5a50a;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }
        .fixture-table {
            width: 100%;
            border-collapse: collapse;
            margin: 25px 0;
            box-shadow: 0 0 10px rgba(0,0,0,0.05);
        }
        .fixture-table th,
        .fixture-table td {
            padding: 15px;
            text-align: left;
            border-bottom: 1px solid #e9ecef;
        }
        .fixture-table th {
            background-color: #1a5fb4;
            color: white;
            font-weight: 600;
        }
        .fixture-table tr:hover {
            background-color: #f8f9fa;
        }
        .feature-img {
            margin: 30px 0;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        .img-caption {
            text-align: center;
            font-style: italic;
            color: #6c757d;
            margin-top: 8px;
            font-size: 0.9rem;
        }
        .insight-box {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            margin: 30px 0;
        }
        .insight-card {
            background: white;
            border-radius: 8px;
            padding: 25px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            border-top: 4px solid #e5a50a;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .insight-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        .insight-card h4 {
            color: #1a5fb4;
            margin-bottom: 10px;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .related-links {
            background-color: #f8f9fa;
            padding: 20px;
            border-radius: 8px;
            margin: 30px 0;
        }
        .related-links h4 {
            margin-bottom: 15px;
            color: #333;
        }
        .related-links ul {
            list-style: none;
            column-count: 2;
            column-gap: 30px;
        }
        .related-links li {
            margin-bottom: 10px;
            break-inside: avoid;
        }
        .user-interaction {
            margin-top: 50px;
            border-top: 2px solid #e9ecef;
            padding-top: 40px;
        }
        .interaction-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
        }
        .rating-form, .comment-form {
            background-color: #f8f9fa;
            padding: 25px;
            border-radius: 8px;
        }
        .form-group {
            margin-bottom: 20px;
        }
        label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #333;
        }
        input, textarea, select {
            width: 100%;
            padding: 12px;
            border: 1px solid #ced4da;
            border-radius: 4px;
            font-size: 1rem;
            font-family: inherit;
        }
        textarea {
            min-height: 120px;
            resize: vertical;
        }
        .stars {
            display: flex;
            gap: 10px;
            direction: rtl;
        }
        .star-input {
            display: none;
        }
        .star-label {
            font-size: 1.8rem;
            color: #ddd;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star-input:checked ~ .star-label,
        .star-label:hover,
        .star-label:hover ~ .star-label {
            color: #e5a50a;
        }
        .submit-btn {
            background-color: #1a5fb4;
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 4px;
            cursor: pointer;
            font-weight: 600;
            transition: background-color 0.3s ease;
        }
        .submit-btn:hover {
            background-color: #0c4b8a;
        }
        footer {
            background-color: #2d3748;
            color: #cbd5e0;
            padding: 40px 0 20px;
            margin-top: 50px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 30px;
        }
        .footer-section h4 {
            color: white;
            margin-bottom: 20px;
            font-size: 1.2rem;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 10px;
        }
        .footer-links a {
            color: #cbd5e0;
        }
        .footer-links a:hover {
            color: #e5a50a;
        }
        friend-link {
            display: block;
            background-color: #4a5568;
            padding: 15px;
            border-radius: 6px;
            margin-bottom: 15px;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #4a5568;
            font-size: 0.9rem;
            color: #a0aec0;
        }
        @media (max-width: 992px) {
            .interaction-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            .related-links ul {
                column-count: 1;
            }
        }
        @media (max-width: 768px) {
            .mobile-toggle {
                display: block;
            }
            nav {
                display: none;
                width: 100%;
                position: absolute;
                top: 100%;
                left: 0;
                background-color: #0c4b8a;
                padding: 20px;
                box-shadow: 0 5px 10px rgba(0,0,0,0.1);
            }
            nav.active {
                display: block;
            }
            nav ul {
                flex-direction: column;
                gap: 15px;
            }
            .header-top {
                flex-wrap: wrap;
            }
            .article-header h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            .insight-box {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 480px) {
            .meta {
                flex-direction: column;
                gap: 10px;
                align-items: center;
            }
            .content {
                padding: 0 10px;
            }
        }
