        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        :root {
            --primary: #1a2a3a;
            --primary-light: #2c3e50;
            --accent: #e74c3c;
            --accent-hover: #c0392b;
            --gold: #f1c40f;
            --gold-light: #f7dc6f;
            --bg: #f4f6f9;
            --card: #ffffff;
            --text: #1e2a36;
            --text-light: #5a6a7a;
            --border: #dce1e8;
            --radius: 12px;
            --shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
            --font: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, Roboto, 'Helvetica Neue', sans-serif;
            --transition: 0.25s ease;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: var(--font);
            background: var(--bg);
            color: var(--text);
            line-height: 1.7;
            overflow-x: hidden;
            padding: 0;
            margin: 0;
        }
        a {
            color: var(--accent);
            text-decoration: none;
            transition: color var(--transition);
        }
        a:hover,
        a:focus-visible {
            color: var(--accent-hover);
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: var(--radius);
        }
        ul,
        ol {
            padding-left: 1.5rem;
            margin-bottom: 1rem;
        }
        li {
            margin-bottom: 0.4rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.3;
            color: var(--primary);
            margin-top: 2rem;
            margin-bottom: 0.8rem;
        }
        h1 {
            font-size: 2.6rem;
            margin-top: 0.5rem;
            margin-bottom: 1.2rem;
            letter-spacing: -0.02em;
        }
        h2 {
            font-size: 2rem;
            border-bottom: 3px solid var(--accent);
            padding-bottom: 0.4rem;
            display: inline-block;
            margin-top: 3rem;
        }
        h3 {
            font-size: 1.5rem;
            margin-top: 2rem;
            color: var(--primary-light);
        }
        h4 {
            font-size: 1.2rem;
            margin-top: 1.5rem;
            color: var(--text-light);
        }
        p {
            margin-bottom: 1.2rem;
            font-size: 1.05rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .section-spacing {
            padding: 3rem 0;
        }
        .site-header {
            background: var(--primary);
            color: #fff;
            padding: 0.8rem 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.8rem 1.5rem;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: #fff;
            background: linear-gradient(135deg, var(--gold), var(--gold-light));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.03em;
            display: inline-flex;
            align-items: center;
            gap: 0.3rem;
        }
        .my-logo i {
            background: var(--accent);
            -webkit-text-fill-color: var(--accent);
            color: var(--accent);
            font-size: 1.6rem;
            background: none;
        }
        .my-logo:hover {
            opacity: 0.9;
            text-decoration: none;
        }
        .my-logo small {
            font-size: 0.7rem;
            font-weight: 400;
            -webkit-text-fill-color: rgba(255, 255, 255, 0.6);
            color: rgba(255, 255, 255, 0.6);
            display: block;
            letter-spacing: 0.3px;
        }
        .nav-wrap {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .main-nav {
            display: flex;
            gap: 0.2rem;
            flex-wrap: wrap;
        }
        .main-nav a {
            color: rgba(255, 255, 255, 0.85);
            padding: 0.5rem 1rem;
            border-radius: 30px;
            font-size: 0.9rem;
            font-weight: 500;
            transition: background var(--transition), color var(--transition);
        }
        .main-nav a:hover,
        .main-nav a:focus-visible {
            background: rgba(255, 255, 255, 0.12);
            color: #fff;
            text-decoration: none;
        }
        .main-nav a.active {
            background: var(--accent);
            color: #fff;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.2rem 0.6rem;
            border-radius: 6px;
            transition: background var(--transition);
        }
        .hamburger:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        .hamburger:focus-visible {
            outline: 2px solid var(--gold);
        }
        .breadcrumb {
            background: rgba(255, 255, 255, 0.06);
            padding: 0.5rem 1.2rem;
            border-radius: 30px;
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.65);
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 0.3rem 0.6rem;
            margin-top: 0.3rem;
            width: 100%;
        }
        .breadcrumb a {
            color: rgba(255, 255, 255, 0.8);
        }
        .breadcrumb a:hover {
            color: var(--gold);
        }
        .breadcrumb span.sep {
            color: rgba(255, 255, 255, 0.3);
        }
        .breadcrumb .current {
            color: var(--gold-light);
            font-weight: 500;
        }
        .search-section {
            background: var(--primary-light);
            padding: 2rem 0;
            margin-bottom: 2rem;
        }
        .search-form {
            display: flex;
            gap: 0.8rem;
            max-width: 650px;
            margin: 0 auto;
            flex-wrap: wrap;
        }
        .search-form input[type="search"] {
            flex: 1;
            min-width: 180px;
            padding: 0.9rem 1.4rem;
            border: none;
            border-radius: 50px;
            font-size: 1rem;
            background: rgba(255, 255, 255, 0.95);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            transition: box-shadow var(--transition);
        }
        .search-form input[type="search"]:focus {
            outline: 3px solid var(--gold);
            box-shadow: 0 0 0 6px rgba(241, 196, 15, 0.15);
        }
        .search-form button {
            background: var(--accent);
            color: #fff;
            border: none;
            padding: 0.9rem 2rem;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background var(--transition), transform 0.15s;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-form button:hover,
        .search-form button:focus-visible {
            background: var(--accent-hover);
            transform: scale(1.02);
        }
        .article-card {
            background: var(--card);
            border-radius: var(--radius);
            padding: 2.5rem 2.8rem;
            box-shadow: var(--shadow);
            margin-bottom: 2.5rem;
        }
        @media (max-width:600px) {
            .article-card {
                padding: 1.5rem 1.2rem;
            }
        }
        .featured-image {
            margin: 1.8rem 0 2.5rem;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
        }
        .featured-image img {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
        }
        .featured-image figcaption {
            padding: 0.8rem 1.2rem;
            font-size: 0.9rem;
            color: var(--text-light);
            background: #f8f9fc;
            border-top: 1px solid var(--border);
        }
        .update-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: var(--primary);
            color: #fff;
            padding: 0.4rem 1.2rem;
            border-radius: 30px;
            font-size: 0.85rem;
            font-weight: 500;
            margin-bottom: 1.5rem;
        }
        .rating-area {
            background: #f8f9fc;
            border-radius: var(--radius);
            padding: 2rem 2.2rem;
            margin: 2.5rem 0;
            border: 1px solid var(--border);
        }
        .rating-area h4 {
            margin-top: 0;
        }
        .star-rating {
            display: flex;
            gap: 0.2rem;
            font-size: 2.2rem;
            color: #ddd;
            cursor: pointer;
            direction: rtl;
            justify-content: flex-end;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            transition: color 0.15s, transform 0.15s;
            cursor: pointer;
            color: #d1d5db;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: var(--gold);
            transform: scale(1.08);
        }
        .rating-form button {
            background: var(--primary);
            color: #fff;
            border: none;
            padding: 0.7rem 2rem;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: background var(--transition);
            margin-top: 0.8rem;
        }
        .rating-form button:hover {
            background: var(--primary-light);
        }
        .comment-section {
            background: var(--card);
            border-radius: var(--radius);
            padding: 2rem 2.2rem;
            box-shadow: var(--shadow);
            margin: 2.5rem 0;
        }
        .comment-form textarea {
            width: 100%;
            padding: 1rem 1.2rem;
            border: 2px solid var(--border);
            border-radius: 10px;
            font-size: 1rem;
            font-family: var(--font);
            resize: vertical;
            min-height: 100px;
            transition: border-color var(--transition);
        }
        .comment-form textarea:focus {
            outline: none;
            border-color: var(--accent);
        }
        .comment-form input[type="text"] {
            width: 100%;
            padding: 0.8rem 1.2rem;
            border: 2px solid var(--border);
            border-radius: 10px;
            font-size: 1rem;
            margin: 0.5rem 0 1rem;
            transition: border-color var(--transition);
        }
        .comment-form input[type="text"]:focus {
            border-color: var(--accent);
            outline: none;
        }
        .comment-form button {
            background: var(--accent);
            color: #fff;
            border: none;
            padding: 0.8rem 2.2rem;
            border-radius: 30px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: background var(--transition);
        }
        .comment-form button:hover {
            background: var(--accent-hover);
        }
        friend-link {
            display: block;
            background: var(--primary);
            color: #fff;
            padding: 2.2rem 2rem;
            border-radius: var(--radius);
            margin: 2.5rem 0 1.5rem;
            text-align: center;
        }
        friend-link .fl-title {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--gold-light);
        }
        friend-link .fl-list {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 0.6rem 1.5rem;
        }
        friend-link .fl-list a {
            color: rgba(255, 255, 255, 0.9);
            font-size: 0.95rem;
            border-bottom: 1px solid transparent;
            transition: border-color var(--transition), color var(--transition);
        }
        friend-link .fl-list a:hover {
            color: var(--gold);
            border-bottom-color: var(--gold);
            text-decoration: none;
        }
        .site-footer {
            background: var(--primary);
            color: rgba(255, 255, 255, 0.7);
            padding: 2.5rem 0 1.8rem;
            margin-top: 3rem;
            font-size: 0.9rem;
        }
        .footer-inner {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 1.5rem;
            align-items: center;
        }
        .footer-inner .copy {
            font-size: 0.85rem;
        }
        .footer-inner .copy a {
            color: var(--gold-light);
        }
        .footer-links {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem 1.2rem;
        }
        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.85rem;
        }
        .footer-links a:hover {
            color: var(--gold);
        }
        @media (max-width: 900px) {
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            h3 {
                font-size: 1.3rem;
            }
            .article-card {
                padding: 1.8rem 1.5rem;
            }
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .main-nav {
                display: none;
                flex-direction: column;
                width: 100%;
                background: rgba(0, 0, 0, 0.25);
                padding: 0.8rem 0.5rem;
                border-radius: 12px;
                margin-top: 0.5rem;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 0.7rem 1.2rem;
                border-radius: 8px;
            }
            .header-inner {
                gap: 0.5rem;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .breadcrumb {
                font-size: 0.7rem;
                padding: 0.4rem 1rem;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form button {
                justify-content: center;
            }
            .rating-area {
                padding: 1.5rem 1.2rem;
            }
            .comment-section {
                padding: 1.5rem 1.2rem;
            }
            friend-link {
                padding: 1.5rem 1rem;
            }
            .footer-inner {
                flex-direction: column;
                text-align: center;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 12px;
            }
            h1 {
                font-size: 1.6rem;
            }
            h2 {
                font-size: 1.3rem;
            }
            .article-card {
                padding: 1rem 0.8rem;
            }
            .star-rating {
                font-size: 1.8rem;
            }
        }
        .text-gold {
            color: var(--gold);
        }
        .text-accent {
            color: var(--accent);
        }
        .fw-700 {
            font-weight: 700;
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .flex-between {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }
        .emoji-lg {
            font-size: 1.8rem;
            line-height: 1;
        }
        .highlight-box {
            background: #fef9e7;
            border-left: 5px solid var(--gold);
            padding: 1.5rem 2rem;
            border-radius: 0 var(--radius) var(--radius) 0;
            margin: 2rem 0;
        }
        .highlight-box p:last-child {
            margin-bottom: 0;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 1.8rem 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.95rem;
        }
        th,
        td {
            padding: 0.8rem 1rem;
            border: 1px solid var(--border);
            text-align: left;
        }
        th {
            background: var(--primary);
            color: #fff;
            font-weight: 600;
        }
        tr:nth-child(even) {
            background: #f8f9fc;
        }
        .anchor-offset {
            scroll-margin-top: 100px;
        }
        .link-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 0.6rem 1.2rem;
            margin: 1.5rem 0;
            padding: 0;
            list-style: none;
        }
        .link-grid li a {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            padding: 0.3rem 0;
        }
        .link-grid li a::before {
            content: "⚽";
            font-size: 0.9rem;
        }
