        *,
        *::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, BlinkMacSystemFont, sans-serif;
            background: #fbfaf6;
            color: #1e2a3a;
            line-height: 1.7;
            padding: 0;
        }
        a {
            color: #c0392b;
            text-decoration: none;
            transition: color .2s;
        }
        a:hover {
            color: #e74c3c;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(145deg, #1a2a1f, #0d1a12);
            color: #f5e6ca;
            padding: 0 0 6px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 4px 20px rgba(0, 0, 0, .5);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            padding: 14px 20px;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            letter-spacing: 2px;
            background: linear-gradient(135deg, #f7d875, #e9b640);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 12px rgba(233, 182, 64, .3);
            transition: transform .25s;
        }
        .my-logo:hover {
            transform: scale(1.03);
            text-decoration: none;
        }
        .my-logo i {
            -webkit-text-fill-color: initial;
            color: #f7d875;
            margin-right: 6px;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid #f5e6ca;
            color: #f5e6ca;
            font-size: 1.8rem;
            padding: 4px 14px;
            border-radius: 8px;
            cursor: pointer;
            transition: .2s;
        }
        .nav-toggle:hover {
            background: rgba(245, 230, 202, .15);
        }
        .main-nav {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            align-items: center;
        }
        .main-nav a {
            color: #f5e6ca;
            padding: 8px 16px;
            border-radius: 30px;
            font-weight: 500;
            font-size: .95rem;
            transition: .2s;
            white-space: nowrap;
        }
        .main-nav a:hover {
            background: rgba(245, 230, 202, .18);
            color: #f7d875;
            text-decoration: none;
        }
        .main-nav a.active {
            background: #c0392b;
            color: #fff;
        }
        .breadcrumb {
            padding: 8px 20px 10px;
            font-size: .85rem;
            background: rgba(0, 0, 0, .25);
            color: #b8aa92;
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
        }
        .breadcrumb a {
            color: #d4c5aa;
        }
        .breadcrumb a:hover {
            color: #f7d875;
        }
        .breadcrumb span {
            color: #f5e6ca;
        }
        .search-section {
            background: #fff;
            padding: 30px 20px;
            border-radius: 20px;
            box-shadow: 0 6px 30px rgba(0, 0, 0, .06);
            margin: 40px 0;
            text-align: center;
        }
        .search-form {
            display: flex;
            max-width: 640px;
            margin: 16px auto 0;
            border-radius: 60px;
            overflow: hidden;
            border: 2px solid #e0d5c0;
            background: #fff;
            transition: .25s;
        }
        .search-form:focus-within {
            border-color: #c0392b;
            box-shadow: 0 0 0 4px rgba(192, 57, 43, .15);
        }
        .search-form input {
            flex: 1;
            border: none;
            padding: 16px 22px;
            font-size: 1rem;
            outline: none;
            background: transparent;
        }
        .search-form button {
            background: #c0392b;
            color: #fff;
            border: none;
            padding: 0 28px;
            font-size: 1.2rem;
            cursor: pointer;
            transition: .2s;
        }
        .search-form button:hover {
            background: #a93226;
        }
        .content-wrap {
            padding: 20px 0 50px;
        }
        .post h1 {
            font-size: 2.8rem;
            line-height: 1.2;
            margin: .6em 0 .3em;
            color: #1a2a1f;
            letter-spacing: -0.5px;
        }
        .post h1 i {
            color: #e9b640;
            margin-right: 10px;
        }
        .post h2 {
            font-size: 2rem;
            margin: 1.6em 0 .5em;
            padding-bottom: 8px;
            border-bottom: 3px solid #e9b640;
            color: #1a2a1f;
        }
        .post h3 {
            font-size: 1.5rem;
            margin: 1.4em 0 .4em;
            color: #2c3e50;
        }
        .post h4 {
            font-size: 1.2rem;
            margin: 1.2em 0 .3em;
            color: #34495e;
        }
        .post p {
            margin-bottom: 1.2em;
        }
        .post .meta-info {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            color: #5d6d7e;
            font-size: .9rem;
            margin-bottom: 30px;
            padding: 12px 0;
            border-top: 1px solid #e8e2d6;
            border-bottom: 1px solid #e8e2d6;
        }
        .post .meta-info i {
            margin-right: 6px;
            color: #c0392b;
        }
        .post .featured-img {
            margin: 30px 0 40px;
            border-radius: 16px;
            box-shadow: 0 12px 40px rgba(0, 0, 0, .12);
        }
        .post .featured-img figcaption {
            font-size: .85rem;
            color: #5d6d7e;
            margin-top: 10px;
            text-align: center;
            font-style: italic;
        }
        .highlight-box {
            background: linear-gradient(135deg, #fef9e7, #fdf2d7);
            border-left: 6px solid #e9b640;
            padding: 20px 28px;
            border-radius: 12px;
            margin: 30px 0;
        }
        .highlight-box strong {
            color: #a93226;
        }
        .pro-tip {
            background: #eafaf1;
            border-left: 6px solid #27ae60;
            padding: 18px 24px;
            border-radius: 12px;
            margin: 24px 0;
        }
        .player-quote {
            background: #f4ecf7;
            border-left: 6px solid #8e44ad;
            padding: 20px 28px;
            border-radius: 12px;
            margin: 28px 0;
            font-style: italic;
        }
        .player-quote cite {
            display: block;
            margin-top: 10px;
            font-weight: 600;
            color: #6c3483;
        }
        .data-table-wrap {
            overflow-x: auto;
            margin: 30px 0;
        }
        .data-table {
            width: 100%;
            border-collapse: collapse;
            background: #fff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 16px rgba(0, 0, 0, .06);
        }
        .data-table th {
            background: #1a2a1f;
            color: #f5e6ca;
            padding: 14px 18px;
            font-weight: 600;
            text-align: left;
        }
        .data-table td {
            padding: 14px 18px;
            border-bottom: 1px solid #ece8e0;
        }
        .data-table tr:last-child td {
            border-bottom: none;
        }
        .data-table tr:hover td {
            background: #fbf8f2;
        }
        .link-list {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin: 24px 0;
            padding: 0;
            list-style: none;
        }
        .link-list li a {
            display: inline-block;
            background: #fff;
            border: 1px solid #e0d5c0;
            padding: 8px 20px;
            border-radius: 40px;
            font-weight: 500;
            transition: .2s;
        }
        .link-list li a:hover {
            background: #c0392b;
            color: #fff;
            border-color: #c0392b;
            text-decoration: none;
        }
        .interaction-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin: 50px 0;
        }
        @media (max-width:768px) {
            .interaction-section {
                grid-template-columns: 1fr;
            }
        }
        .comment-card,
        .rating-card {
            background: #fff;
            border-radius: 20px;
            padding: 28px 30px;
            box-shadow: 0 6px 24px rgba(0, 0, 0, .06);
        }
        .comment-card h3,
        .rating-card h3 {
            margin-top: 0;
            font-size: 1.4rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .comment-form textarea,
        .comment-form input {
            width: 100%;
            padding: 14px 16px;
            border: 1px solid #d5cdbc;
            border-radius: 12px;
            font-size: .95rem;
            margin-bottom: 14px;
            font-family: inherit;
            transition: .2s;
            background: #fcfaf6;
        }
        .comment-form textarea:focus,
        .comment-form input:focus {
            border-color: #c0392b;
            outline: none;
            box-shadow: 0 0 0 3px rgba(192, 57, 43, .12);
        }
        .comment-form textarea {
            min-height: 100px;
            resize: vertical;
        }
        .btn-primary {
            background: #c0392b;
            color: #fff;
            border: none;
            padding: 14px 32px;
            border-radius: 60px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: .2s;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }
        .btn-primary:hover {
            background: #a93226;
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(192, 57, 43, .25);
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 4px;
            margin: 16px 0;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 2rem;
            color: #ddd;
            cursor: pointer;
            transition: .2s;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #f7b731;
        }
        .site-footer {
            background: #0d1a12;
            color: #cfc5b0;
            padding: 40px 20px 20px;
            margin-top: 60px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto 30px;
        }
        @media (max-width:768px) {
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }
        }
        .footer-grid h4 {
            color: #f7d875;
            margin-bottom: 14px;
            font-size: 1.1rem;
        }
        .footer-grid a {
            color: #cfc5b0;
            display: block;
            padding: 4px 0;
        }
        .footer-grid a:hover {
            color: #f7d875;
        }
        friend-link {
            display: block;
            background: rgba(255, 255, 255, .04);
            padding: 16px 20px;
            border-radius: 12px;
            margin-top: 8px;
        }
        friend-link a {
            display: inline-block;
            margin: 4px 12px 4px 0;
            color: #d4c5aa;
        }
        friend-link a:hover {
            color: #f7d875;
        }
        .copyright {
            text-align: center;
            padding-top: 24px;
            border-top: 1px solid rgba(255, 255, 255, .08);
            font-size: .85rem;
            color: #998f7e;
            max-width: 1200px;
            margin: 0 auto;
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                padding: 16px 0 8px;
                gap: 4px;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 12px 20px;
                width: 100%;
                border-radius: 8px;
            }
            .post h1 {
                font-size: 2rem;
            }
            .post h2 {
                font-size: 1.6rem;
            }
            .post h3 {
                font-size: 1.3rem;
            }
            .header-inner {
                padding: 10px 16px;
            }
            .my-logo {
                font-size: 1.5rem;
            }
            .breadcrumb {
                font-size: .75rem;
                padding: 6px 16px 8px;
            }
            .search-section {
                padding: 20px 16px;
            }
            .comment-card,
            .rating-card {
                padding: 20px;
            }
        }
        @media (max-width:480px) {
            .post h1 {
                font-size: 1.7rem;
            }
            .post h2 {
                font-size: 1.35rem;
            }
            .container {
                padding: 0 12px;
            }
            .btn-primary {
                width: 100%;
                justify-content: center;
            }
        }
        .scroll-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: #c0392b;
            color: #fff;
            width: 52px;
            height: 52px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            box-shadow: 0 6px 24px rgba(192, 57, 43, .3);
            transition: .25s;
            z-index: 50;
            border: none;
            cursor: pointer;
        }
        .scroll-top:hover {
            background: #a93226;
            transform: translateY(-6px);
            box-shadow: 0 12px 36px rgba(192, 57, 43, .4);
        }
