        *,
        *::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: #f8f6f2;
            color: #1f1f1f;
            line-height: 1.7;
            padding: 0;
            margin: 0;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            color: #0a4b33;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover {
            color: #b8860b;
            text-decoration: underline;
        }
        ul,
        ol {
            padding-left: 1.5rem;
            margin-bottom: 1.2rem;
        }
        li {
            margin-bottom: 0.4rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.25;
            color: #0a2e1f;
            margin-top: 0;
        }
        h1 {
            font-size: 2.4rem;
            margin-bottom: 1.2rem;
            letter-spacing: -0.02em;
        }
        h2 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
            margin-top: 2.4rem;
            border-bottom: 3px solid #d4c5a9;
            padding-bottom: 0.4rem;
        }
        h3 {
            font-size: 1.35rem;
            margin-bottom: 0.75rem;
            margin-top: 1.8rem;
        }
        h4 {
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
            margin-top: 1.2rem;
            font-weight: 600;
        }
        p {
            margin-bottom: 1.2rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.2rem;
        }
        :root {
            --primary: #0a4b33;
            --primary-light: #1a7a55;
            --accent: #b8860b;
            --accent-light: #e6b422;
            --bg-cream: #f8f6f2;
            --bg-white: #ffffff;
            --bg-dark: #0a2e1f;
            --text-dark: #1f1f1f;
            --text-muted: #5a5a5a;
            --border-light: #e0d8cc;
            --shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
            --radius: 12px;
            --radius-sm: 6px;
        }
        .site-header {
            background: var(--bg-white);
            box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
            position: sticky;
            top: 0;
            z-index: 100;
            border-bottom: 2px solid var(--border-light);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0.7rem 1.2rem;
            max-width: 1200px;
            margin: 0 auto;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 1.6rem;
            font-weight: 800;
            color: var(--primary);
            letter-spacing: -0.03em;
            display: flex;
            align-items: center;
            gap: 0.4rem;
            text-decoration: none;
        }
        .my-logo i {
            color: var(--accent);
            font-size: 1.5rem;
        }
        .my-logo:hover {
            text-decoration: none;
            color: var(--primary-light);
        }
        .my-logo span {
            font-weight: 300;
            color: var(--accent);
        }
        .nav-wrapper {
            display: flex;
            align-items: center;
            gap: 0.8rem;
        }
        .main-nav {
            display: flex;
            gap: 1.2rem;
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .main-nav li a {
            font-weight: 500;
            font-size: 0.95rem;
            padding: 0.4rem 0.2rem;
            color: var(--text-dark);
            border-bottom: 2px solid transparent;
            transition: border-color 0.2s ease, color 0.2s ease;
        }
        .main-nav li a:hover {
            color: var(--primary);
            border-bottom-color: var(--accent);
            text-decoration: none;
        }
        .hamburger {
            display: none;
            font-size: 1.6rem;
            background: none;
            border: none;
            cursor: pointer;
            color: var(--text-dark);
            padding: 0.2rem 0.5rem;
            border-radius: 4px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: #f0ede8;
        }
        .breadcrumb {
            background: var(--bg-cream);
            padding: 0.6rem 1.2rem;
            font-size: 0.85rem;
            border-bottom: 1px solid var(--border-light);
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem 0.2rem;
            padding: 0;
            margin: 0;
            max-width: 1200px;
            margin: 0 auto;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin: 0 0.5rem;
            color: var(--text-muted);
        }
        .breadcrumb a {
            color: var(--primary);
        }
        .breadcrumb .current {
            color: var(--text-muted);
            font-weight: 500;
        }
        .hero {
            background: linear-gradient(135deg, #0a2e1f 0%, #1a6b4a 100%);
            color: #fff;
            padding: 3rem 1.2rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .hero::after {
            content: "⚾";
            position: absolute;
            font-size: 16rem;
            opacity: 0.06;
            right: -2rem;
            bottom: -3rem;
            transform: rotate(20deg);
            pointer-events: none;
        }
        .hero h1 {
            color: #fff;
            font-size: 2.8rem;
            margin-bottom: 0.6rem;
        }
        .hero p {
            font-size: 1.15rem;
            max-width: 720px;
            margin: 0 auto 1.2rem;
            opacity: 0.9;
        }
        .hero .meta-info {
            font-size: 0.9rem;
            opacity: 0.75;
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            flex-wrap: wrap;
        }
        .search-section {
            background: var(--bg-white);
            padding: 1.8rem 1.2rem;
            box-shadow: var(--shadow);
            border-radius: var(--radius);
            margin: -1.8rem auto 2rem;
            max-width: 720px;
            position: relative;
            z-index: 10;
        }
        .search-form {
            display: flex;
            gap: 0.6rem;
            flex-wrap: wrap;
        }
        .search-form input[type="text"] {
            flex: 1 1 200px;
            padding: 0.8rem 1.2rem;
            border: 2px solid var(--border-light);
            border-radius: var(--radius-sm);
            font-size: 1rem;
            outline: none;
            transition: border-color 0.2s;
        }
        .search-form input[type="text"]:focus {
            border-color: var(--primary);
        }
        .search-form button {
            background: var(--primary);
            color: #fff;
            border: none;
            padding: 0.8rem 2rem;
            border-radius: var(--radius-sm);
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-form button:hover {
            background: var(--primary-light);
            transform: scale(1.02);
        }
        .content-layout {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            padding: 2rem 1.2rem 3rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        .main-content {
            min-width: 0;
        }
        .sidebar {
            position: sticky;
            top: 110px;
            align-self: start;
        }
        .sidebar-card {
            background: var(--bg-white);
            border-radius: var(--radius);
            padding: 1.5rem;
            box-shadow: var(--shadow);
            margin-bottom: 1.5rem;
            border: 1px solid var(--border-light);
        }
        .sidebar-card h3 {
            font-size: 1.15rem;
            margin-top: 0;
            border-bottom: 2px solid var(--accent);
            padding-bottom: 0.4rem;
            margin-bottom: 1rem;
        }
        .sidebar-card ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .sidebar-card ul li {
            padding: 0.4rem 0;
            border-bottom: 1px solid #f0ede8;
        }
        .sidebar-card ul li:last-child {
            border-bottom: none;
        }
        .sidebar-card ul li a {
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .sidebar-card ul li a i {
            color: var(--accent);
            width: 1.2rem;
        }
        .featured-image-wrap {
            margin: 1.8rem 0 2.2rem;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            background: var(--bg-white);
        }
        .featured-image-wrap img {
            width: 100%;
            height: auto;
            max-height: 480px;
            object-fit: cover;
        }
        .featured-image-wrap figcaption {
            padding: 0.8rem 1.2rem;
            font-size: 0.85rem;
            color: var(--text-muted);
            background: var(--bg-cream);
            border-top: 1px solid var(--border-light);
        }
        .interaction-section {
            background: var(--bg-white);
            border-radius: var(--radius);
            padding: 2rem 1.8rem;
            box-shadow: var(--shadow);
            margin: 2.5rem 0;
            border: 1px solid var(--border-light);
        }
        .interaction-section h3 {
            margin-top: 0;
        }
        .comment-form textarea,
        .comment-form input {
            width: 100%;
            padding: 0.8rem 1rem;
            border: 2px solid var(--border-light);
            border-radius: var(--radius-sm);
            font-size: 1rem;
            font-family: inherit;
            transition: border-color 0.2s;
            margin-bottom: 0.8rem;
        }
        .comment-form textarea:focus,
        .comment-form input:focus {
            border-color: var(--primary);
            outline: none;
        }
        .comment-form textarea {
            min-height: 100px;
            resize: vertical;
        }
        .comment-form button,
        .score-form button {
            background: var(--primary);
            color: #fff;
            border: none;
            padding: 0.7rem 2rem;
            border-radius: var(--radius-sm);
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s;
            font-size: 1rem;
        }
        .comment-form button:hover,
        .score-form button:hover {
            background: var(--primary-light);
        }
        .score-form {
            display: flex;
            align-items: center;
            gap: 1rem;
            flex-wrap: wrap;
            margin-top: 1rem;
            padding-top: 1.2rem;
            border-top: 1px solid var(--border-light);
        }
        .score-form label {
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        .score-form select {
            padding: 0.5rem 1rem;
            border: 2px solid var(--border-light);
            border-radius: var(--radius-sm);
            font-size: 1rem;
            background: var(--bg-white);
        }
        .site-footer {
            background: var(--bg-dark);
            color: #d4d4d4;
            padding: 2.5rem 1.2rem 1.5rem;
            border-top: 4px solid var(--accent);
        }
        .footer-inner {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
        }
        .footer-inner h4 {
            color: #fff;
            font-size: 1.1rem;
            margin-bottom: 0.8rem;
            border-bottom: 1px solid #2a4a3a;
            padding-bottom: 0.4rem;
        }
        .footer-inner ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .footer-inner ul li {
            padding: 0.25rem 0;
        }
        .footer-inner ul li a {
            color: #b8c8c0;
            font-size: 0.9rem;
        }
        .footer-inner ul li a:hover {
            color: var(--accent-light);
        }
        .friend-link {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem 1.5rem;
            padding: 1.2rem 0 0.6rem;
            border-top: 1px solid #2a4a3a;
            margin-top: 1.5rem;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
            font-size: 0.9rem;
        }
        .friend-link a {
            color: #b8c8c0;
        }
        .friend-link a:hover {
            color: var(--accent-light);
        }
        .friend-link::before {
            content: "🤝 Friend Links:";
            font-weight: 600;
            color: var(--accent-light);
            margin-right: 0.4rem;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            font-size: 0.85rem;
            color: #7a8f85;
            max-width: 1200px;
            margin: 0 auto;
            border-top: 1px solid #1f3a2e;
            margin-top: 1.2rem;
        }
        @media (max-width: 900px) {
            .content-layout {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
                order: 2;
            }
            .main-content {
                order: 1;
            }
            .hero h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.5rem;
            }
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .main-nav {
                display: none;
                flex-direction: column;
                width: 100%;
                background: var(--bg-white);
                padding: 1rem 0.5rem;
                border-top: 1px solid var(--border-light);
                gap: 0.4rem;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav li a {
                padding: 0.6rem 0.8rem;
                display: block;
                border-radius: 4px;
            }
            .main-nav li a:hover {
                background: #f0ede8;
                border-bottom: none;
            }
            .header-inner {
                padding: 0.5rem 1rem;
            }
            .my-logo {
                font-size: 1.3rem;
            }
            .hero {
                padding: 2rem 1rem;
            }
            .hero h1 {
                font-size: 1.7rem;
            }
            .search-section {
                margin: -1rem 0.8rem 1.5rem;
                padding: 1.2rem;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form button {
                width: 100%;
                justify-content: center;
            }
            .interaction-section {
                padding: 1.2rem;
            }
            .score-form {
                flex-direction: column;
                align-items: stretch;
            }
            .footer-inner {
                grid-template-columns: 1fr;
                gap: 1.2rem;
            }
            .breadcrumb {
                font-size: 0.75rem;
                padding: 0.4rem 0.8rem;
            }
            .container {
                padding: 0 0.8rem;
            }
        }
        @media (max-width: 480px) {
            h1 {
                font-size: 1.4rem;
            }
            h2 {
                font-size: 1.25rem;
            }
            h3 {
                font-size: 1.1rem;
            }
            .hero h1 {
                font-size: 1.4rem;
            }
            .hero p {
                font-size: 0.95rem;
            }
            .my-logo {
                font-size: 1.1rem;
            }
            .my-logo i {
                font-size: 1.2rem;
            }
        }
        .text-accent {
            color: var(--accent);
        }
        .text-muted {
            color: var(--text-muted);
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .flex-center {
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        .highlight-box {
            background: #f0f7f3;
            border-left: 4px solid var(--primary);
            padding: 1.2rem 1.5rem;
            border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
            margin: 1.5rem 0;
        }
        .highlight-box strong {
            color: var(--primary);
        }
        .table-wrap {
            overflow-x: auto;
            margin: 1.5rem 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.9rem;
        }
        table th {
            background: var(--bg-dark);
            color: #fff;
            padding: 0.6rem 0.8rem;
            text-align: left;
            font-weight: 600;
        }
        table td {
            padding: 0.5rem 0.8rem;
            border-bottom: 1px solid var(--border-light);
        }
        table tr:nth-child(even) {
            background: #faf8f5;
        }
        table tr:hover {
            background: #f0ede8;
        }
        .emoji-lg {
            font-size: 1.4rem;
        }
        .tag {
            display: inline-block;
            background: var(--accent);
            color: #fff;
            padding: 0.15rem 0.8rem;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.02em;
        }
        .tag.green {
            background: var(--primary);
        }
