        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            background: #faf7f2;
            color: #1e2a3a;
            line-height: 1.7;
            padding: 0;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }
        a {
            color: #c0392b;
            text-decoration: underline;
            transition: color 0.2s;
        }
        a:hover {
            color: #e67e22;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.3;
            color: #1a2a3a;
            margin-top: 1.2em;
            margin-bottom: 0.5em;
        }
        h1 {
            font-size: 2.2rem;
            border-left: 6px solid #c0392b;
            padding-left: 1rem;
        }
        h2 {
            font-size: 1.7rem;
            border-bottom: 2px solid #e8ddd0;
            padding-bottom: 0.3rem;
        }
        h3 {
            font-size: 1.3rem;
            color: #2c3e50;
        }
        h4 {
            font-size: 1.1rem;
            color: #34495e;
        }
        p {
            margin-bottom: 1.2rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.2rem;
        }
        .site-header {
            background: linear-gradient(145deg, #1a2a3a, #0f1a26);
            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.8rem;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            color: #f1c40f;
            text-decoration: none;
            letter-spacing: 1px;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            transition: transform 0.2s;
        }
        .my-logo:hover {
            transform: scale(1.02);
            color: #f1c40f;
        }
        .my-logo i {
            font-size: 2rem;
            color: #e67e22;
        }
        .my-logo span {
            font-size: 0.8rem;
            color: #bdc3c7;
            font-weight: 400;
            display: block;
            line-height: 1.2;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid rgba(255, 255, 255, 0.25);
            color: #fff;
            font-size: 1.6rem;
            padding: 0.4rem 0.8rem;
            border-radius: 8px;
            cursor: pointer;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        .nav-menu {
            display: flex;
            gap: 0.2rem;
            flex-wrap: wrap;
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .nav-menu li a {
            color: #ecf0f1;
            text-decoration: none;
            padding: 0.5rem 1rem;
            border-radius: 30px;
            font-weight: 500;
            font-size: 0.9rem;
            transition: background 0.25s, color 0.25s;
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        .nav-menu li a:hover,
        .nav-menu li a.active {
            background: #c0392b;
            color: #fff;
        }
        .nav-menu li a i {
            font-size: 0.85rem;
        }
        .breadcrumb {
            background: #ede7df;
            padding: 0.6rem 1.2rem;
            font-size: 0.85rem;
            border-radius: 0 0 12px 12px;
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem 0.6rem;
            margin-bottom: 1.5rem;
            align-items: center;
        }
        .breadcrumb a {
            color: #7f8c8d;
            text-decoration: none;
        }
        .breadcrumb a:hover {
            color: #c0392b;
        }
        .breadcrumb span {
            color: #2c3e50;
        }
        .breadcrumb i {
            color: #bdc3c7;
            font-size: 0.7rem;
        }
        .search-section {
            background: #fff;
            border-radius: 16px;
            padding: 2rem 1.5rem;
            box-shadow: 0 6px 30px rgba(0, 0, 0, 0.05);
            margin: 2rem 0;
            border: 1px solid #ede7df;
        }
        .search-form {
            display: flex;
            gap: 0.8rem;
            flex-wrap: wrap;
            max-width: 700px;
            margin: 0 auto;
        }
        .search-form input {
            flex: 1;
            min-width: 200px;
            padding: 0.9rem 1.4rem;
            border: 2px solid #e0d6c8;
            border-radius: 50px;
            font-size: 1rem;
            outline: none;
            transition: border-color 0.3s;
            background: #fcfaf7;
        }
        .search-form input:focus {
            border-color: #c0392b;
        }
        .search-form button {
            padding: 0.9rem 2rem;
            background: #c0392b;
            color: #fff;
            border: none;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.25s, transform 0.15s;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        .search-form button:hover {
            background: #e67e22;
            transform: translateY(-2px);
        }
        .score-section {
            background: #fff;
            border-radius: 16px;
            padding: 2rem 1.5rem;
            box-shadow: 0 6px 30px rgba(0, 0, 0, 0.05);
            margin: 2rem 0;
            border: 1px solid #ede7df;
        }
        .score-stars {
            display: flex;
            gap: 0.2rem;
            font-size: 2rem;
            color: #f1c40f;
            cursor: pointer;
            transition: transform 0.2s;
            flex-wrap: wrap;
        }
        .score-stars i {
            transition: color 0.2s, transform 0.15s;
        }
        .score-stars i:hover {
            transform: scale(1.2);
            color: #e67e22;
        }
        .score-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            max-width: 500px;
        }
        .score-form select,
        .score-form button {
            padding: 0.8rem 1.4rem;
            border-radius: 50px;
            border: 2px solid #e0d6c8;
            font-size: 1rem;
            background: #fcfaf7;
        }
        .score-form button {
            background: #c0392b;
            color: #fff;
            border-color: #c0392b;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.25s;
        }
        .score-form button:hover {
            background: #e67e22;
        }
        .score-display {
            font-size: 1.1rem;
            font-weight: 600;
            color: #2c3e50;
            margin-top: 0.5rem;
        }
        .comment-section {
            background: #fff;
            border-radius: 16px;
            padding: 2rem 1.5rem;
            box-shadow: 0 6px 30px rgba(0, 0, 0, 0.05);
            margin: 2rem 0;
            border: 1px solid #ede7df;
        }
        .comment-form textarea {
            width: 100%;
            min-height: 120px;
            padding: 1rem;
            border: 2px solid #e0d6c8;
            border-radius: 16px;
            font-size: 1rem;
            font-family: inherit;
            resize: vertical;
            background: #fcfaf7;
            transition: border-color 0.3s;
        }
        .comment-form textarea:focus {
            border-color: #c0392b;
            outline: none;
        }
        .comment-form input {
            width: 100%;
            padding: 0.8rem 1.2rem;
            border: 2px solid #e0d6c8;
            border-radius: 50px;
            font-size: 1rem;
            background: #fcfaf7;
            transition: border-color 0.3s;
        }
        .comment-form input:focus {
            border-color: #c0392b;
            outline: none;
        }
        .comment-form .form-row {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            margin: 1rem 0;
        }
        .comment-form .form-row input {
            flex: 1;
            min-width: 180px;
        }
        .comment-form button {
            padding: 0.9rem 2.5rem;
            background: #c0392b;
            color: #fff;
            border: none;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.25s;
        }
        .comment-form button:hover {
            background: #e67e22;
        }
        .content-area {
            background: #fff;
            border-radius: 20px;
            padding: 2.5rem 2rem;
            box-shadow: 0 8px 40px rgba(0, 0, 0, 0.04);
            margin: 2rem 0;
            border: 1px solid #f0ebe4;
        }
        .content-area p {
            font-size: 1.05rem;
            color: #2c3e50;
        }
        .feature-box {
            background: #fdf8f3;
            border-left: 6px solid #e67e22;
            padding: 1.5rem 2rem;
            border-radius: 0 16px 16px 0;
            margin: 2rem 0;
        }
        .feature-box h4 {
            margin-top: 0;
        }
        .highlight {
            background: #fef9e7;
            padding: 0.2rem 0.6rem;
            border-radius: 8px;
            font-weight: 600;
            color: #c0392b;
        }
        .player-quote {
            background: #f0ebe4;
            padding: 2rem 2.5rem;
            border-radius: 20px;
            font-style: italic;
            position: relative;
            margin: 2rem 0;
        }
        .player-quote::before {
            content: '\201C';
            font-size: 4rem;
            color: #c0392b;
            position: absolute;
            top: -0.5rem;
            left: 1rem;
            opacity: 0.3;
            font-family: serif;
        }
        .player-quote cite {
            display: block;
            margin-top: 0.8rem;
            font-style: normal;
            font-weight: 600;
            color: #7f8c8d;
        }
        .stat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 1.2rem;
            margin: 2rem 0;
        }
        .stat-card {
            background: #fcfaf7;
            border: 1px solid #e8ddd0;
            border-radius: 16px;
            padding: 1.5rem 1rem;
            text-align: center;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .stat-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
        }
        .stat-card i {
            font-size: 2.2rem;
            color: #c0392b;
            margin-bottom: 0.5rem;
        }
        .stat-card .num {
            font-size: 1.8rem;
            font-weight: 800;
            color: #1a2a3a;
        }
        .stat-card .label {
            color: #7f8c8d;
            font-size: 0.9rem;
        }
        .links-list {
            background: #fcfaf7;
            border: 1px solid #e8ddd0;
            border-radius: 16px;
            padding: 1.5rem 2rem;
            margin: 2rem 0;
        }
        .links-list ul {
            list-style: none;
            padding: 0;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 0.6rem 1.2rem;
        }
        .links-list ul li a {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.4rem 0;
            font-weight: 500;
        }
        .links-list ul li a i {
            color: #c0392b;
            font-size: 0.8rem;
        }
        .content-image {
            margin: 2.5rem 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
        }
        .content-image figcaption {
            background: #fcfaf7;
            padding: 0.8rem 1.2rem;
            font-size: 0.9rem;
            color: #7f8c8d;
            text-align: center;
            border-top: 1px solid #ede7df;
        }
        .site-footer {
            background: #1a2a3a;
            color: #bdc3c7;
            padding: 3rem 0 2rem;
            margin-top: 3rem;
            border-top: 4px solid #c0392b;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 2rem;
        }
        .site-footer h4 {
            color: #f1c40f;
            margin-top: 0;
            font-size: 1.1rem;
        }
        .site-footer a {
            color: #ecf0f1;
            text-decoration: underline;
        }
        .site-footer a:hover {
            color: #e67e22;
        }
        .friend-link {
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem 1.2rem;
            padding: 0.8rem 0;
            list-style: none;
        }
        .friend-link li a {
            font-size: 0.9rem;
            background: rgba(255, 255, 255, 0.06);
            padding: 0.3rem 1rem;
            border-radius: 30px;
            text-decoration: none;
            transition: background 0.2s;
        }
        .friend-link li a:hover {
            background: #c0392b;
            color: #fff;
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            font-size: 0.85rem;
            color: #95a5a6;
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            .nav-menu {
                display: none;
                width: 100%;
                flex-direction: column;
                background: #0f1a26;
                border-radius: 16px;
                padding: 1rem 0;
                margin-top: 0.5rem;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu li a {
                padding: 0.7rem 1.5rem;
                border-radius: 0;
            }
            h1 {
                font-size: 1.7rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            .content-area {
                padding: 1.5rem 1rem;
            }
            .player-quote {
                padding: 1.5rem;
            }
            .breadcrumb {
                font-size: 0.75rem;
                padding: 0.4rem 0.8rem;
            }
            .search-form input {
                min-width: 140px;
            }
            .score-stars {
                font-size: 1.6rem;
            }
        }
        @media (max-width: 480px) {
            .my-logo {
                font-size: 1.4rem;
            }
            .header-inner {
                gap: 0.4rem;
            }
            .container {
                padding: 0 0.8rem;
            }
            .content-area {
                padding: 1rem 0.8rem;
            }
            .stat-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        .schema-hidden {
            display: none;
        }
        .text-center {
            text-align: center;
        }
        .mt-2 {
            margin-top: 2rem;
        }
        .mb-2 {
            margin-bottom: 2rem;
        }
        .flex-center {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            flex-wrap: wrap;
        }
        .last-updated {
            display: inline-block;
            background: #ede7df;
            padding: 0.3rem 1rem;
            border-radius: 30px;
            font-size: 0.85rem;
            color: #555;
        }
