        *,
        *::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, Roboto, 'Helvetica Neue', sans-serif;
            background: #f0f4f0;
            color: #1e2a1e;
            line-height: 1.7;
            -webkit-font-smoothing: antialiased;
        }
        :root {
            --primary: #1e5a2e;
            --primary-light: #2d7a3f;
            --primary-dark: #0f3b1a;
            --gold: #d4a017;
            --gold-light: #f0c75e;
            --cream: #faf9f0;
            --dark: #0f1a0f;
            --text: #1e2a1e;
            --text-light: #4a5a4a;
            --border: #c8d6c8;
            --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            --radius: 12px;
            --transition: 0.3s ease;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.25;
            color: var(--primary-dark);
            margin-top: 1.8em;
            margin-bottom: 0.6em;
        }
        h1 {
            font-size: 2.6rem;
            margin-top: 0.2em;
            margin-bottom: 0.4em;
            border-bottom: 4px solid var(--gold);
            padding-bottom: 0.3em;
            display: inline-block;
        }
        h2 {
            font-size: 1.9rem;
            border-left: 5px solid var(--gold);
            padding-left: 0.7em;
        }
        h3 {
            font-size: 1.4rem;
            color: var(--primary);
        }
        h4 {
            font-size: 1.15rem;
            color: var(--text-light);
            font-weight: 600;
        }
        p {
            margin-bottom: 1.2em;
            font-size: 1.05rem;
            color: var(--text);
        }
        a {
            color: var(--primary);
            text-decoration: none;
            transition: color var(--transition);
        }
        a:hover {
            color: var(--gold);
            text-decoration: underline;
        }
        strong,
        b {
            color: var(--primary-dark);
            font-weight: 700;
        }
        ul,
        ol {
            margin: 1em 0 1.5em 1.8em;
        }
        li {
            margin-bottom: 0.5em;
            font-size: 1.02rem;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            display: block;
            margin: 1.8em auto;
        }
        hr {
            border: none;
            height: 2px;
            background: linear-gradient(to right, var(--gold), var(--primary-light), var(--gold));
            margin: 2.5em 0;
        }
        .container {
            max-width: 1240px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
            color: #fff;
            padding: 0.6rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 16px rgba(0, 0, 0, 0.25);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            padding: 0.4rem 0;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            color: #fff;
            letter-spacing: -0.5px;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.3rem;
            transition: opacity var(--transition);
        }
        .my-logo:hover {
            opacity: 0.88;
            text-decoration: none;
        }
        .my-logo i {
            color: var(--gold);
            font-size: 2rem;
        }
        .my-logo span {
            background: var(--gold);
            color: var(--primary-dark);
            padding: 0.1rem 0.5rem;
            border-radius: 6px;
            font-size: 0.9rem;
            margin-left: 0.3rem;
        }
        .nav-desktop {
            display: flex;
            align-items: center;
            gap: 0.2rem;
            flex-wrap: wrap;
        }
        .nav-desktop a {
            color: #eaf5ea;
            padding: 0.5rem 1rem;
            border-radius: 8px;
            font-size: 0.95rem;
            font-weight: 500;
            transition: background var(--transition), color var(--transition);
            text-decoration: none;
        }
        .nav-desktop a:hover {
            background: rgba(255, 255, 255, 0.15);
            color: var(--gold-light);
            text-decoration: none;
        }
        .nav-desktop a i {
            margin-right: 0.3rem;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.3rem 0.6rem;
            border-radius: 8px;
            transition: background var(--transition);
        }
        .hamburger:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        .mobile-nav {
            display: none;
            width: 100%;
            background: var(--primary-dark);
            padding: 0.8rem 1rem;
            border-radius: 0 0 var(--radius) var(--radius);
            margin-top: 0.6rem;
            flex-direction: column;
            gap: 0.3rem;
        }
        .mobile-nav.open {
            display: flex;
        }
        .mobile-nav a {
            color: #eaf5ea;
            padding: 0.6rem 0.8rem;
            border-radius: 6px;
            font-size: 1rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .mobile-nav a:hover {
            background: rgba(255, 255, 255, 0.1);
            color: var(--gold-light);
            text-decoration: none;
        }
        .breadcrumb {
            background: var(--cream);
            padding: 0.8rem 0;
            border-bottom: 1px solid var(--border);
            font-size: 0.92rem;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem;
            margin: 0;
            padding: 0;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 0.5rem;
            color: var(--text-light);
            font-weight: 700;
        }
        .breadcrumb a {
            color: var(--primary);
        }
        .breadcrumb .current {
            color: var(--text-light);
            font-weight: 600;
        }
        .main-content {
            background: #fff;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            padding: 2.4rem 2.8rem;
            margin: 1.8rem 0 2.4rem;
        }
        .last-update {
            font-size: 0.92rem;
            color: var(--text-light);
            background: var(--cream);
            display: inline-block;
            padding: 0.3rem 1rem;
            border-radius: 20px;
            border: 1px solid var(--border);
            margin-bottom: 0.8rem;
        }
        .last-update i {
            margin-right: 0.4rem;
            color: var(--gold);
        }
        .search-section {
            background: var(--cream);
            border-radius: var(--radius);
            padding: 1.8rem 2rem;
            margin: 2rem 0;
            border: 1px solid var(--border);
        }
        .search-section form {
            display: flex;
            gap: 0.8rem;
            flex-wrap: wrap;
            align-items: center;
        }
        .search-section input[type="text"] {
            flex: 1;
            min-width: 200px;
            padding: 0.8rem 1.2rem;
            border: 2px solid var(--border);
            border-radius: 30px;
            font-size: 1rem;
            outline: none;
            transition: border var(--transition), box-shadow var(--transition);
            background: #fff;
        }
        .search-section input[type="text"]:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(30, 90, 46, 0.15);
        }
        .search-section button {
            background: var(--primary);
            color: #fff;
            border: none;
            padding: 0.8rem 2rem;
            border-radius: 30px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background var(--transition), transform 0.2s;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-section button:hover {
            background: var(--primary-light);
            transform: scale(1.02);
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            margin: 2.5rem 0;
        }
        .feedback-card {
            background: var(--cream);
            border-radius: var(--radius);
            padding: 1.8rem 2rem;
            border: 1px solid var(--border);
        }
        .feedback-card h3 {
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 0.6rem;
            font-size: 1.3rem;
        }
        .feedback-card form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .feedback-card input,
        .feedback-card textarea,
        .feedback-card select {
            padding: 0.7rem 1rem;
            border: 2px solid var(--border);
            border-radius: 8px;
            font-size: 0.98rem;
            font-family: inherit;
            outline: none;
            transition: border var(--transition);
            background: #fff;
        }
        .feedback-card input:focus,
        .feedback-card textarea:focus,
        .feedback-card select:focus {
            border-color: var(--primary);
        }
        .feedback-card textarea {
            min-height: 100px;
            resize: vertical;
        }
        .feedback-card button {
            background: var(--primary);
            color: #fff;
            border: none;
            padding: 0.7rem 1.6rem;
            border-radius: 30px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background var(--transition), transform 0.2s;
            align-self: flex-start;
        }
        .feedback-card button:hover {
            background: var(--primary-light);
            transform: scale(1.02);
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 0.2rem;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 1.8rem;
            color: #ccc;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star-rating input:checked~label,
        .star-rating label:hover,
        .star-rating label:hover~label {
            color: var(--gold);
        }
        friend-link {
            display: block;
            background: var(--cream);
            border-radius: var(--radius);
            padding: 2rem 2.5rem;
            margin: 2rem 0 0.5rem;
            border: 1px solid var(--border);
        }
        friend-link h3 {
            margin-top: 0;
            font-size: 1.4rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        friend-link ul {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem 1.5rem;
            padding: 0;
            margin: 1em 0 0;
        }
        friend-link li a {
            background: #fff;
            padding: 0.4rem 1.2rem;
            border-radius: 30px;
            border: 1px solid var(--border);
            font-weight: 500;
            transition: all var(--transition);
            display: inline-block;
            font-size: 0.95rem;
        }
        friend-link li a:hover {
            background: var(--primary);
            color: #fff;
            border-color: var(--primary);
            text-decoration: none;
        }
        .site-footer {
            background: var(--primary-dark);
            color: #dce8dc;
            padding: 2.2rem 0 1.2rem;
            margin-top: 2.5rem;
            border-radius: var(--radius) var(--radius) 0 0;
        }
        .site-footer .footer-inner {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 1.2rem;
        }
        .site-footer .copyright {
            font-size: 0.92rem;
            opacity: 0.85;
        }
        .site-footer .copyright i {
            margin-right: 0.3rem;
            color: var(--gold);
        }
        .site-footer a {
            color: var(--gold-light);
        }
        .site-footer a:hover {
            color: #fff;
        }
        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.8em 0;
            font-size: 0.98rem;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
        }
        .data-table th {
            background: var(--primary);
            color: #fff;
            padding: 0.8rem 1.2rem;
            text-align: left;
            font-weight: 600;
        }
        .data-table td {
            padding: 0.7rem 1.2rem;
            border-bottom: 1px solid var(--border);
            background: #fff;
        }
        .data-table tr:last-child td {
            border-bottom: none;
        }
        .data-table tr:hover td {
            background: #f5faf5;
        }
        .highlight-box {
            background: linear-gradient(135deg, #faf9f0, #f0f7f0);
            border-left: 6px solid var(--gold);
            border-radius: 0 var(--radius) var(--radius) 0;
            padding: 1.5rem 2rem;
            margin: 1.8em 0;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
        }
        .highlight-box p:last-child {
            margin-bottom: 0;
        }
        .player-quote {
            font-style: italic;
            background: var(--cream);
            padding: 1.5rem 2rem;
            border-radius: var(--radius);
            border: 1px solid var(--border);
            margin: 1.8em 0;
            position: relative;
        }
        .player-quote::before {
            content: "\201C";
            font-size: 3.5rem;
            color: var(--gold);
            position: absolute;
            top: -0.2rem;
            left: 0.8rem;
            font-family: serif;
            line-height: 1;
        }
        .player-quote p {
            margin-bottom: 0.3rem;
            padding-left: 2.2rem;
        }
        .player-quote .attribution {
            font-weight: 600;
            color: var(--primary);
            padding-left: 2.2rem;
            font-style: normal;
        }
        @media (max-width: 1024px) {
            .main-content {
                padding: 1.8rem 1.6rem;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
            .hamburger {
                display: block;
            }
            .header-inner {
                padding: 0.2rem 0;
            }
            .my-logo {
                font-size: 1.5rem;
            }
            .my-logo i {
                font-size: 1.4rem;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.35rem;
                border-left-width: 4px;
                padding-left: 0.5em;
            }
            h3 {
                font-size: 1.15rem;
            }
            .main-content {
                padding: 1.2rem 1rem;
                margin: 1rem 0;
                border-radius: 8px;
            }
            .feedback-grid {
                grid-template-columns: 1fr;
                gap: 1.2rem;
            }
            .feedback-card {
                padding: 1.2rem 1.2rem;
            }
            .search-section {
                padding: 1.2rem 1.2rem;
            }
            .search-section form {
                flex-direction: column;
            }
            .search-section input[type="text"] {
                width: 100%;
                min-width: unset;
            }
            .search-section button {
                width: 100%;
                justify-content: center;
            }
            .data-table {
                font-size: 0.85rem;
            }
            .data-table th,
            .data-table td {
                padding: 0.5rem 0.6rem;
            }
            friend-link {
                padding: 1.2rem 1.2rem;
            }
            friend-link ul {
                flex-direction: column;
                gap: 0.5rem;
            }
            .site-footer .footer-inner {
                flex-direction: column;
                text-align: center;
            }
            .container {
                padding: 0 12px;
            }
            .breadcrumb {
                font-size: 0.82rem;
                padding: 0.5rem 0;
            }
        }
        @media (max-width: 480px) {
            h1 {
                font-size: 1.5rem;
            }
            h2 {
                font-size: 1.2rem;
            }
            body {
                font-size: 0.95rem;
            }
            p {
                font-size: 0.98rem;
            }
            .my-logo {
                font-size: 1.25rem;
            }
            .my-logo i {
                font-size: 1.2rem;
            }
            .my-logo span {
                font-size: 0.7rem;
            }
            .highlight-box {
                padding: 1rem 1.2rem;
            }
            .player-quote {
                padding: 1rem 1.2rem;
            }
            .player-quote::before {
                font-size: 2.5rem;
                left: 0.4rem;
            }
            .player-quote p,
            .player-quote .attribution {
                padding-left: 1.5rem;
            }
        }
        .text-gold {
            color: var(--gold);
        }
        .text-primary {
            color: var(--primary);
        }
        .mt-0 {
            margin-top: 0;
        }
        .mb-0 {
            margin-bottom: 0;
        }
        .flex-center {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .gap-1 {
            gap: 0.5rem;
        }
        .mobile-nav {
            transition: all 0.3s ease;
        }
        .schema-hidden {
            display: none;
        }
