        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
            background: #fef9f2;
            color: #1e1e2a;
            line-height: 1.7;
            padding: 0 1rem;
        }
        a {
            color: #c94b1f;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover {
            color: #7a2e12;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 1rem;
        }
        :root {
            --primary: #e85d1f;
            --primary-dark: #b8430e;
            --secondary: #f4a261;
            --accent: #2a9d8f;
            --gold: #e9c46a;
            --bg-warm: #fef9f2;
            --bg-card: #ffffff;
            --text-dark: #1e1e2a;
            --text-soft: #3d3d4a;
            --border-light: #f0e6d8;
            --shadow-sm: 0 4px 14px rgba(0, 0, 0, 0.06);
            --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.10);
            --radius: 16px;
            --radius-sm: 8px;
        }
        .site-header {
            background: #ffffff;
            border-bottom: 4px solid var(--gold);
            padding: 0.8rem 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: var(--shadow-sm);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 1rem;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #e85d1f, #b8430e);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            text-decoration: none !important;
        }
        .my-logo i {
            -webkit-text-fill-color: initial;
            color: var(--gold);
            font-size: 2rem;
        }
        .my-logo:hover {
            opacity: 0.85;
            text-decoration: none !important;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid var(--primary);
            color: var(--primary);
            font-size: 1.6rem;
            padding: 0.3rem 0.9rem;
            border-radius: var(--radius-sm);
            cursor: pointer;
            transition: 0.2s;
        }
        .nav-toggle:hover {
            background: var(--primary);
            color: #fff;
        }
        .nav-menu {
            display: flex;
            gap: 0.2rem;
            flex-wrap: wrap;
            align-items: center;
        }
        .nav-menu a {
            padding: 0.5rem 1.1rem;
            border-radius: 30px;
            font-weight: 600;
            font-size: 0.95rem;
            color: var(--text-soft);
            transition: all 0.2s;
        }
        .nav-menu a:hover {
            background: var(--primary);
            color: #fff;
            text-decoration: none;
        }
        .nav-menu a.active {
            background: var(--primary-dark);
            color: #fff;
        }
        .breadcrumb {
            padding: 1rem 0 0.3rem;
            font-size: 0.9rem;
            color: #6b6b7a;
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem;
        }
        .breadcrumb a {
            color: var(--primary);
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb span {
            color: #999;
        }
        .hero {
            background: linear-gradient(145deg, #fff6ed 0%, #fde8d8 100%);
            border-radius: var(--radius);
            padding: 2.5rem 2rem;
            margin: 1.5rem 0 2rem;
            box-shadow: var(--shadow-sm);
            border-left: 6px solid var(--gold);
        }
        .hero h1 {
            font-size: 2.6rem;
            font-weight: 800;
            line-height: 1.2;
            color: var(--primary-dark);
            margin-bottom: 0.75rem;
        }
        .hero h1 i {
            color: var(--gold);
            margin-right: 0.5rem;
        }
        .hero p {
            font-size: 1.15rem;
            max-width: 780px;
            color: var(--text-soft);
        }
        .hero .meta-badge {
            display: inline-block;
            margin-top: 1rem;
            background: var(--accent);
            color: #fff;
            padding: 0.3rem 1.2rem;
            border-radius: 30px;
            font-size: 0.85rem;
            font-weight: 600;
        }
        section {
            margin: 2.5rem 0;
        }
        .section-title {
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary-dark);
            border-bottom: 3px solid var(--gold);
            padding-bottom: 0.5rem;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 0.7rem;
        }
        .section-title i {
            color: var(--primary);
        }
        h2 {
            font-size: 1.9rem;
            font-weight: 700;
            color: var(--primary-dark);
            margin: 2rem 0 1rem;
        }
        h3 {
            font-size: 1.4rem;
            font-weight: 600;
            color: #2d2d3a;
            margin: 1.6rem 0 0.8rem;
        }
        h4 {
            font-size: 1.15rem;
            font-weight: 600;
            color: var(--text-soft);
            margin: 1.2rem 0 0.5rem;
        }
        p {
            margin-bottom: 1rem;
            color: var(--text-soft);
        }
        .content-card {
            background: var(--bg-card);
            border-radius: var(--radius);
            padding: 1.8rem 2rem;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--border-light);
            margin-bottom: 1.5rem;
        }
        .content-card p:last-child {
            margin-bottom: 0;
        }
        .highlight {
            background: linear-gradient(120deg, #fde8d8 0%, #fde8d8 40%, transparent 80%);
            padding: 0.1rem 0.4rem;
            font-weight: 600;
            border-radius: 4px;
        }
        .emoji-big {
            font-size: 1.8rem;
            vertical-align: middle;
            margin-right: 0.3rem;
        }
        .tag {
            display: inline-block;
            background: var(--secondary);
            color: #1e1e2a;
            padding: 0.2rem 1rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            margin: 0.2rem 0.1rem;
        }
        .featured-img-wrap {
            margin: 2rem 0;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow-md);
            background: #eee;
        }
        .featured-img-wrap img {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
        }
        .featured-img-wrap figcaption {
            padding: 0.6rem 1.2rem;
            font-size: 0.9rem;
            color: #6b6b7a;
            background: #faf5ee;
            font-style: italic;
        }
        .interactive-grid {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 1.5rem;
            margin: 2rem 0;
        }
        .interactive-card {
            background: var(--bg-card);
            border-radius: var(--radius);
            padding: 1.6rem 1.8rem;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--border-light);
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .interactive-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-md);
        }
        .interactive-card h3 {
            margin-top: 0;
            font-size: 1.3rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .interactive-card input,
        .interactive-card textarea,
        .interactive-card select {
            width: 100%;
            padding: 0.65rem 1rem;
            border: 1.5px solid #ddd;
            border-radius: var(--radius-sm);
            font-size: 0.95rem;
            transition: 0.2s;
            background: #fafafa;
            font-family: inherit;
        }
        .interactive-card input:focus,
        .interactive-card textarea:focus,
        .interactive-card select:focus {
            outline: none;
            border-color: var(--primary);
            background: #fff;
            box-shadow: 0 0 0 3px rgba(232, 93, 31, 0.15);
        }
        .interactive-card textarea {
            resize: vertical;
            min-height: 80px;
        }
        .btn {
            display: inline-block;
            padding: 0.6rem 1.8rem;
            border: none;
            border-radius: 30px;
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            transition: all 0.25s;
            background: var(--primary);
            color: #fff;
        }
        .btn:hover {
            background: var(--primary-dark);
            transform: scale(1.02);
        }
        .btn-secondary {
            background: var(--accent);
        }
        .btn-secondary:hover {
            background: #1f8578;
        }
        .btn-gold {
            background: var(--gold);
            color: #1e1e2a;
        }
        .btn-gold:hover {
            background: #dbb85a;
        }
        .star-rating {
            display: flex;
            gap: 0.4rem;
            font-size: 1.8rem;
            color: #ddd;
            cursor: pointer;
            margin: 0.5rem 0;
        }
        .star-rating i {
            transition: color 0.2s, transform 0.15s;
        }
        .star-rating i:hover,
        .star-rating i.active {
            color: var(--gold);
            transform: scale(1.15);
        }
        friend-link {
            display: block;
            margin: 1.5rem 0 0.5rem;
            padding: 1.2rem 1.5rem;
            background: #f5ede4;
            border-radius: var(--radius);
            border-left: 4px solid var(--gold);
        }
        friend-link a {
            display: inline-block;
            margin: 0.2rem 0.8rem 0.2rem 0;
            font-weight: 500;
            color: var(--primary-dark);
        }
        friend-link a:hover {
            color: var(--primary);
        }
        .site-footer {
            background: #1e1e2a;
            color: #ccc;
            padding: 2.5rem 0 1.5rem;
            margin-top: 3rem;
            border-radius: var(--radius) var(--radius) 0 0;
        }
        .site-footer .container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 2rem;
        }
        .site-footer a {
            color: var(--gold);
        }
        .site-footer a:hover {
            color: #fff;
        }
        .footer-copy {
            width: 100%;
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #3a3a4a;
            font-size: 0.9rem;
        }
        .footer-copy small {
            opacity: 0.7;
        }
        @media (max-width: 1024px) {
            .interactive-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 768px) {
            body {
                padding: 0 0.6rem;
            }
            .header-inner {
                flex-wrap: wrap;
            }
            .nav-toggle {
                display: inline-block;
            }
            .nav-menu {
                display: none;
                width: 100%;
                flex-direction: column;
                background: #fff;
                border-radius: var(--radius-sm);
                padding: 0.8rem 0;
                box-shadow: var(--shadow-md);
                margin-top: 0.5rem;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu a {
                padding: 0.7rem 1.2rem;
                border-radius: 0;
                width: 100%;
            }
            .hero {
                padding: 1.8rem 1.2rem;
            }
            .hero h1 {
                font-size: 1.9rem;
            }
            .hero p {
                font-size: 1rem;
            }
            .section-title {
                font-size: 1.6rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.2rem;
            }
            .content-card {
                padding: 1.2rem 1.2rem;
            }
            .interactive-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
            }
            .interactive-card {
                padding: 1.2rem 1.2rem;
            }
            .my-logo {
                font-size: 1.5rem;
            }
            .site-footer .container {
                flex-direction: column;
                text-align: center;
            }
        }
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.6rem;
            }
            .hero {
                padding: 1.2rem 0.8rem;
            }
            .breadcrumb {
                font-size: 0.75rem;
            }
            .btn {
                padding: 0.5rem 1.2rem;
                font-size: 0.85rem;
            }
        }
        .flex-wrap {
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem;
            align-items: center;
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .text-center {
            text-align: center;
        }
        .list-styled {
            padding-left: 1.6rem;
            margin-bottom: 1rem;
        }
        .list-styled li {
            margin-bottom: 0.3rem;
        }
        .badge {
            background: var(--accent);
            color: #fff;
            border-radius: 30px;
            padding: 0.15rem 0.9rem;
            font-size: 0.8rem;
            font-weight: 600;
            display: inline-block;
        }
        .quote {
            background: #f5ede4;
            border-left: 4px solid var(--gold);
            padding: 1rem 1.5rem;
            border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
            margin: 1.2rem 0;
            font-style: italic;
            color: #2d2d3a;
        }
        .quote cite {
            display: block;
            margin-top: 0.4rem;
            font-style: normal;
            font-weight: 600;
            color: var(--primary-dark);
        }
        .data-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 1rem;
            margin: 1rem 0;
        }
        .data-item {
            background: #f8f2ea;
            padding: 0.8rem 1.2rem;
            border-radius: var(--radius-sm);
            text-align: center;
        }
        .data-item .number {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--primary);
        }
        .data-item .label {
            font-size: 0.85rem;
            color: #6b6b7a;
        }
