        *,
        *::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: #f9f7f2;
            color: #1e2a3a;
            line-height: 1.7;
            padding: 0 1rem;
        }
        a {
            color: #c84b1e;
            text-decoration: none;
            transition: color .2s;
        }
        a:hover {
            color: #8f2e0e;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        .container {
            max-width: 1120px;
            margin: 0 auto;
            padding: 0 0.5rem;
        }
        header {
            background: linear-gradient(145deg, #1e3a2f, #0f2a1f);
            padding: 0.8rem 1.5rem;
            border-radius: 0 0 20px 20px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 1.2rem;
            position: relative;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            color: #f5c542;
            text-shadow: 2px 2px 0 #b45f1b;
            background: rgba(255, 255, 255, 0.06);
            padding: 0.3rem 1.2rem;
            border-radius: 40px;
            display: inline-block;
            transition: transform .25s;
        }
        .my-logo:hover {
            transform: scale(1.04);
            text-decoration: none;
            color: #fcd16b;
        }
        .my-logo small {
            font-size: 0.55rem;
            font-weight: 400;
            color: #cdd9d0;
            display: block;
            letter-spacing: 0.3px;
        }
        .nav-wrapper {
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            font-size: 2rem;
            color: #f5c542;
            cursor: pointer;
            padding: 0.2rem 0.6rem;
            border-radius: 8px;
            transition: background .2s;
        }
        .hamburger:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        #nav-menu {
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem 0.8rem;
            list-style: none;
            align-items: center;
        }
        #nav-menu li a {
            color: #e8efe9;
            font-weight: 500;
            padding: 0.3rem 0.8rem;
            border-radius: 30px;
            font-size: 0.9rem;
            transition: background .2s, color .2s;
        }
        #nav-menu li a:hover {
            background: #f5c542;
            color: #1e2a3a;
            text-decoration: none;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            #nav-menu {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: #1e3a2f;
                flex-direction: column;
                padding: 1.2rem 1.8rem;
                border-radius: 0 0 20px 20px;
                z-index: 100;
                box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
            }
            #nav-menu.active {
                display: flex;
            }
            #nav-menu li a {
                font-size: 1rem;
                padding: 0.5rem 0;
            }
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem 0.8rem;
            background: #fff5e6;
            padding: 0.5rem 1.2rem;
            border-radius: 30px;
            margin-bottom: 1.6rem;
            font-size: 0.85rem;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
        }
        .breadcrumb a {
            color: #7a5a3a;
        }
        .breadcrumb span {
            color: #b77d4a;
        }
        .breadcrumb .sep {
            color: #b0a090;
        }
        h1 {
            font-size: 2.6rem;
            font-weight: 800;
            color: #1e3a2f;
            margin: 0.6rem 0 1.6rem;
            line-height: 1.2;
            border-left: 6px solid #f5c542;
            padding-left: 1.2rem;
        }
        h2 {
            font-size: 1.9rem;
            font-weight: 700;
            color: #1e3a2f;
            margin: 2.4rem 0 1rem;
            border-bottom: 3px solid #e8dcc8;
            padding-bottom: 0.4rem;
        }
        h3 {
            font-size: 1.45rem;
            font-weight: 600;
            color: #2b4d3e;
            margin: 1.8rem 0 0.8rem;
        }
        h4 {
            font-size: 1.15rem;
            font-weight: 600;
            color: #3f5f4e;
            margin: 1.2rem 0 0.4rem;
        }
        p {
            margin-bottom: 1.2rem;
            font-size: 1.02rem;
            color: #2c3a47;
        }
        .highlight {
            background: #fef4d9;
            padding: 0.1rem 0.4rem;
            border-radius: 6px;
            font-weight: 600;
        }
        .emoji-big {
            font-size: 1.4rem;
            margin-right: 0.3rem;
        }
        .content-card {
            background: #ffffff;
            border-radius: 20px;
            padding: 1.8rem 2rem;
            margin-bottom: 2rem;
            box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
            border: 1px solid #efebe3;
            transition: box-shadow .25s;
        }
        .content-card:hover {
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
        }
        .two-col {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
        }
        @media (max-width: 700px) {
            .two-col {
                grid-template-columns: 1fr;
                gap: 1.2rem;
            }
            h1 {
                font-size: 1.9rem;
            }
            .content-card {
                padding: 1.2rem 1.2rem;
            }
        }
        .img-wrap {
            margin: 1.8rem 0;
            border-radius: 16px;
            overflow: hidden;
            background: #e8e2d6;
            box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
        }
        .img-wrap figcaption {
            padding: 0.6rem 1.2rem;
            font-size: 0.85rem;
            color: #5f6b5a;
            background: #f4f0e8;
            font-style: italic;
        }
        .form-group {
            margin-bottom: 1rem;
        }
        .form-group label {
            font-weight: 600;
            display: block;
            margin-bottom: 0.3rem;
            font-size: 0.95rem;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 0.7rem 1rem;
            border: 2px solid #ddd6cb;
            border-radius: 12px;
            font-size: 1rem;
            background: #fcfaf7;
            transition: border .2s;
        }
        .form-group input:focus,
        .form-group textarea:focus {
            border-color: #c84b1e;
            outline: none;
            background: #fff;
        }
        .btn {
            background: #c84b1e;
            color: #fff;
            border: none;
            padding: 0.7rem 2rem;
            border-radius: 40px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: background .2s, transform .1s;
        }
        .btn:hover {
            background: #a63915;
            transform: scale(1.02);
        }
        .btn-secondary {
            background: #3f5f4e;
        }
        .btn-secondary:hover {
            background: #2a4738;
        }
        .star-rating {
            display: flex;
            gap: 0.4rem;
            font-size: 1.8rem;
            color: #d4c9b8;
            cursor: pointer;
            direction: rtl;
        }
        .star-rating i {
            transition: color .15s, transform .15s;
        }
        .star-rating i.active,
        .star-rating i:hover,
        .star-rating i:hover~i {
            color: #f5b342;
            transform: scale(1.1);
        }
        .comment-list {
            margin: 1.2rem 0;
        }
        .comment-item {
            padding: 0.8rem 1rem;
            border-left: 4px solid #f5c542;
            background: #f8f4ed;
            border-radius: 0 12px 12px 0;
            margin-bottom: 0.8rem;
        }
        .comment-item strong {
            color: #1e3a2f;
        }
        .comment-item small {
            color: #7a8a7a;
            font-size: 0.8rem;
        }
        friend-link {
            display: block;
            background: #f0ebe2;
            border-radius: 20px;
            padding: 1.6rem 2rem;
            margin: 2rem 0 1.2rem;
            border: 1px solid #ddd6c8;
        }
        friend-link ul {
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem 1.6rem;
            list-style: none;
            padding: 0;
            margin: 0.6rem 0 0;
        }
        friend-link ul li a {
            font-weight: 500;
            color: #2b4d3e;
        }
        friend-link ul li a:hover {
            color: #c84b1e;
        }
        footer {
            background: #1e3a2f;
            color: #d6e0d4;
            padding: 2rem 1.8rem;
            border-radius: 20px 20px 0 0;
            margin-top: 2.5rem;
            text-align: center;
            font-size: 0.9rem;
        }
        footer .copyright {
            margin-top: 0.8rem;
            border-top: 1px solid #3f5f4e;
            padding-top: 1rem;
            font-size: 0.8rem;
            color: #a8b8a8;
        }
        .schema-hidden {
            display: none;
        }
        .badge {
            background: #f5c542;
            color: #1e2a3a;
            font-weight: 700;
            padding: 0.1rem 0.8rem;
            border-radius: 30px;
            font-size: 0.75rem;
            display: inline-block;
        }
        .stat-number {
            font-size: 2rem;
            font-weight: 800;
            color: #c84b1e;
        }
        .flex-stats {
            display: flex;
            flex-wrap: wrap;
            gap: 1.6rem 3rem;
            margin: 1.2rem 0;
        }
        .flex-stats div {
            flex: 1 1 120px;
        }
        .quote {
            font-style: italic;
            background: #f4efe6;
            padding: 1.2rem 1.8rem;
            border-radius: 16px;
            border-left: 5px solid #c84b1e;
            margin: 1.4rem 0;
        }
        .quote cite {
            display: block;
            margin-top: 0.5rem;
            font-weight: 600;
            color: #2b4d3e;
        }
        @media (max-width: 480px) {
            .my-logo {
                font-size: 1.3rem;
                padding: 0.2rem 0.8rem;
            }
            .my-logo small {
                font-size: 0.5rem;
            }
            .btn {
                padding: 0.6rem 1.4rem;
                font-size: 0.9rem;
            }
        }
