        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, Roboto, 'Helvetica Neue', sans-serif;
            background: #f5f7fa;
            color: #1e293b;
            line-height: 1.7;
            -webkit-font-smoothing: antialiased;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        a {
            color: #0f3b6a;
            text-decoration: none;
            transition: color 0.25s ease, background 0.25s ease;
        }
        a:hover {
            color: #b91c1c;
        }
        ul,
        ol {
            padding-left: 1.5rem;
            margin-bottom: 1.2rem;
        }
        li {
            margin-bottom: 0.4rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            line-height: 1.3;
            color: #0b1f33;
            margin-top: 1.8rem;
            margin-bottom: 0.8rem;
            font-weight: 700;
        }
        h1 {
            font-size: 2.4rem;
            margin-top: 0.5rem;
            border-bottom: 4px solid #e11d48;
            padding-bottom: 0.5rem;
            display: inline-block;
        }
        h2 {
            font-size: 1.9rem;
            border-left: 5px solid #e11d48;
            padding-left: 0.9rem;
            margin-top: 2.5rem;
        }
        h3 {
            font-size: 1.4rem;
            color: #1e3a5f;
        }
        h4 {
            font-size: 1.15rem;
            color: #2c4a6e;
        }
        p {
            margin-bottom: 1.2rem;
            font-size: 1.05rem;
        }
        strong,
        b {
            color: #0b1f33;
            font-weight: 700;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.2rem;
        }
        .site-header {
            background: linear-gradient(135deg, #0b1f33 0%, #1a3a5c 100%);
            color: #fff;
            padding: 0.8rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.6rem 1rem;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            color: #fff;
            text-decoration: none;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #fbbf24, #f59e0b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 2px 12px rgba(251, 191, 36, 0.25);
            display: inline-flex;
            align-items: center;
            gap: 0.3rem;
        }
        .my-logo::before {
            content: "🏏";
            -webkit-text-fill-color: initial;
            font-size: 1.7rem;
        }
        .my-logo:hover {
            opacity: 0.9;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.2rem 0.4rem;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        .main-nav {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 0.3rem 1.2rem;
        }
        .main-nav a {
            color: #e0e7ef;
            font-weight: 500;
            font-size: 0.95rem;
            padding: 0.35rem 0.6rem;
            border-radius: 6px;
            transition: background 0.2s, color 0.2s;
            white-space: nowrap;
        }
        .main-nav a:hover {
            background: rgba(255, 255, 255, 0.12);
            color: #fbbf24;
        }
        .main-nav a.active {
            color: #fbbf24;
            border-bottom: 2px solid #fbbf24;
        }
        .breadcrumb {
            background: #e9edf3;
            padding: 0.6rem 0;
            font-size: 0.9rem;
            border-bottom: 1px solid #d4dce8;
        }
        .breadcrumb ol {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            padding: 0;
            margin: 0;
            gap: 0.3rem 0.6rem;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 0.6rem;
            color: #7c8ba0;
            font-weight: 600;
        }
        .breadcrumb a {
            color: #0f3b6a;
        }
        .breadcrumb a:hover {
            color: #b91c1c;
            text-decoration: underline;
        }
        .breadcrumb .current {
            color: #4a5a72;
            font-weight: 600;
        }
        .hero {
            background: linear-gradient(145deg, #0f2b44, #1c4a6e);
            color: #fff;
            padding: 3rem 0 2.8rem;
            margin-bottom: 2rem;
            border-radius: 0 0 40px 40px;
            text-align: center;
        }
        .hero h1 {
            color: #fff;
            border-bottom-color: #fbbf24;
            font-size: 2.6rem;
            margin-bottom: 0.8rem;
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 750px;
            margin: 0.5rem auto 1.2rem;
            color: #d0dfee;
        }
        .hero .last-updated {
            display: inline-block;
            background: rgba(255, 255, 255, 0.12);
            padding: 0.3rem 1.2rem;
            border-radius: 30px;
            font-size: 0.9rem;
            color: #f0d68a;
            margin-top: 0.5rem;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 320px;
            gap: 2.5rem;
            margin: 2rem 0;
        }
        .main-content {
            background: #fff;
            border-radius: 20px;
            padding: 2rem 2.2rem;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
        }
        .sidebar {
            background: #fff;
            border-radius: 20px;
            padding: 1.8rem 1.5rem;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
            height: fit-content;
            position: sticky;
            top: 100px;
        }
        .sidebar h3 {
            font-size: 1.2rem;
            margin-top: 0;
            border-bottom: 2px solid #e2e8f0;
            padding-bottom: 0.6rem;
            margin-bottom: 1rem;
        }
        .sidebar ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .sidebar ul li {
            padding: 0.5rem 0;
            border-bottom: 1px solid #f0f2f5;
        }
        .sidebar ul li a {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-weight: 500;
            color: #1e3a5f;
        }
        .sidebar ul li a::before {
            content: "🏏";
            font-size: 1rem;
        }
        .sidebar ul li a:hover {
            color: #b91c1c;
            padding-left: 4px;
        }
        .featured-image {
            margin: 1.8rem 0 2.2rem;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
        }
        .featured-image figcaption {
            background: #f1f4f9;
            padding: 0.6rem 1.2rem;
            font-size: 0.9rem;
            color: #3f5770;
            text-align: center;
            font-style: italic;
        }
        .search-box {
            background: #f0f4fa;
            border-radius: 14px;
            padding: 1.5rem 1.8rem;
            margin: 2rem 0 1.8rem;
            border: 1px solid #dde3ec;
        }
        .search-box form {
            display: flex;
            gap: 0.6rem;
            flex-wrap: wrap;
        }
        .search-box input[type="text"] {
            flex: 1;
            min-width: 180px;
            padding: 0.8rem 1.2rem;
            border: 2px solid #ccd7e6;
            border-radius: 40px;
            font-size: 1rem;
            outline: none;
            transition: border 0.25s;
            background: #fff;
        }
        .search-box input[type="text"]:focus {
            border-color: #0f3b6a;
        }
        .search-box button {
            background: #0b1f33;
            color: #fff;
            border: none;
            padding: 0.8rem 1.8rem;
            border-radius: 40px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.25s;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-box button:hover {
            background: #1a3a5c;
        }
        .rating-section {
            background: #faf8f4;
            border-radius: 14px;
            padding: 1.8rem 2rem;
            margin: 2rem 0;
            border: 1px solid #ede6d8;
        }
        .rating-section .stars {
            display: flex;
            gap: 0.5rem;
            font-size: 2rem;
            color: #f59e0b;
            cursor: pointer;
            flex-wrap: wrap;
        }
        .rating-section .stars i {
            transition: transform 0.2s, color 0.2s;
        }
        .rating-section .stars i:hover {
            transform: scale(1.3);
            color: #fbbf24;
        }
        .rating-section .stars i.selected {
            color: #f59e0b;
            text-shadow: 0 0 8px rgba(245, 158, 11, 0.4);
        }
        .rating-section form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-top: 0.8rem;
        }
        .rating-section form input[type="hidden"] {
            display: none;
        }
        .rating-section form button {
            align-self: flex-start;
            background: #0b1f33;
            color: #fff;
            border: none;
            padding: 0.6rem 2rem;
            border-radius: 40px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s;
        }
        .rating-section form button:hover {
            background: #1a3a5c;
        }
        .comments-section {
            background: #f7f9fc;
            border-radius: 14px;
            padding: 1.8rem 2rem;
            margin: 2rem 0;
            border: 1px solid #dde3ec;
        }
        .comments-section textarea {
            width: 100%;
            min-height: 120px;
            padding: 1rem 1.2rem;
            border: 2px solid #ccd7e6;
            border-radius: 12px;
            font-size: 1rem;
            font-family: inherit;
            resize: vertical;
            outline: none;
            transition: border 0.25s;
        }
        .comments-section textarea:focus {
            border-color: #0f3b6a;
        }
        .comments-section .comment-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .comments-section .comment-form input[type="text"] {
            padding: 0.8rem 1.2rem;
            border: 2px solid #ccd7e6;
            border-radius: 40px;
            font-size: 1rem;
            outline: none;
            transition: border 0.25s;
            max-width: 400px;
        }
        .comments-section .comment-form input[type="text"]:focus {
            border-color: #0f3b6a;
        }
        .comments-section .comment-form button {
            align-self: flex-start;
            background: #0b1f33;
            color: #fff;
            border: none;
            padding: 0.7rem 2.2rem;
            border-radius: 40px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s;
        }
        .comments-section .comment-form button:hover {
            background: #1a3a5c;
        }
        friend-link {
            display: block;
            background: #f0f4fa;
            border-radius: 14px;
            padding: 1.5rem 2rem;
            margin: 2.5rem 0 0.5rem;
            border: 1px solid #dde3ec;
        }
        friend-link::before {
            content: "🌐 Friend Links";
            display: block;
            font-weight: 700;
            font-size: 1.2rem;
            color: #0b1f33;
            margin-bottom: 0.8rem;
        }
        friend-link a {
            display: inline-block;
            margin: 0.3rem 1.2rem 0.3rem 0;
            padding: 0.2rem 0.8rem;
            background: #e4eaf3;
            border-radius: 30px;
            font-size: 0.95rem;
            font-weight: 500;
            transition: background 0.2s;
        }
        friend-link a:hover {
            background: #d0dbe9;
            color: #0b1f33;
        }
        .site-footer {
            background: #0b1f33;
            color: #cbd5e1;
            padding: 2.5rem 0 1.8rem;
            margin-top: 3rem;
            border-radius: 30px 30px 0 0;
        }
        .site-footer .footer-inner {
            display: flex;
            flex-direction: column;
            gap: 1.2rem;
        }
        .site-footer .copyright {
            text-align: center;
            font-size: 0.9rem;
            border-top: 1px solid #1e3a5f;
            padding-top: 1.5rem;
            margin-top: 0.8rem;
            color: #9aabbd;
        }
        .site-footer .copyright strong {
            color: #fbbf24;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
                order: 2;
            }
            .main-content {
                order: 1;
            }
            .hero h1 {
                font-size: 2rem;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            .main-nav {
                display: none;
                flex-direction: column;
                width: 100%;
                background: rgba(11, 31, 51, 0.98);
                padding: 1rem 0.8rem;
                border-radius: 12px;
                margin-top: 0.4rem;
                gap: 0.4rem;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 0.6rem 0.8rem;
                border-radius: 8px;
                width: 100%;
            }
            .header-inner {
                align-items: center;
            }
            .hero {
                padding: 2rem 0 1.8rem;
            }
            .hero h1 {
                font-size: 1.7rem;
            }
            .hero p {
                font-size: 1rem;
            }
            .main-content {
                padding: 1.2rem 1rem;
            }
            .sidebar {
                padding: 1.2rem 1rem;
            }
            .search-box form {
                flex-direction: column;
            }
            .search-box button {
                justify-content: center;
            }
            .rating-section .stars {
                font-size: 1.6rem;
            }
            .breadcrumb {
                font-size: 0.8rem;
                padding: 0.4rem 0;
            }
            .my-logo {
                font-size: 1.5rem;
            }
            .featured-image {
                margin: 1rem 0 1.5rem;
            }
            .container {
                padding: 0 0.8rem;
            }
        }
        @media (max-width: 480px) {
            h1 {
                font-size: 1.6rem;
            }
            h2 {
                font-size: 1.3rem;
            }
            h3 {
                font-size: 1.1rem;
            }
            p {
                font-size: 0.98rem;
            }
            .hero h1 {
                font-size: 1.4rem;
            }
            .main-content {
                padding: 0.8rem 0.8rem;
            }
            .rating-section,
            .comments-section,
            .search-box {
                padding: 1rem 1rem;
            }
            friend-link {
                padding: 1rem;
            }
            .breadcrumb ol {
                gap: 0.2rem 0.4rem;
                font-size: 0.75rem;
            }
        }
        .text-accent {
            color: #e11d48;
        }
        .text-gold {
            color: #f59e0b;
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .mt-2 {
            margin-top: 2rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .mb-2 {
            margin-bottom: 2rem;
        }
        .flex-center {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            flex-wrap: wrap;
        }
        .pill {
            display: inline-block;
            background: #eef2f6;
            padding: 0.2rem 1rem;
            border-radius: 30px;
            font-size: 0.85rem;
            font-weight: 600;
            color: #1e3a5f;
        }
        .pill.gold {
            background: #fef3c7;
            color: #92400e;
        }
        .pill.red {
            background: #fee2e2;
            color: #991b1b;
        }
        .divider {
            border: none;
            border-top: 2px dashed #d4dce8;
            margin: 2rem 0;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 1.5rem 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.95rem;
        }
        table th {
            background: #0b1f33;
            color: #fff;
            padding: 0.7rem 1rem;
            text-align: left;
        }
        table td {
            padding: 0.6rem 1rem;
            border-bottom: 1px solid #e2e8f0;
        }
        table tr:nth-child(even) {
            background: #f8fafc;
        }
        .blockquote {
            background: #f0f4fa;
            border-left: 5px solid #e11d48;
            padding: 1.2rem 1.8rem;
            border-radius: 0 12px 12px 0;
            margin: 1.5rem 0;
            font-style: italic;
            color: #2c3e50;
        }
        .blockquote strong {
            color: #0b1f33;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 1rem;
            margin: 1.5rem 0;
        }
        .stat-card {
            background: #f8fafc;
            border-radius: 12px;
            padding: 1rem 1.2rem;
            text-align: center;
            border: 1px solid #e2e8f0;
        }
        .stat-card .num {
            font-size: 1.8rem;
            font-weight: 800;
            color: #0b1f33;
        }
        .stat-card .label {
            font-size: 0.85rem;
            color: #5a6f88;
        }
