        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
            background: #f8f6f2;
            color: #2d2a24;
            line-height: 1.7;
            -webkit-font-smoothing: antialiased;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            color: #b4542a;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover {
            color: #7a3a1c;
            text-decoration: underline;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        li {
            margin-bottom: 0.35rem;
        }
        .container {
            max-width: 1140px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: #1f2a36;
            border-bottom: 4px solid #b4542a;
            padding: 0.8rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 1.6rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #f0c27f, #b4542a);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: none;
            display: inline-block;
        }
        .my-logo:hover {
            text-decoration: none;
            opacity: 0.9;
        }
        .my-logo small {
            font-size: 0.7rem;
            -webkit-text-fill-color: #aaa;
            color: #aaa;
            font-weight: 400;
            letter-spacing: 0.3px;
            display: block;
            line-height: 1.2;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid #b4542a;
            color: #f0c27f;
            font-size: 1.5rem;
            padding: 0.3rem 0.8rem;
            border-radius: 6px;
            cursor: pointer;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: rgba(180, 84, 42, 0.2);
        }
        .main-nav {
            display: flex;
            align-items: center;
            gap: 0.2rem;
            flex-wrap: wrap;
        }
        .main-nav a {
            color: #e8e0d4;
            padding: 0.4rem 0.9rem;
            border-radius: 5px;
            font-size: 0.9rem;
            font-weight: 500;
            transition: background 0.2s, color 0.2s;
            white-space: nowrap;
        }
        .main-nav a:hover {
            background: rgba(180, 84, 42, 0.25);
            color: #f0c27f;
            text-decoration: none;
        }
        .main-nav a.active {
            background: #b4542a;
            color: #fff;
        }
        .breadcrumb {
            background: #ece8e0;
            padding: 0.6rem 0;
            font-size: 0.85rem;
            border-bottom: 1px solid #ddd6cb;
        }
        .breadcrumb .container {
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem;
        }
        .breadcrumb a {
            color: #7a3a1c;
        }
        .breadcrumb span {
            color: #6b5e50;
        }
        .breadcrumb .sep {
            margin: 0 0.3rem;
            color: #b8a99a;
        }
        .hero {
            background: linear-gradient(135deg, #1f2a36 0%, #2c3a4a 100%);
            color: #f8f6f2;
            padding: 3rem 0 2.5rem;
            text-align: center;
            border-bottom: 4px solid #f0c27f;
        }
        .hero h1 {
            font-size: 2.6rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            line-height: 1.15;
            margin-bottom: 0.6rem;
            color: #f0c27f;
        }
        .hero p {
            font-size: 1.15rem;
            max-width: 780px;
            margin: 0 auto 1rem;
            opacity: 0.9;
        }
        .hero .meta {
            font-size: 0.9rem;
            color: #c5b8a8;
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            flex-wrap: wrap;
        }
        .hero .meta i {
            margin-right: 0.4rem;
            color: #f0c27f;
        }
        .search-section {
            background: #fff;
            padding: 1.5rem 0;
            border-bottom: 1px solid #e5ddd2;
        }
        .search-form {
            display: flex;
            max-width: 580px;
            margin: 0 auto;
            border-radius: 40px;
            overflow: hidden;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
            border: 2px solid #ddd6cb;
            transition: border-color 0.3s;
        }
        .search-form:focus-within {
            border-color: #b4542a;
        }
        .search-form input {
            flex: 1;
            padding: 0.8rem 1.2rem;
            border: none;
            font-size: 1rem;
            outline: none;
            background: #fcfaf7;
        }
        .search-form button {
            background: #b4542a;
            color: #fff;
            border: none;
            padding: 0 1.6rem;
            font-size: 1.1rem;
            cursor: pointer;
            transition: background 0.2s;
        }
        .search-form button:hover {
            background: #8f3f1f;
        }
        .content-wrap {
            padding: 2.5rem 0 3rem;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
        }
        .main-content h2 {
            font-size: 1.9rem;
            color: #1f2a36;
            border-left: 5px solid #b4542a;
            padding-left: 1rem;
            margin: 2.5rem 0 1rem;
            font-weight: 700;
        }
        .main-content h2:first-of-type {
            margin-top: 0;
        }
        .main-content h3 {
            font-size: 1.4rem;
            color: #2c3a4a;
            margin: 1.8rem 0 0.8rem;
            font-weight: 600;
        }
        .main-content h4 {
            font-size: 1.15rem;
            color: #3d4e5e;
            margin: 1.2rem 0 0.5rem;
            font-weight: 600;
            font-style: italic;
        }
        .main-content p {
            margin-bottom: 1.1rem;
            font-size: 1.05rem;
        }
        .main-content .intro-highlight {
            font-size: 1.15rem;
            background: #f0ece4;
            padding: 1.2rem 1.8rem;
            border-radius: 12px;
            border-left: 6px solid #b4542a;
            margin-bottom: 1.8rem;
        }
        .sidebar {
            position: sticky;
            top: 100px;
            align-self: start;
        }
        .sidebar-card {
            background: #fff;
            border-radius: 12px;
            padding: 1.5rem 1.2rem;
            box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
            margin-bottom: 1.8rem;
            border: 1px solid #e5ddd2;
        }
        .sidebar-card h3 {
            font-size: 1.1rem;
            color: #1f2a36;
            margin-bottom: 0.8rem;
            border-bottom: 2px solid #f0c27f;
            padding-bottom: 0.4rem;
        }
        .sidebar-card ul {
            list-style: none;
            padding: 0;
        }
        .sidebar-card li {
            padding: 0.35rem 0;
            border-bottom: 1px dashed #f0ece4;
        }
        .sidebar-card li:last-child {
            border-bottom: none;
        }
        .sidebar-card a {
            font-size: 0.92rem;
        }
        .featured-image {
            margin: 2rem 0;
            border-radius: 14px;
            overflow: hidden;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
            background: #e8e0d4;
        }
        .featured-image img {
            width: 100%;
            object-fit: cover;
            min-height: 220px;
            background: #d4cbbd;
        }
        .featured-image figcaption {
            background: #f8f6f2;
            padding: 0.6rem 1.2rem;
            font-size: 0.85rem;
            color: #6b5e50;
            font-style: italic;
            border-top: 1px solid #e5ddd2;
        }
        .game-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.5rem 0;
            font-size: 0.95rem;
            background: #fff;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 1px 8px rgba(0, 0, 0, 0.05);
        }
        .game-table th {
            background: #1f2a36;
            color: #f0c27f;
            padding: 0.7rem 1rem;
            text-align: left;
            font-weight: 600;
        }
        .game-table td {
            padding: 0.6rem 1rem;
            border-bottom: 1px solid #f0ece4;
        }
        .game-table tr:last-child td {
            border-bottom: none;
        }
        .game-table tr:hover td {
            background: #f8f4ed;
        }
        .blockquote {
            background: #f0ece4;
            border-left: 6px solid #b4542a;
            padding: 1.2rem 1.8rem;
            margin: 1.8rem 0;
            border-radius: 0 12px 12px 0;
            font-style: italic;
            font-size: 1.05rem;
            color: #2c3a4a;
        }
        .blockquote cite {
            display: block;
            margin-top: 0.6rem;
            font-size: 0.9rem;
            color: #7a3a1c;
            font-style: normal;
            font-weight: 500;
        }
        .interaction-section {
            background: #fff;
            border-radius: 16px;
            padding: 2rem 2rem 2.5rem;
            margin: 2.5rem 0;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
            border: 1px solid #e5ddd2;
        }
        .interaction-section h3 {
            font-size: 1.5rem;
            margin-bottom: 1.2rem;
            color: #1f2a36;
        }
        .form-group {
            margin-bottom: 1.2rem;
        }
        .form-group label {
            display: block;
            font-weight: 600;
            margin-bottom: 0.3rem;
            color: #2c3a4a;
        }
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 0.7rem 1rem;
            border: 2px solid #ddd6cb;
            border-radius: 8px;
            font-size: 1rem;
            font-family: inherit;
            transition: border-color 0.3s;
            background: #fcfaf7;
        }
        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #b4542a;
        }
        .form-group textarea {
            resize: vertical;
            min-height: 90px;
        }
        .btn {
            background: #b4542a;
            color: #fff;
            border: none;
            padding: 0.7rem 1.8rem;
            font-size: 1rem;
            font-weight: 600;
            border-radius: 30px;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        .btn:hover {
            background: #8f3f1f;
            transform: translateY(-1px);
            text-decoration: none;
        }
        .btn-secondary {
            background: #5a6b7a;
        }
        .btn-secondary:hover {
            background: #3d4e5e;
        }
        .star-rating {
            display: flex;
            gap: 0.3rem;
            font-size: 1.8rem;
            color: #ddd6cb;
            cursor: pointer;
            direction: rtl;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            cursor: pointer;
            transition: color 0.2s;
            color: #ddd6cb;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #f0c27f;
        }
        .star-rating label i {
            pointer-events: none;
        }
        .site-footer {
            background: #1f2a36;
            color: #d4ccbf;
            padding: 2.5rem 0 1.2rem;
            border-top: 4px solid #b4542a;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .site-footer h4 {
            color: #f0c27f;
            font-size: 1.1rem;
            margin-bottom: 0.8rem;
        }
        .site-footer a {
            color: #c5b8a8;
        }
        .site-footer a:hover {
            color: #f0c27f;
        }
        .site-footer friend-link {
            display: block;
            margin-top: 0.5rem;
        }
        .site-footer friend-link a {
            display: inline-block;
            margin-right: 1.2rem;
            margin-bottom: 0.3rem;
        }
        .copyright {
            border-top: 1px solid #3d4e5e;
            padding-top: 1.2rem;
            text-align: center;
            font-size: 0.85rem;
            color: #a99a8a;
        }
        .copyright strong {
            color: #f0c27f;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 1.2rem;
            }
            .sidebar .sidebar-card {
                margin-bottom: 0;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 768px) {
            .header-inner {
                flex-wrap: wrap;
            }
            .nav-toggle {
                display: block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: stretch;
                padding-top: 0.8rem;
                gap: 0.1rem;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 0.6rem 1rem;
                border-radius: 4px;
            }
            .hero h1 {
                font-size: 1.8rem;
            }
            .hero p {
                font-size: 1rem;
            }
            .hero .meta {
                flex-direction: column;
                gap: 0.4rem;
            }
            .sidebar {
                grid-template-columns: 1fr;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            .game-table {
                font-size: 0.8rem;
            }
            .game-table th,
            .game-table td {
                padding: 0.4rem 0.6rem;
            }
            .interaction-section {
                padding: 1.5rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 12px;
            }
            .my-logo {
                font-size: 1.2rem;
            }
            .hero h1 {
                font-size: 1.5rem;
            }
            .search-form input {
                padding: 0.6rem 0.8rem;
                font-size: 0.9rem;
            }
            .search-form button {
                padding: 0 1rem;
            }
            .main-content h2 {
                font-size: 1.5rem;
            }
            .main-content h3 {
                font-size: 1.2rem;
            }
        }
        .text-muted {
            color: #7a756a;
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .flex-between {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        .gap-1 {
            gap: 1rem;
        }
        .list-checks {
            list-style: none;
            padding-left: 0;
        }
        .list-checks li::before {
            content: "✅ ";
        }
        .emoji-lg {
            font-size: 1.4rem;
        }
