        *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
        html { scroll-behavior: smooth; font-size: 16px; }
        body {
            font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            background: #faf8f5;
            color: #1e2a2f;
            line-height: 1.7;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }
        a { color: #b45309; text-decoration: none; transition: color 0.2s; }
        a:hover, a:focus { color: #78350f; text-decoration: underline; }
        img { max-width: 100%; height: auto; display: block; border-radius: 12px; }
        h1, h2, h3, h4 { font-weight: 700; line-height: 1.25; color: #1e293b; }
        h1 { font-size: 2.2rem; margin-bottom: 1rem; }
        h2 { font-size: 1.6rem; margin-top: 2.5rem; margin-bottom: 0.75rem; border-left: 5px solid #b45309; padding-left: 1rem; }
        h3 { font-size: 1.25rem; margin-top: 1.75rem; margin-bottom: 0.5rem; color: #2d3a3f; }
        h4 { font-size: 1.05rem; margin-top: 1.25rem; margin-bottom: 0.35rem; color: #3f4a50; }
        p { margin-bottom: 1.1rem; }
        ul, ol { margin-bottom: 1.2rem; padding-left: 1.6rem; }
        li { margin-bottom: 0.4rem; }
        strong { color: #1e293b; font-weight: 700; }
        em { font-style: italic; color: #4a5a62; }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 1.25rem; width: 100%; }
        .site-header {
            background: #1e293b;
            color: #fff;
            padding: 0.75rem 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 12px 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-size: 1.6rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #f59e0b, #d97706);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-decoration: none !important;
            display: inline-flex;
            align-items: center;
            gap: 0.3rem;
        }
        .my-logo i { font-size: 1.4rem; -webkit-text-fill-color: #f59e0b; }
        .my-logo:hover { opacity: 0.85; text-decoration: none !important; }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid #f59e0b;
            color: #f59e0b;
            font-size: 1.4rem;
            padding: 0.3rem 0.7rem;
            border-radius: 6px;
            cursor: pointer;
            transition: 0.2s;
        }
        .nav-toggle:hover { background: #f59e0b; color: #1e293b; }
        .nav-menu {
            display: flex;
            gap: 0.25rem;
            flex-wrap: wrap;
            align-items: center;
        }
        .nav-menu a {
            color: #e2e8f0;
            padding: 0.4rem 0.9rem;
            border-radius: 6px;
            font-size: 0.9rem;
            font-weight: 500;
            white-space: nowrap;
            transition: 0.2s;
        }
        .nav-menu a:hover, .nav-menu a.active {
            background: #b45309;
            color: #fff;
            text-decoration: none;
        }
        .breadcrumb {
            background: #f1ebe4;
            padding: 0.6rem 0;
            font-size: 0.85rem;
            border-bottom: 1px solid #e2d6cc;
        }
        .breadcrumb ol {
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem 0.6rem;
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .breadcrumb li+li::before {
            content: "/";
            margin-right: 0.6rem;
            color: #9a8a7a;
        }
        .breadcrumb a { color: #7c5a3a; }
        .breadcrumb .current { color: #b45309; font-weight: 600; }
        .hero {
            background: linear-gradient(145deg, #f1ebe4 0%, #e8dfd4 100%);
            padding: 2.5rem 0 2rem;
            border-bottom: 1px solid #d6c8ba;
        }
        .hero-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            align-items: center;
        }
        .hero h1 { font-size: 2.4rem; margin-top: 0; }
        .hero p { font-size: 1.1rem; color: #3d4a52; }
        .hero img { border-radius: 16px; box-shadow: 0 8px 24px rgba(0,0,0,0.12); }
        .main-content { padding: 2.5rem 0 3rem; flex: 1; }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
        }
        .article-body { min-width: 0; }
        .sidebar {
            position: sticky;
            top: 5.5rem;
            align-self: start;
        }
        .featured-image-wrapper {
            margin: 1.5rem 0 2rem;
        }
        .featured-image-wrapper img {
            width: 100%;
            max-height: 420px;
            object-fit: cover;
            border-radius: 14px;
        }
        .featured-image-wrapper figcaption {
            font-size: 0.85rem;
            color: #6d7a82;
            margin-top: 0.4rem;
            text-align: center;
            font-style: italic;
        }
        .sidebar-card {
            background: #fff;
            border-radius: 14px;
            padding: 1.4rem 1.2rem;
            margin-bottom: 1.5rem;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            border: 1px solid #ede6de;
        }
        .sidebar-card h3 {
            font-size: 1.1rem;
            margin-top: 0;
            border-bottom: 2px solid #f59e0b;
            padding-bottom: 0.5rem;
            margin-bottom: 0.8rem;
        }
        .sidebar-card ul { list-style: none; padding: 0; margin: 0; }
        .sidebar-card li { margin-bottom: 0.4rem; }
        .sidebar-card a {
            display: block;
            padding: 0.35rem 0.6rem;
            border-radius: 6px;
            font-size: 0.9rem;
            transition: 0.15s;
        }
        .sidebar-card a:hover { background: #fef3c7; text-decoration: none; }
        .form-card {
            background: #fff;
            border-radius: 14px;
            padding: 1.6rem 1.4rem;
            margin: 2rem 0;
            box-shadow: 0 2px 12px rgba(0,0,0,0.05);
            border: 1px solid #ede6de;
        }
        .form-card h3 { margin-top: 0; border-bottom: 2px solid #b45309; padding-bottom: 0.5rem; margin-bottom: 1rem; }
        .form-group { margin-bottom: 1rem; }
        .form-group label { display: block; font-weight: 600; margin-bottom: 0.25rem; font-size: 0.9rem; }
        .form-group input, .form-group textarea, .form-group select {
            width: 100%;
            padding: 0.6rem 0.8rem;
            border: 1px solid #d6c8ba;
            border-radius: 8px;
            font-size: 0.95rem;
            background: #fcfaf8;
            transition: 0.2s;
        }
        .form-group input:focus, .form-group textarea:focus {
            outline: none;
            border-color: #b45309;
            box-shadow: 0 0 0 3px rgba(180,83,9,0.15);
        }
        .form-group textarea { min-height: 90px; resize: vertical; }
        .btn {
            background: #b45309;
            color: #fff;
            border: none;
            padding: 0.65rem 1.6rem;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: 0.2s;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        .btn:hover { background: #78350f; transform: translateY(-1px); }
        .btn-secondary { background: #475569; }
        .btn-secondary:hover { background: #2d3a4a; }
        .star-rating {
            display: flex;
            gap: 0.3rem;
            font-size: 1.6rem;
            cursor: pointer;
            direction: rtl;
        }
        .star-rating input { display: none; }
        .star-rating label { color: #d6c8ba; transition: 0.2s; cursor: pointer; }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label { color: #f59e0b; }
        friend-link {
            display: block;
            background: #1e293b;
            color: #e2e8f0;
            padding: 1.6rem 0;
            margin-top: 2rem;
            border-top: 4px solid #f59e0b;
        }
        friend-link .container {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem 1.6rem;
            justify-content: center;
        }
        friend-link a {
            color: #fcd34d;
            font-weight: 500;
            font-size: 0.95rem;
        }
        friend-link a:hover { color: #fff; text-decoration: underline; }
        .site-footer {
            background: #0f172a;
            color: #cbd5e1;
            padding: 1.4rem 0;
            text-align: center;
            font-size: 0.85rem;
        }
        .site-footer a { color: #fcd34d; }
        .site-footer .copyright { margin-top: 0.3rem; opacity: 0.8; }
        @media (max-width: 900px) {
            .content-grid { grid-template-columns: 1fr; }
            .sidebar { position: static; }
            .hero-grid { grid-template-columns: 1fr; }
            .hero h1 { font-size: 1.8rem; }
        }
        @media (max-width: 700px) {
            .nav-toggle { display: inline-block; }
            .nav-menu {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #1e293b;
                padding: 0.75rem 0;
                border-top: 1px solid #334155;
                margin-top: 0.5rem;
            }
            .nav-menu.open { display: flex; }
            .nav-menu a { padding: 0.6rem 1rem; width: 100%; }
            h1 { font-size: 1.6rem; }
            h2 { font-size: 1.3rem; }
            .header-inner { align-items: center; }
        }
        @media (max-width: 480px) {
            .container { padding: 0 0.9rem; }
            .hero { padding: 1.5rem 0; }
            .form-card { padding: 1rem; }
            .star-rating { font-size: 1.3rem; }
        }
        .badge {
            display: inline-block;
            background: #f59e0b;
            color: #1e293b;
            padding: 0.2rem 0.7rem;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 0.3px;
        }
        .divider { border: none; height: 2px; background: linear-gradient(90deg, #f59e0b, transparent); margin: 2rem 0; }
        .highlight-box {
            background: #fef9ef;
            border-left: 5px solid #f59e0b;
            padding: 1rem 1.2rem;
            border-radius: 0 10px 10px 0;
            margin: 1.2rem 0;
        }
        .last-updated {
            font-size: 0.85rem;
            color: #6d7a82;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 0.5rem;
        }
        .table-wrap { overflow-x: auto; }
        table { width: 100%; border-collapse: collapse; margin: 1rem 0; font-size: 0.95rem; }
        th, td { padding: 0.6rem 0.8rem; text-align: left; border-bottom: 1px solid #e2d6cc; }
        th { background: #f1ebe4; font-weight: 700; color: #1e293b; }
        .schema-hidden { display: none; }
