        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', 'Roboto', system-ui, -apple-system, sans-serif;
            background: #f4f7fc;
            color: #1a2639;
            line-height: 1.7;
            padding: 0 1rem;
        }
        a {
            color: #0046ad;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover,
        a:focus-visible {
            color: #c8a44e;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            background: #ffffff;
            border-radius: 24px 24px 0 0;
            box-shadow: 0 8px 40px rgba(0, 0, 0, 0.06);
            padding: 1.5rem 2rem 2rem;
        }
        @media (max-width: 640px) {
            body {
                padding: 0 0.5rem;
            }
            .container {
                padding: 1rem 1rem 1.5rem;
                border-radius: 16px 16px 0 0;
            }
        }
        .site-header {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding: 0.75rem 0 1rem;
            border-bottom: 2px solid #e9edf4;
            position: relative;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: -0.02em;
            background: linear-gradient(135deg, #003580, #1e5ba8);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: inline-flex;
            align-items: center;
            gap: 0.3rem;
        }
        .my-logo i {
            font-size: 1.6rem;
            background: none;
            -webkit-text-fill-color: #c8a44e;
            color: #c8a44e;
        }
        .my-logo small {
            font-size: 0.7rem;
            font-weight: 400;
            letter-spacing: 0.3px;
            -webkit-text-fill-color: #4a5a72;
            color: #4a5a72;
            display: block;
            margin-top: -2px;
        }
        .my-logo a {
            text-decoration: none;
            display: inline-flex;
            flex-direction: column;
            line-height: 1.2;
        }
        .my-logo a:hover {
            text-decoration: none;
        }
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 6px 4px;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .hamburger span {
            display: block;
            width: 28px;
            height: 3px;
            background: #1a2639;
            border-radius: 4px;
            transition: 0.3s;
        }
        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 6px);
        }
        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }
        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -6px);
        }
        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }
        }
        .nav-wrapper {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .main-nav {
            display: flex;
            flex-wrap: wrap;
            gap: 0.25rem 1.2rem;
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .main-nav a {
            font-weight: 500;
            font-size: 0.95rem;
            padding: 0.3rem 0;
            position: relative;
            color: #1a2639;
        }
        .main-nav a::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0%;
            height: 2px;
            background: #c8a44e;
            transition: width 0.25s ease;
        }
        .main-nav a:hover::after,
        .main-nav a:focus-visible::after {
            width: 100%;
        }
        @media (max-width: 768px) {
            .nav-wrapper {
                width: 100%;
                flex-direction: column;
                align-items: stretch;
            }
            .main-nav {
                display: none;
                flex-direction: column;
                gap: 0.2rem;
                padding: 1rem 0 0.5rem;
                border-top: 1px solid #e9edf4;
                margin-top: 0.75rem;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 0.6rem 0.5rem;
                border-radius: 8px;
            }
            .main-nav a:hover {
                background: #f0f4fe;
            }
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 0.4rem 0.8rem;
            padding: 0.6rem 0 0.4rem;
            font-size: 0.85rem;
            color: #5a6a7e;
        }
        .breadcrumb a {
            color: #0046ad;
        }
        .breadcrumb span.sep {
            color: #b0bcca;
            font-weight: 300;
        }
        .breadcrumb .current {
            font-weight: 500;
            color: #1a2639;
        }
        h1 {
            font-size: 2.4rem;
            font-weight: 800;
            line-height: 1.2;
            margin: 1.2rem 0 0.6rem;
            color: #001a3a;
            letter-spacing: -0.02em;
        }
        h2 {
            font-size: 1.8rem;
            font-weight: 700;
            margin: 2.4rem 0 1rem;
            padding-bottom: 0.4rem;
            border-bottom: 3px solid #e9edf4;
            color: #002856;
        }
        h3 {
            font-size: 1.35rem;
            font-weight: 600;
            margin: 1.8rem 0 0.8rem;
            color: #00315e;
        }
        h4 {
            font-size: 1.1rem;
            font-weight: 600;
            margin: 1.4rem 0 0.5rem;
            color: #1a4a7a;
        }
        p {
            margin-bottom: 1.1rem;
            color: #2c3a4e;
        }
        .lead {
            font-size: 1.15rem;
            color: #1a2a44;
            font-weight: 400;
            border-left: 4px solid #c8a44e;
            padding-left: 1.2rem;
            margin: 1.4rem 0 1.8rem;
            background: #f9fafc;
            border-radius: 0 8px 8px 0;
            padding: 0.8rem 1.2rem;
        }
        @media (max-width: 640px) {
            h1 {
                font-size: 1.7rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            h3 {
                font-size: 1.15rem;
            }
            h4 {
                font-size: 1rem;
            }
            .lead {
                font-size: 1rem;
                padding: 0.6rem 1rem;
            }
        }
        .featured-image {
            margin: 1.8rem 0 2.2rem;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        }
        .featured-image img {
            width: 100%;
            max-height: 460px;
            object-fit: cover;
        }
        .featured-image figcaption {
            padding: 0.75rem 1rem;
            background: #f0f4fe;
            font-size: 0.85rem;
            color: #3a4a62;
            font-style: italic;
        }
        .standings-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.5rem 0 2rem;
            font-size: 0.95rem;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
        }
        .standings-table thead {
            background: #002856;
            color: #ffffff;
        }
        .standings-table th {
            padding: 0.75rem 0.8rem;
            text-align: left;
            font-weight: 600;
            font-size: 0.85rem;
            letter-spacing: 0.3px;
        }
        .standings-table td {
            padding: 0.65rem 0.8rem;
            border-bottom: 1px solid #eef2f7;
        }
        .standings-table tbody tr:hover {
            background: #f6f9ff;
        }
        .standings-table .pos {
            font-weight: 700;
            color: #001a3a;
            width: 36px;
        }
        .standings-table .team {
            font-weight: 600;
        }
        .standings-table .pts {
            font-weight: 700;
            color: #c8a44e;
        }
        @media (max-width: 600px) {
            .standings-table {
                font-size: 0.78rem;
            }
            .standings-table th,
            .standings-table td {
                padding: 0.4rem 0.3rem;
            }
        }
        .form-card {
            background: #f8faff;
            border: 1px solid #e2e9f2;
            border-radius: 16px;
            padding: 1.6rem 1.8rem;
            margin: 2rem 0 1.5rem;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.02);
        }
        .form-card h3 {
            margin-top: 0;
            font-size: 1.3rem;
        }
        .form-card label {
            display: block;
            font-weight: 500;
            margin: 0.8rem 0 0.3rem;
            color: #1a2a44;
        }
        .form-card input,
        .form-card textarea,
        .form-card select {
            width: 100%;
            padding: 0.7rem 1rem;
            border: 1px solid #d0dae8;
            border-radius: 10px;
            font-size: 0.95rem;
            background: #ffffff;
            transition: border 0.2s, box-shadow 0.2s;
            font-family: inherit;
        }
        .form-card input:focus,
        .form-card textarea:focus,
        .form-card select:focus {
            outline: none;
            border-color: #0046ad;
            box-shadow: 0 0 0 3px rgba(0, 70, 173, 0.12);
        }
        .form-card textarea {
            min-height: 100px;
            resize: vertical;
        }
        .form-card .btn {
            background: #002856;
            color: #ffffff;
            border: none;
            padding: 0.75rem 2rem;
            border-radius: 40px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            margin-top: 1rem;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        .form-card .btn:hover {
            background: #c8a44e;
            color: #001a3a;
            transform: translateY(-1px);
        }
        .form-card .btn:active {
            transform: scale(0.97);
        }
        .form-card .rating-stars {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 0.2rem;
            font-size: 1.6rem;
            margin: 0.4rem 0 0.2rem;
        }
        .form-card .rating-stars input {
            display: none;
        }
        .form-card .rating-stars label {
            cursor: pointer;
            color: #d0dae8;
            transition: color 0.15s;
            margin: 0;
            font-size: 1.6rem;
        }
        .form-card .rating-stars input:checked~label,
        .form-card .rating-stars label:hover,
        .form-card .rating-stars label:hover~label {
            color: #f5b342;
        }
        @media (max-width: 640px) {
            .form-card {
                padding: 1.2rem 1rem;
            }
        }
        .context-link {
            font-weight: 500;
            padding: 0.1rem 0.2rem;
            background: linear-gradient(to right, #f0f4fe, transparent);
            border-radius: 4px;
        }
        friend-link {
            display: block;
            background: #f0f4fe;
            border-radius: 16px;
            padding: 1.5rem 1.8rem;
            margin: 2rem 0 0.5rem;
            border: 1px solid #dce4f0;
        }
        friend-link h3 {
            margin: 0 0 0.8rem;
            font-size: 1.1rem;
            color: #001a3a;
        }
        friend-link ul {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem 1.4rem;
            padding: 0;
            margin: 0;
        }
        friend-link li a {
            font-weight: 500;
            font-size: 0.92rem;
            color: #0046ad;
        }
        friend-link li a:hover {
            color: #c8a44e;
        }
        .site-footer {
            background: #001a3a;
            color: #cdd9ec;
            padding: 2rem 2rem 1.5rem;
            border-radius: 0 0 24px 24px;
            max-width: 1200px;
            margin: 0 auto 1.5rem;
            font-size: 0.88rem;
        }
        .site-footer .copyright {
            text-align: center;
            border-top: 1px solid #2a4060;
            padding-top: 1.2rem;
            margin-top: 1.2rem;
            color: #8a9eb8;
            font-size: 0.82rem;
        }
        .site-footer a {
            color: #b8ccf0;
        }
        .site-footer a:hover {
            color: #c8a44e;
        }
        .footer-links {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem 2rem;
            justify-content: center;
            list-style: none;
            padding: 0;
            margin: 0 0 0.4rem;
        }
        .footer-links a {
            font-weight: 400;
        }
        @media (max-width: 640px) {
            .site-footer {
                padding: 1.5rem 1rem 1rem;
                border-radius: 0 0 16px 16px;
            }
            .footer-links {
                flex-direction: column;
                align-items: center;
                gap: 0.4rem;
            }
        }
        .last-updated {
            display: inline-block;
            background: #f0f4fe;
            padding: 0.3rem 1rem;
            border-radius: 40px;
            font-size: 0.8rem;
            color: #3a5a7a;
            font-weight: 500;
            margin-bottom: 0.8rem;
        }
        .highlight-box {
            background: #f9f5eb;
            border-left: 4px solid #c8a44e;
            padding: 1rem 1.4rem;
            border-radius: 0 12px 12px 0;
            margin: 1.5rem 0;
        }
        .emoji-big {
            font-size: 1.3rem;
        }
        .grid-2 {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.6rem;
            margin: 1.2rem 0;
        }
        @media (max-width: 700px) {
            .grid-2 {
                grid-template-columns: 1fr;
                gap: 1rem;
            }
        }
        .long-read p {
            max-width: 780px;
        }
        .long-read {
            max-width: 880px;
        }
        .back-top {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            background: #002856;
            color: #fff;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
            transition: background 0.2s, transform 0.2s;
            z-index: 99;
            border: none;
            cursor: pointer;
            font-size: 1.2rem;
        }
        .back-top:hover {
            background: #c8a44e;
            color: #001a3a;
            transform: translateY(-3px);
        }
        @media (max-width: 640px) {
            .back-top {
                bottom: 1.2rem;
                right: 1.2rem;
                width: 38px;
                height: 38px;
                font-size: 1rem;
            }
        }
