        *,
        *::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: #f8f7f2;
            color: #1e1e1e;
            line-height: 1.7;
            padding: 0 16px;
        }
        a {
            color: #b45309;
            text-decoration: underline;
            text-underline-offset: 2px;
            transition: color 0.2s;
        }
        a:hover {
            color: #78350f;
            text-decoration-thickness: 2px;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        hr {
            border: none;
            border-top: 2px dashed #d9c8a9;
            margin: 2rem 0;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            background: #ffffff;
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
            border-radius: 24px;
            padding: 16px 24px 32px;
        }
        @media (min-width: 768px) {
            body {
                padding: 20px 32px;
            }
            .container {
                padding: 24px 48px 48px;
            }
        }
        .site-header {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding: 16px 0 12px;
            border-bottom: 2px solid #e6d7c2;
            position: relative;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #7c2d12, #b45309);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        .my-logo i {
            background: #7c2d12;
            color: #fff;
            padding: 6px 8px;
            border-radius: 12px;
            font-size: 1.2rem;
            -webkit-text-fill-color: #fff;
        }
        .my-logo:hover {
            opacity: 0.85;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.6rem;
            color: #5c3d2e;
            cursor: pointer;
            padding: 4px 10px;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: #f0e6d8;
        }
        .nav-list {
            display: flex;
            flex-wrap: wrap;
            gap: 4px 12px;
            list-style: none;
            align-items: center;
        }
        .nav-list li a {
            display: block;
            padding: 6px 12px;
            border-radius: 20px;
            font-weight: 500;
            font-size: 0.9rem;
            text-decoration: none;
            color: #5c3d2e;
            background: transparent;
            transition: background 0.2s, color 0.2s;
        }
        .nav-list li a:hover,
        .nav-list li a.active {
            background: #7c2d12;
            color: #fff;
        }
        @media (max-width: 767px) {
            .nav-toggle {
                display: block;
            }
            .nav-list {
                display: none;
                flex-direction: column;
                width: 100%;
                margin-top: 12px;
                background: #faf6f0;
                border-radius: 16px;
                padding: 12px 8px;
                gap: 2px;
            }
            .nav-list.open {
                display: flex;
            }
            .nav-list li a {
                padding: 10px 16px;
                border-radius: 12px;
            }
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            gap: 6px 10px;
            padding: 12px 0 8px;
            font-size: 0.85rem;
            color: #7a6b5a;
            list-style: none;
        }
        .breadcrumb li+li::before {
            content: "▸";
            margin-right: 8px;
            color: #b9a48b;
        }
        .breadcrumb a {
            text-decoration: none;
            color: #7a6b5a;
        }
        .breadcrumb a:hover {
            color: #b45309;
        }
        .breadcrumb .current {
            color: #4a3a2a;
            font-weight: 600;
        }
        h1 {
            font-size: 2.2rem;
            font-weight: 800;
            line-height: 1.2;
            color: #3d2a1a;
            margin: 0.5rem 0 0.8rem;
        }
        h2 {
            font-size: 1.6rem;
            font-weight: 700;
            color: #4a3424;
            margin: 2rem 0 0.8rem;
            border-left: 5px solid #b45309;
            padding-left: 16px;
        }
        h3 {
            font-size: 1.25rem;
            font-weight: 600;
            color: #5c4030;
            margin: 1.6rem 0 0.6rem;
        }
        h4 {
            font-size: 1.05rem;
            font-weight: 600;
            color: #6b4c3a;
            margin: 1.2rem 0 0.4rem;
        }
        p {
            margin-bottom: 1rem;
        }
        .lead {
            font-size: 1.15rem;
            color: #3d2e1e;
            font-weight: 400;
            background: #fdf9f3;
            padding: 16px 20px;
            border-radius: 16px;
            border-left: 4px solid #b45309;
        }
        .featured-img {
            margin: 1.8rem 0;
            border-radius: 16px;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
        }
        .featured-img figcaption {
            font-size: 0.85rem;
            color: #6b5a48;
            text-align: center;
            padding: 10px 0 4px;
            font-style: italic;
        }
        .card-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 20px;
            margin: 1.8rem 0;
        }
        @media (min-width: 600px) {
            .card-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (min-width: 900px) {
            .card-grid {
                grid-template-columns: 1fr 1fr 1fr;
            }
        }
        .card {
            background: #fcf9f5;
            border-radius: 16px;
            padding: 20px 18px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
            border: 1px solid #ece3d8;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
        }
        .card h3 {
            margin-top: 0;
        }
        .card i {
            color: #b45309;
            margin-right: 6px;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 1.5rem 0;
            border-radius: 12px;
            border: 1px solid #e6d7c2;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.95rem;
            min-width: 480px;
        }
        th,
        td {
            padding: 12px 16px;
            text-align: left;
            border-bottom: 1px solid #e6d7c2;
        }
        th {
            background: #7c2d12;
            color: #fff;
            font-weight: 600;
        }
        tr:nth-child(even) {
            background: #fcf9f5;
        }
        tr:hover {
            background: #f5ede3;
        }
        .search-box {
            display: flex;
            gap: 8px;
            max-width: 560px;
            margin: 1.8rem 0;
            flex-wrap: wrap;
        }
        .search-box input {
            flex: 1;
            min-width: 160px;
            padding: 14px 18px;
            border: 2px solid #d9c8a9;
            border-radius: 60px;
            font-size: 1rem;
            background: #fff;
            transition: border-color 0.2s;
        }
        .search-box input:focus {
            outline: none;
            border-color: #b45309;
        }
        .search-box button {
            padding: 14px 28px;
            background: #7c2d12;
            color: #fff;
            border: none;
            border-radius: 60px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
        }
        .search-box button:hover {
            background: #5c1f0a;
            transform: scale(1.02);
        }
        .search-box button i {
            margin-right: 6px;
        }
        .interaction-panel {
            background: #fcf9f5;
            border-radius: 20px;
            padding: 24px 20px;
            margin: 2rem 0;
            border: 1px solid #ece3d8;
        }
        .interaction-panel h2 {
            border-left-color: #7c2d12;
            margin-top: 0;
        }
        .form-group {
            margin-bottom: 16px;
        }
        .form-group label {
            display: block;
            font-weight: 600;
            margin-bottom: 4px;
            color: #4a3424;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid #d9c8a9;
            border-radius: 12px;
            font-size: 1rem;
            background: #fff;
            transition: border-color 0.2s;
            font-family: inherit;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: #b45309;
        }
        .form-group textarea {
            resize: vertical;
            min-height: 90px;
        }
        .btn-primary {
            padding: 14px 32px;
            background: #7c2d12;
            color: #fff;
            border: none;
            border-radius: 60px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
        }
        .btn-primary:hover {
            background: #5c1f0a;
            transform: scale(1.02);
        }
        .btn-primary i {
            margin-right: 8px;
        }
        .rating-stars {
            display: flex;
            gap: 6px;
            font-size: 1.6rem;
            color: #d9c8a9;
            cursor: pointer;
            direction: rtl;
        }
        .rating-stars i {
            transition: color 0.2s, transform 0.1s;
        }
        .rating-stars i:hover,
        .rating-stars i:hover~i {
            color: #eab308;
            transform: scale(1.1);
        }
        .rating-stars .active {
            color: #eab308;
        }
        .site-footer {
            margin-top: 3rem;
            padding: 28px 0 12px;
            border-top: 2px solid #e6d7c2;
            font-size: 0.9rem;
            color: #5c4a38;
        }
        .site-footer friend-link {
            display: block;
            margin: 8px 0;
            padding: 8px 0;
        }
        .site-footer friend-link a {
            display: inline-block;
            margin: 4px 12px 4px 0;
            padding: 4px 12px;
            background: #f5ede3;
            border-radius: 20px;
            text-decoration: none;
            font-weight: 500;
            font-size: 0.85rem;
            color: #5c3d2e;
            transition: background 0.2s;
        }
        .site-footer friend-link a:hover {
            background: #e6d7c2;
        }
        .copyright {
            text-align: center;
            padding: 12px 0 4px;
            font-size: 0.82rem;
            color: #8a7a6a;
            border-top: 1px solid #ece3d8;
            margin-top: 12px;
        }
        .copyright span {
            font-weight: 600;
            color: #4a3424;
        }
        .text-muted {
            color: #6b5a48;
            font-size: 0.9rem;
        }
        .badge {
            display: inline-block;
            background: #b45309;
            color: #fff;
            padding: 2px 12px;
            border-radius: 30px;
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.3px;
        }
        .emoji-big {
            font-size: 1.8rem;
            line-height: 1;
        }
        .last-updated {
            font-size: 0.85rem;
            color: #8a7a6a;
            display: flex;
            align-items: center;
            gap: 6px;
            margin: 6px 0 12px;
        }
        .last-updated i {
            color: #b45309;
        }
        .blockquote {
            background: #f5ede3;
            padding: 18px 22px;
            border-radius: 16px;
            border-left: 4px solid #b45309;
            margin: 1.5rem 0;
            font-style: italic;
            color: #3d2e1e;
        }
        .blockquote cite {
            display: block;
            margin-top: 8px;
            font-style: normal;
            font-weight: 600;
            font-size: 0.9rem;
            color: #6b4c3a;
        }
        @media (max-width: 480px) {
            h1 {
                font-size: 1.6rem;
            }
            h2 {
                font-size: 1.25rem;
            }
            .container {
                padding: 12px 12px 24px;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .search-box button {
                padding: 12px 18px;
                font-size: 0.9rem;
            }
            .interaction-panel {
                padding: 16px 12px;
            }
        }
