        *,
        *::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: #1e2a2f;
            line-height: 1.7;
            padding: 0;
            margin: 0;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        a {
            color: #b45309;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover {
            color: #7c2d12;
            text-decoration: underline;
        }
        ul,
        ol {
            padding-left: 1.6rem;
        }
        li {
            margin-bottom: 0.4rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.2rem;
        }
        header {
            background: linear-gradient(145deg, #1e3a3f 0%, #0f2a2e 100%);
            color: #f5efe6;
            padding: 1rem 0;
            border-bottom: 4px solid #e8b84b;
            position: sticky;
            top: 0;
            z-index: 100;
            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.8rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            color: #f5efe6;
            background: rgba(232, 184, 75, 0.18);
            padding: 0.2rem 1rem 0.2rem 0.8rem;
            border-radius: 40px 12px 12px 40px;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            border-left: 4px solid #e8b84b;
            transition: 0.3s;
        }
        .my-logo i {
            color: #e8b84b;
            font-size: 1.6rem;
        }
        .my-logo:hover {
            background: rgba(232, 184, 75, 0.30);
            text-decoration: none;
            transform: scale(1.02);
        }
        .main-nav {
            display: flex;
            align-items: center;
            gap: 1.2rem;
        }
        .main-nav a {
            color: #e8e0d4;
            font-weight: 500;
            padding: 0.3rem 0.6rem;
            border-radius: 6px;
            transition: 0.25s;
            font-size: 0.95rem;
        }
        .main-nav a:hover {
            background: rgba(232, 184, 75, 0.25);
            color: #e8b84b;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #f5efe6;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.2rem 0.6rem;
            border-radius: 8px;
            transition: 0.2s;
        }
        .hamburger:hover {
            background: rgba(232, 184, 75, 0.2);
        }
        .breadcrumb {
            background: #ece8e0;
            padding: 0.6rem 0;
            font-size: 0.9rem;
            border-bottom: 1px solid #d6cdc0;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem 0.6rem;
            padding: 0;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 0.6rem;
            color: #8a7a6a;
            font-weight: 700;
        }
        .breadcrumb a {
            color: #6b5a4a;
        }
        .breadcrumb .current {
            color: #1e2a2f;
            font-weight: 600;
        }
        .hero {
            background: linear-gradient(135deg, #f5efe6 0%, #e8e0d4 100%);
            padding: 2.5rem 0 2rem;
            border-bottom: 2px solid #d6cdc0;
        }
        .hero-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            align-items: center;
        }
        .hero h1 {
            font-size: 2.6rem;
            font-weight: 800;
            line-height: 1.2;
            color: #1e3a3f;
            margin-bottom: 0.8rem;
        }
        .hero h1 i {
            color: #b45309;
            margin-right: 0.3rem;
        }
        .hero p {
            font-size: 1.15rem;
            color: #3d4f55;
            max-width: 90%;
        }
        .hero-img {
            border-radius: 16px;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.13);
            transition: transform 0.4s ease;
        }
        .hero-img:hover {
            transform: scale(1.01);
        }
        .search-section {
            background: #fffcf7;
            padding: 1.4rem 0;
            border-bottom: 1px solid #e3d9ce;
        }
        .search-form {
            display: flex;
            max-width: 600px;
            margin: 0 auto;
            border-radius: 60px;
            overflow: hidden;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
        }
        .search-form input {
            flex: 1;
            border: none;
            padding: 0.9rem 1.5rem;
            font-size: 1rem;
            background: #fff;
            outline: none;
            font-family: inherit;
        }
        .search-form button {
            background: #b45309;
            color: #fff;
            border: none;
            padding: 0 1.8rem;
            font-size: 1.1rem;
            cursor: pointer;
            transition: 0.25s;
            font-weight: 600;
        }
        .search-form button:hover {
            background: #7c2d12;
        }
        main {
            padding: 2.5rem 0 3rem;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 2.5rem;
        }
        .article-body h2 {
            font-size: 2rem;
            color: #1e3a3f;
            margin-top: 2.8rem;
            margin-bottom: 1rem;
            border-bottom: 3px solid #e8b84b;
            padding-bottom: 0.4rem;
        }
        .article-body h3 {
            font-size: 1.5rem;
            color: #2d4a52;
            margin-top: 2rem;
            margin-bottom: 0.6rem;
        }
        .article-body h4 {
            font-size: 1.2rem;
            color: #3d5a62;
            margin-top: 1.4rem;
            margin-bottom: 0.4rem;
            font-weight: 600;
        }
        .article-body p {
            margin-bottom: 1.2rem;
            color: #2a3a40;
        }
        .article-body ul,
        .article-body ol {
            margin-bottom: 1.4rem;
        }
        .highlight-box {
            background: #eef4f0;
            border-left: 5px solid #b45309;
            padding: 1.2rem 1.6rem;
            border-radius: 8px;
            margin: 1.6rem 0;
        }
        .highlight-box strong {
            color: #1e3a3f;
        }
        .insight-card {
            background: #fffcf7;
            border: 1px solid #e3d9ce;
            border-radius: 14px;
            padding: 1.4rem 1.6rem;
            margin: 1.6rem 0;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
        }
        .insight-card i {
            color: #b45309;
            margin-right: 0.4rem;
        }
        .player-quote {
            font-style: italic;
            background: #f5efe6;
            padding: 1.2rem 1.8rem;
            border-radius: 14px;
            position: relative;
            margin: 1.6rem 0;
            border: 1px solid #d6cdc0;
        }
        .player-quote::before {
            content: "“";
            font-size: 3.2rem;
            color: #b45309;
            position: absolute;
            top: -0.2rem;
            left: 0.8rem;
            font-family: serif;
        }
        .player-quote p {
            margin-bottom: 0.4rem;
        }
        .player-quote cite {
            display: block;
            text-align: right;
            font-weight: 600;
            color: #6b5a4a;
            font-style: normal;
        }
        .sidebar {
            position: sticky;
            top: 100px;
            align-self: start;
        }
        .sidebar-card {
            background: #fffcf7;
            border: 1px solid #e3d9ce;
            border-radius: 16px;
            padding: 1.4rem 1.2rem;
            margin-bottom: 1.8rem;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
        }
        .sidebar-card h3 {
            font-size: 1.2rem;
            color: #1e3a3f;
            margin-bottom: 0.8rem;
            border-bottom: 2px solid #e8b84b;
            padding-bottom: 0.3rem;
        }
        .sidebar-link-list {
            list-style: none;
            padding: 0;
        }
        .sidebar-link-list li {
            margin-bottom: 0.5rem;
            border-bottom: 1px dashed #e3d9ce;
            padding-bottom: 0.5rem;
        }
        .sidebar-link-list a {
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        .sidebar-link-list a i {
            color: #b45309;
            font-size: 0.8rem;
        }
        .interaction-area {
            margin-top: 2.4rem;
            padding-top: 1.4rem;
            border-top: 2px solid #e3d9ce;
        }
        .rating-stars {
            display: flex;
            gap: 0.3rem;
            font-size: 1.8rem;
            color: #d6cdc0;
            cursor: pointer;
            transition: 0.2s;
        }
        .rating-stars i.active {
            color: #e8b84b;
        }
        .rating-stars i:hover,
        .rating-stars i.hover {
            color: #e8b84b;
            transform: scale(1.1);
        }
        .rating-form button {
            background: #b45309;
            color: #fff;
            border: none;
            padding: 0.5rem 1.4rem;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: 0.25s;
            margin-top: 0.6rem;
        }
        .rating-form button:hover {
            background: #7c2d12;
        }
        .comment-form textarea {
            width: 100%;
            border: 1px solid #d6cdc0;
            border-radius: 12px;
            padding: 0.8rem 1rem;
            font-family: inherit;
            font-size: 0.95rem;
            resize: vertical;
            min-height: 100px;
            background: #fffcf7;
        }
        .comment-form input[type="text"] {
            width: 100%;
            border: 1px solid #d6cdc0;
            border-radius: 30px;
            padding: 0.7rem 1.2rem;
            font-family: inherit;
            font-size: 0.95rem;
            background: #fffcf7;
        }
        .comment-form .form-row {
            display: flex;
            gap: 0.8rem;
            flex-wrap: wrap;
            margin: 0.6rem 0;
        }
        .comment-form .form-row>* {
            flex: 1;
            min-width: 180px;
        }
        .comment-form button {
            background: #1e3a3f;
            color: #fff;
            border: none;
            padding: 0.7rem 1.8rem;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: 0.25s;
        }
        .comment-form button:hover {
            background: #0f2a2e;
        }
        footer {
            background: #1e3a3f;
            color: #d6cdc0;
            padding: 2.5rem 0 1.2rem;
            border-top: 4px solid #e8b84b;
        }
        footer .container {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 2rem;
        }
        footer h4 {
            color: #e8b84b;
            font-size: 1.1rem;
            margin-bottom: 0.8rem;
            letter-spacing: 0.3px;
        }
        footer a {
            color: #cbbfb0;
        }
        footer a:hover {
            color: #e8b84b;
        }
        .footer-links {
            list-style: none;
            padding: 0;
        }
        .footer-links li {
            margin-bottom: 0.4rem;
        }
        friend-link {
            display: block;
            background: rgba(232, 184, 75, 0.08);
            padding: 0.8rem 1.2rem;
            border-radius: 12px;
            border: 1px solid rgba(232, 184, 75, 0.2);
            margin: 0.6rem 0;
            font-size: 0.95rem;
        }
        friend-link a {
            color: #e8b84b;
            font-weight: 500;
        }
        .copyright {
            grid-column: 1 / -1;
            text-align: center;
            padding-top: 1.6rem;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            font-size: 0.9rem;
            color: #a89b8a;
            margin-top: 1.2rem;
        }
        .copyright strong {
            color: #e8b84b;
        }
        @media (max-width: 900px) {
            .hero-grid {
                grid-template-columns: 1fr;
                gap: 1.2rem;
            }
            .hero h1 {
                font-size: 2rem;
            }
            .hero p {
                max-width: 100%;
            }
            .content-grid {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
            }
            footer .container {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 700px) {
            .main-nav {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #0f2a2e;
                padding: 1rem 0.8rem;
                border-radius: 12px;
                margin-top: 0.6rem;
                gap: 0.3rem;
            }
            .main-nav.open {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .header-inner {
                position: relative;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .breadcrumb ol {
                font-size: 0.8rem;
            }
            footer .container {
                grid-template-columns: 1fr;
                gap: 1.4rem;
            }
            .hero h1 {
                font-size: 1.6rem;
            }
            .article-body h2 {
                font-size: 1.5rem;
            }
            .article-body h3 {
                font-size: 1.25rem;
            }
            .rating-stars {
                font-size: 1.5rem;
            }
        }
        @media (max-width: 480px) {
            html {
                font-size: 15px;
            }
            .container {
                padding: 0 0.8rem;
            }
            .search-form input {
                padding: 0.7rem 1rem;
                font-size: 0.9rem;
            }
            .search-form button {
                padding: 0 1.2rem;
                font-size: 1rem;
            }
            .comment-form .form-row {
                flex-direction: column;
            }
        }
        .last-updated {
            font-size: 0.9rem;
            color: #8a7a6a;
            display: flex;
            align-items: center;
            gap: 0.4rem;
            margin-bottom: 1rem;
        }
        .last-updated i {
            color: #b45309;
        }
        .text-accent {
            color: #b45309;
        }
        .emoji-lg {
            font-size: 1.4rem;
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .flex-center {
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
