        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Nunito', 'Segoe UI', system-ui, sans-serif;
            background: #FFF9F5;
            color: #2D2A24;
            line-height: 1.7;
            -webkit-font-smoothing: antialiased;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            color: #E85D3A;
            text-decoration: none;
            transition: color 0.2s, opacity 0.2s;
        }
        a:hover {
            color: #C94A2A;
            opacity: 0.9;
        }
        ul {
            list-style: none;
        }
        h1,
        h2,
        h3,
        h4 {
            font-family: 'Fredoka One', 'Nunito', system-ui, sans-serif;
            line-height: 1.2;
            color: #1F1B17;
            margin-bottom: 0.5rem;
        }
        h1 {
            font-size: clamp(2rem, 5vw, 3.2rem);
            letter-spacing: -0.01em;
        }
        h2 {
            font-size: clamp(1.5rem, 3.5vw, 2.2rem);
            margin-top: 2.8rem;
            border-bottom: 4px solid #FFD166;
            padding-bottom: 0.3rem;
            display: inline-block;
        }
        h3 {
            font-size: clamp(1.2rem, 2.5vw, 1.6rem);
            margin-top: 2rem;
            color: #E85D3A;
        }
        h4 {
            font-size: clamp(1rem, 2vw, 1.25rem);
            margin-top: 1.2rem;
            color: #2D2A24;
        }
        p {
            margin-bottom: 1rem;
        }
        .text-muted {
            color: #6B625A;
        }
        .text-sm {
            font-size: 0.9rem;
        }
        .container {
            max-width: 1160px;
            margin: 0 auto;
            padding: 0 1.2rem;
        }
        .site-header {
            background: #1F1B17;
            color: #FFF;
            padding: 0.6rem 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.5rem 1rem;
        }
        .my-logo {
            font-family: 'Fredoka One', cursive;
            font-size: 1.6rem;
            color: #FFD166;
            letter-spacing: 0.02em;
            transition: transform 0.2s;
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        .my-logo:hover {
            transform: scale(1.03);
            color: #FFE066;
        }
        .my-logo i {
            color: #FF6B6B;
            font-size: 1.4rem;
        }
        .my-logo span {
            color: #FFF;
            font-weight: 300;
        }
        .nav-wrap {
            display: flex;
            align-items: center;
            gap: 0.8rem;
        }
        .nav-list {
            display: flex;
            gap: 0.2rem;
            flex-wrap: wrap;
        }
        .nav-list a {
            padding: 0.4rem 0.9rem;
            border-radius: 40px;
            font-weight: 600;
            font-size: 0.9rem;
            color: #F0EBE6;
            transition: background 0.25s, color 0.25s;
        }
        .nav-list a:hover {
            background: #E85D3A;
            color: #FFF;
        }
        .nav-list a.active {
            background: #E85D3A;
            color: #FFF;
        }
        .hamburger {
            display: none;
            background: none;
            border: 2px solid #F0EBE6;
            border-radius: 8px;
            color: #F0EBE6;
            font-size: 1.4rem;
            padding: 0.3rem 0.7rem;
            cursor: pointer;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: rgba(255, 255, 255, 0.08);
        }
        .breadcrumb {
            background: #F5EDE6;
            padding: 0.6rem 0;
            font-size: 0.85rem;
            border-bottom: 1px solid #E5D9D0;
        }
        .breadcrumb ol {
            display: flex;
            flex-wrap: wrap;
            gap: 0.2rem 0.6rem;
            align-items: center;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 0.6rem;
            color: #B0A89E;
            font-weight: 700;
        }
        .breadcrumb a {
            color: #7A6F66;
        }
        .breadcrumb .current {
            color: #E85D3A;
            font-weight: 700;
        }
        .hero {
            background: linear-gradient(135deg, #1F1B17 0%, #3A2E26 100%);
            color: #FFF;
            padding: 3rem 0 2.8rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .hero::after {
            content: "🐾🎮";
            position: absolute;
            right: -20px;
            bottom: -20px;
            font-size: 8rem;
            opacity: 0.06;
            pointer-events: none;
        }
        .hero h1 {
            color: #FFD166;
            margin-bottom: 0.6rem;
        }
        .hero p {
            font-size: 1.15rem;
            max-width: 720px;
            margin: 0 auto 1.2rem;
            color: #E5DDD5;
        }
        .hero .meta-info {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 0.6rem 2rem;
            font-size: 0.9rem;
            color: #C5B8AC;
        }
        .hero .meta-info i {
            margin-right: 0.3rem;
            color: #FFD166;
        }
        .search-section {
            background: #FFF;
            padding: 1.6rem 0;
            border-bottom: 1px solid #E5D9D0;
        }
        .search-form {
            display: flex;
            max-width: 580px;
            margin: 0 auto;
            border-radius: 60px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
            border: 2px solid #E5D9D0;
            transition: border-color 0.3s;
        }
        .search-form:focus-within {
            border-color: #E85D3A;
        }
        .search-form input {
            flex: 1;
            border: none;
            padding: 0.9rem 1.4rem;
            font-size: 1rem;
            font-family: inherit;
            outline: none;
            background: #FFF;
            color: #2D2A24;
        }
        .search-form button {
            background: #E85D3A;
            border: none;
            color: #FFF;
            padding: 0 1.6rem;
            font-size: 1.1rem;
            cursor: pointer;
            transition: background 0.25s;
            font-weight: 700;
        }
        .search-form button:hover {
            background: #C94A2A;
        }
        .content-wrap {
            padding: 2.5rem 0 3rem;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
        }
        .content-main {
            min-width: 0;
        }
        .card {
            background: #FFF;
            border-radius: 20px;
            padding: 1.6rem 1.8rem;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
            border: 1px solid #F0EBE6;
            margin-bottom: 2rem;
        }
        .card .card-title {
            font-size: 1.2rem;
            font-weight: 800;
            margin-bottom: 0.6rem;
            color: #1F1B17;
        }
        .feature-img {
            border-radius: 16px;
            overflow: hidden;
            margin: 1.8rem 0;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
            background: #F5EDE6;
        }
        .feature-img img {
            width: 100%;
            object-fit: cover;
        }
        .feature-img figcaption {
            padding: 0.6rem 1rem;
            font-size: 0.85rem;
            color: #6B625A;
            background: #FFF;
            border-top: 1px solid #F0EBE6;
        }
        .content-main ul,
        .content-main ol {
            margin: 0.6rem 0 1.2rem 1.8rem;
        }
        .content-main ul {
            list-style: disc;
        }
        .content-main ol {
            list-style: decimal;
        }
        .content-main li {
            margin-bottom: 0.3rem;
        }
        blockquote {
            border-left: 5px solid #E85D3A;
            background: #FDF6F0;
            padding: 1rem 1.6rem;
            margin: 1.4rem 0;
            border-radius: 0 12px 12px 0;
            font-style: italic;
            color: #3A2E26;
        }
        blockquote .attribution {
            font-style: normal;
            font-weight: 700;
            margin-top: 0.4rem;
            color: #E85D3A;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 1.4rem 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.95rem;
            background: #FFF;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
        }
        th,
        td {
            padding: 0.7rem 1rem;
            text-align: left;
            border-bottom: 1px solid #F0EBE6;
        }
        th {
            background: #1F1B17;
            color: #FFD166;
            font-weight: 700;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 0.03em;
        }
        tr:last-child td {
            border-bottom: none;
        }
        tr:hover td {
            background: #FFF9F5;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 1.6rem;
        }
        .sidebar .card {
            padding: 1.2rem 1.4rem;
        }
        .sidebar .card h3 {
            font-size: 1.1rem;
            margin-top: 0;
            border-bottom: 2px solid #FFD166;
            padding-bottom: 0.3rem;
            display: inline-block;
        }
        .sidebar .link-list a {
            display: block;
            padding: 0.4rem 0;
            border-bottom: 1px solid #F5EDE6;
            font-weight: 600;
            font-size: 0.95rem;
        }
        .sidebar .link-list a:last-child {
            border-bottom: none;
        }
        .sidebar .link-list a i {
            margin-right: 0.5rem;
            color: #E85D3A;
            width: 1.1rem;
            text-align: center;
        }
        .comment-form textarea,
        .comment-form input {
            width: 100%;
            padding: 0.7rem 1rem;
            border: 2px solid #E5D9D0;
            border-radius: 12px;
            font-family: inherit;
            font-size: 0.95rem;
            transition: border-color 0.3s;
            background: #FFF;
        }
        .comment-form textarea:focus,
        .comment-form input:focus {
            border-color: #E85D3A;
            outline: none;
        }
        .comment-form textarea {
            min-height: 100px;
            resize: vertical;
        }
        .comment-form .form-row {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }
        .comment-form .form-row>* {
            flex: 1 1 200px;
        }
        .btn {
            background: #E85D3A;
            color: #FFF;
            border: none;
            padding: 0.7rem 2rem;
            border-radius: 40px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.25s, transform 0.15s;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            font-family: inherit;
        }
        .btn:hover {
            background: #C94A2A;
            transform: translateY(-1px);
        }
        .btn-secondary {
            background: #FFD166;
            color: #1F1B17;
        }
        .btn-secondary:hover {
            background: #F5C14A;
        }
        .star-rating {
            display: flex;
            gap: 0.2rem;
            font-size: 1.8rem;
            direction: rtl;
            justify-content: flex-end;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            cursor: pointer;
            color: #E5D9D0;
            transition: color 0.2s;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #FFD166;
        }
        friend-link {
            display: block;
            padding: 2rem 0 1.5rem;
            border-top: 1px solid #E5D9D0;
            margin-top: 2rem;
        }
        friend-link .fl-head {
            font-weight: 700;
            font-size: 1.1rem;
            margin-bottom: 0.8rem;
            color: #1F1B17;
        }
        friend-link .fl-list {
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem 1.6rem;
        }
        friend-link .fl-list a {
            font-size: 0.9rem;
            color: #6B625A;
            border-bottom: 1px solid transparent;
            transition: border-color 0.2s, color 0.2s;
        }
        friend-link .fl-list a:hover {
            border-bottom-color: #E85D3A;
            color: #E85D3A;
        }
        .site-footer {
            background: #1F1B17;
            color: #C5B8AC;
            padding: 2rem 0 1.2rem;
            font-size: 0.9rem;
        }
        .site-footer .footer-inner {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 1rem;
        }
        .site-footer a {
            color: #FFD166;
        }
        .site-footer a:hover {
            color: #FFF;
        }
        .site-footer .copyright {
            color: #8A7E74;
            font-size: 0.85rem;
        }
        @media (max-width: 820px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            .sidebar {
                order: 2;
            }
        }
        @media (max-width: 700px) {
            .hamburger {
                display: block;
            }
            .nav-list {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #2D261F;
                padding: 0.8rem 0.6rem;
                border-radius: 12px;
                margin-top: 0.4rem;
                gap: 0.2rem;
            }
            .nav-list.open {
                display: flex;
            }
            .nav-list a {
                padding: 0.5rem 1rem;
            }
            .header-inner {
                align-items: center;
            }
            .hero {
                padding: 2rem 0 1.8rem;
            }
            .hero h1 {
                font-size: 1.6rem;
            }
            .card {
                padding: 1.2rem;
            }
            .comment-form .form-row {
                flex-direction: column;
            }
            .star-rating {
                font-size: 1.4rem;
                justify-content: center;
            }
            table {
                font-size: 0.8rem;
            }
            th,
            td {
                padding: 0.4rem 0.6rem;
            }
            .site-footer .footer-inner {
                flex-direction: column;
                text-align: center;
            }
        }
        @media (max-width: 420px) {
            .my-logo {
                font-size: 1.2rem;
            }
            .search-form input {
                padding: 0.6rem 1rem;
                font-size: 0.9rem;
            }
            .search-form button {
                padding: 0 1rem;
                font-size: 0.9rem;
            }
            h2 {
                font-size: 1.3rem;
            }
            h3 {
                font-size: 1.1rem;
            }
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .mt-2 {
            margin-top: 2rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .mb-2 {
            margin-bottom: 2rem;
        }
        .gap-1 {
            gap: 1rem;
        }
        .flex-wrap {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
        }
        .text-center {
            text-align: center;
        }
        .fw-700 {
            font-weight: 700;
        }
        .highlight {
            background: #FFD166;
            padding: 0.1rem 0.3rem;
            border-radius: 4px;
            color: #1F1B17;
        }
        .emoji-lg {
            font-size: 1.4em;
            line-height: 1;
        }
        .feature-img img {
            transition: transform 0.4s ease;
        }
        .feature-img:hover img {
            transform: scale(1.01);
        }
        .toc {
            background: #FDF6F0;
            border-radius: 16px;
            padding: 1.2rem 1.6rem;
            border-left: 4px solid #E85D3A;
            margin: 1.4rem 0;
        }
        .toc .toc-title {
            font-weight: 800;
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
        }
        .toc ol {
            margin: 0;
            padding-left: 1.4rem;
        }
        .toc ol li {
            margin-bottom: 0.2rem;
        }
        .toc ol a {
            color: #2D2A24;
        }
        .toc ol a:hover {
            color: #E85D3A;
        }
        .table-wrap table {
            min-width: 400px;
        }
