        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, sans-serif;
            background: #f8f7f4;
            color: #1f1f1f;
            line-height: 1.7;
            font-size: 17px;
            padding: 0 16px;
        }
        a {
            color: #b45f06;
            text-decoration: underline;
            transition: color 0.2s;
        }
        a:hover {
            color: #7a3d00;
            text-decoration: none;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            background: #ffffff;
            box-shadow: 0 0 40px rgba(0, 0, 0, 0.04);
            border-radius: 28px;
            padding: 20px 28px 40px;
            margin-top: 20px;
            margin-bottom: 40px;
        }
        header {
            padding: 16px 0 8px;
            border-bottom: 2px solid #efece6;
            margin-bottom: 20px;
        }
        .header-row {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 14px;
        }
        .my-logo {
            font-size: 28px;
            font-weight: 700;
            letter-spacing: -0.5px;
            background: linear-gradient(145deg, #2d1b0e, #5a3a1f);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .my-logo i {
            -webkit-text-fill-color: #b45f06;
            font-size: 32px;
        }
        .my-logo:hover {
            opacity: 0.8;
        }
        .my-logo small {
            font-size: 14px;
            -webkit-text-fill-color: #6b6b6b;
            font-weight: 400;
            letter-spacing: 0.2px;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            font-size: 30px;
            color: #2d1b0e;
            cursor: pointer;
            padding: 4px 8px;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: #f0ebe4;
        }
        .nav-menu {
            display: flex;
            flex-wrap: wrap;
            gap: 6px 18px;
            align-items: center;
            list-style: none;
        }
        .nav-menu li a {
            font-weight: 500;
            color: #2d1b0e;
            text-decoration: none;
            padding: 6px 0;
            border-bottom: 2px solid transparent;
            transition: border-color 0.2s, color 0.2s;
            font-size: 16px;
        }
        .nav-menu li a:hover {
            border-bottom-color: #b45f06;
            color: #b45f06;
        }
        .breadcrumb {
            font-size: 14px;
            color: #6b6b6b;
            padding: 10px 0 4px;
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
        }
        .breadcrumb a {
            color: #6b6b6b;
            text-decoration: none;
        }
        .breadcrumb a:hover {
            color: #b45f06;
        }
        .breadcrumb span {
            color: #b45f06;
        }
        .breadcrumb .sep {
            color: #bbb;
            margin: 0 4px;
        }
        .search-form {
            display: flex;
            max-width: 480px;
            margin: 24px 0 20px;
            border-radius: 60px;
            overflow: hidden;
            border: 1px solid #ddd8d0;
            background: #fcfcfb;
            transition: box-shadow 0.25s;
        }
        .search-form:focus-within {
            box-shadow: 0 0 0 3px rgba(180, 95, 6, 0.2);
            border-color: #b45f06;
        }
        .search-form input {
            flex: 1;
            border: none;
            padding: 14px 20px;
            font-size: 16px;
            background: transparent;
            outline: none;
            color: #1f1f1f;
        }
        .search-form button {
            background: #b45f06;
            border: none;
            color: #fff;
            padding: 0 24px;
            font-size: 18px;
            cursor: pointer;
            transition: background 0.2s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-form button:hover {
            background: #7a3d00;
        }
        h1 {
            font-size: 2.6rem;
            font-weight: 800;
            line-height: 1.2;
            margin: 0.3em 0 0.4em;
            color: #1f1206;
            letter-spacing: -0.02em;
        }
        h2 {
            font-size: 1.9rem;
            font-weight: 700;
            margin: 1.6em 0 0.5em;
            color: #2d1b0e;
            border-left: 6px solid #b45f06;
            padding-left: 18px;
        }
        h3 {
            font-size: 1.45rem;
            font-weight: 600;
            margin: 1.2em 0 0.4em;
            color: #3f2a16;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
            margin: 0.9em 0 0.3em;
            color: #4d3420;
        }
        p {
            margin: 0 0 1.1em;
            color: #2c2c2c;
        }
        .lead {
            font-size: 1.2rem;
            color: #3d3d3d;
            font-weight: 400;
            line-height: 1.6;
        }
        strong {
            color: #1f1206;
        }
        .highlight-box {
            background: #faf6f0;
            border-radius: 16px;
            padding: 24px 28px;
            margin: 28px 0;
            border-left: 6px solid #b45f06;
        }
        .emoji-big {
            font-size: 1.8rem;
            vertical-align: middle;
        }
        .featured-image {
            margin: 32px 0;
            border-radius: 16px;
            overflow: hidden;
            background: #f0ebe4;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
        }
        .featured-image img {
            width: 100%;
            max-height: 520px;
            object-fit: cover;
        }
        .featured-image figcaption {
            padding: 12px 20px;
            font-size: 15px;
            color: #5a5a5a;
            background: #fcf9f5;
            border-top: 1px solid #e8e1d8;
        }
        .link-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
            gap: 12px 20px;
            margin: 18px 0 28px;
            padding: 0;
            list-style: none;
        }
        .link-grid li a {
            display: block;
            padding: 12px 16px;
            background: #faf6f0;
            border-radius: 12px;
            color: #2d1b0e;
            text-decoration: none;
            font-weight: 500;
            border: 1px solid #ece5db;
            transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
        }
        .link-grid li a:hover {
            background: #efe6da;
            transform: translateY(-2px);
            box-shadow: 0 6px 14px rgba(180, 95, 6, 0.1);
        }
        .link-grid li a i {
            color: #b45f06;
            margin-right: 10px;
        }
        .interaction-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            margin: 40px 0 20px;
        }
        .card-form {
            background: #fcfaf7;
            border: 1px solid #e8e1d8;
            border-radius: 20px;
            padding: 24px 28px;
            transition: box-shadow 0.25s;
        }
        .card-form:hover {
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
        }
        .card-form h4 {
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1.3rem;
        }
        .card-form input,
        .card-form textarea,
        .card-form select {
            width: 100%;
            padding: 12px 16px;
            border: 1px solid #ddd8d0;
            border-radius: 12px;
            font-size: 15px;
            background: #fff;
            margin-bottom: 14px;
            transition: border-color 0.2s;
            font-family: inherit;
        }
        .card-form input:focus,
        .card-form textarea:focus,
        .card-form select:focus {
            outline: none;
            border-color: #b45f06;
            box-shadow: 0 0 0 2px rgba(180, 95, 6, 0.12);
        }
        .card-form textarea {
            min-height: 80px;
            resize: vertical;
        }
        .card-form .btn-submit {
            background: #b45f06;
            color: #fff;
            border: none;
            padding: 12px 28px;
            border-radius: 60px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }
        .card-form .btn-submit:hover {
            background: #7a3d00;
            transform: scale(0.98);
        }
        .star-rating {
            display: flex;
            gap: 6px;
            font-size: 28px;
            color: #d4c9bc;
            cursor: pointer;
            margin-bottom: 14px;
            direction: rtl;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            transition: color 0.15s;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #f5b342;
        }
        footer {
            margin-top: 48px;
            padding-top: 28px;
            border-top: 2px solid #efece6;
            font-size: 15px;
            color: #4a4a4a;
        }
        footer .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 32px;
        }
        friend-link {
            display: block;
            margin: 16px 0 8px;
            font-weight: 500;
        }
        friend-link a {
            display: inline-block;
            margin-right: 20px;
            color: #4a4a4a;
            text-decoration: none;
            border-bottom: 1px dotted #ccc;
        }
        friend-link a:hover {
            color: #b45f06;
            border-bottom-color: #b45f06;
        }
        .copyright {
            text-align: center;
            padding: 24px 0 10px;
            font-size: 14px;
            color: #7a7a7a;
            border-top: 1px solid #e8e1d8;
            margin-top: 24px;
        }
        .last-update {
            background: #f5f1eb;
            padding: 8px 18px;
            border-radius: 40px;
            font-size: 14px;
            display: inline-block;
            margin: 8px 0 16px;
            color: #4a4a4a;
        }
        @media (max-width: 820px) {
            .container {
                padding: 16px 16px 32px;
                border-radius: 20px;
                margin-top: 12px;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            .interaction-section {
                grid-template-columns: 1fr;
            }
            footer .footer-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .header-row {
                flex-wrap: wrap;
            }
            .hamburger {
                display: block;
            }
            .nav-menu {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: flex-start;
                padding: 12px 0 8px;
                gap: 2px;
            }
            .nav-menu.show {
                display: flex;
            }
            .nav-menu li a {
                padding: 10px 0;
                font-size: 17px;
                display: block;
                width: 100%;
                border-bottom: 1px solid #f0ebe4;
            }
            .link-grid {
                grid-template-columns: 1fr;
            }
            .search-form {
                max-width: 100%;
            }
        }
        @media (max-width: 480px) {
            body {
                padding: 0 8px;
            }
            .container {
                padding: 12px 12px 24px;
                border-radius: 16px;
            }
            h1 {
                font-size: 1.6rem;
            }
            .my-logo {
                font-size: 22px;
            }
            .my-logo small {
                font-size: 11px;
            }
            .card-form {
                padding: 16px 18px;
            }
            .star-rating {
                font-size: 24px;
            }
        }
        .flex-between {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
        }
        .mt-2 {
            margin-top: 20px;
        }
        .mb-1 {
            margin-bottom: 10px;
        }
        .text-muted {
            color: #6b6b6b;
        }
        .section-icon {
            color: #b45f06;
            margin-right: 8px;
        }
        .badge {
            background: #b45f06;
            color: #fff;
            padding: 2px 12px;
            border-radius: 40px;
            font-size: 13px;
            font-weight: 600;
            display: inline-block;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 20px 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            font-size: 15px;
        }
        table th {
            background: #f0ebe4;
            text-align: left;
            padding: 12px 16px;
            font-weight: 600;
        }
        table td {
            padding: 10px 16px;
            border-bottom: 1px solid #ece5db;
        }
        table tr:hover td {
            background: #faf6f0;
        }
