* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, sans-serif;
            background: #faf7f0;
            color: #1e2a24;
            line-height: 1.7;
            font-size: 1.05rem;
        }
        a {
            color: #b58a2f;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #7a5d1a;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }
        header {
            background: linear-gradient(135deg, #0f281c 0%, #1a3c2a 100%);
            padding: 20px 0;
            border-bottom: 4px solid #c9a84c;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 800;
            color: #c9a84c;
            letter-spacing: 2px;
            text-transform: uppercase;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
            transition: transform 0.2s;
        }
        .my-logo:hover {
            transform: scale(1.02);
            text-decoration: none;
            color: #e0c36a;
        }
        .my-logo i {
            margin-right: 8px;
            color: #e0c36a;
        }
        nav {
            display: flex;
            align-items: center;
            gap: 28px;
        }
        nav a {
            color: #efe6d0;
            font-weight: 500;
            font-size: 1rem;
            padding: 6px 0;
            border-bottom: 2px solid transparent;
            transition: 0.2s;
        }
        nav a:hover {
            color: #c9a84c;
            border-bottom-color: #c9a84c;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            color: #c9a84c;
            background: none;
            border: none;
            cursor: pointer;
            padding: 4px 8px;
        }
        .nav-open {
            display: flex !important;
            flex-direction: column;
            width: 100%;
            margin-top: 16px;
            gap: 12px;
        }
        .breadcrumb {
            background: #f0ebe0;
            padding: 14px 0;
            font-size: 0.9rem;
            border-bottom: 1px solid #ddd6c8;
        }
        .breadcrumb ul {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 8px 16px;
        }
        .breadcrumb li+li:before {
            content: "›";
            margin-right: 16px;
            color: #a0917a;
        }
        .breadcrumb a {
            color: #5f6b5a;
        }
        .breadcrumb a:hover {
            color: #b58a2f;
        }
        .breadcrumb .current {
            color: #2d3a2e;
            font-weight: 600;
        }
        .hero {
            padding: 48px 0 32px;
            text-align: center;
            background: linear-gradient(180deg, #f5efe4 0%, #faf7f0 100%);
        }
        .hero h1 {
            font-size: 3.2rem;
            font-weight: 800;
            color: #0f281c;
            letter-spacing: -0.5px;
            line-height: 1.2;
        }
        .hero h1 i {
            color: #c9a84c;
            margin-right: 12px;
        }
        .hero .subhead {
            font-size: 1.2rem;
            color: #4a5a4a;
            margin-top: 12px;
            max-width: 720px;
            margin-left: auto;
            margin-right: auto;
        }
        .hero .last-updated {
            display: inline-block;
            margin-top: 18px;
            background: #e8dfd0;
            padding: 6px 20px;
            border-radius: 30px;
            font-size: 0.85rem;
            color: #3d4d3d;
        }
        .hero .last-updated i {
            margin-right: 6px;
            color: #b58a2f;
        }
        .main-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 48px;
            padding: 40px 0 60px;
        }
        @media (max-width: 900px) {
            .main-grid {
                grid-template-columns: 1fr;
                gap: 36px;
            }
        }
        .content-article h2 {
            font-size: 2rem;
            color: #0f281c;
            margin-top: 48px;
            margin-bottom: 18px;
            border-left: 6px solid #c9a84c;
            padding-left: 18px;
        }
        .content-article h3 {
            font-size: 1.5rem;
            color: #1a3c2a;
            margin-top: 34px;
            margin-bottom: 12px;
        }
        .content-article h4 {
            font-size: 1.2rem;
            color: #2d4a36;
            margin-top: 24px;
            margin-bottom: 8px;
            font-weight: 600;
        }
        .content-article p {
            margin-bottom: 18px;
            text-align: justify;
        }
        .content-article .highlight-box {
            background: #f0ebe0;
            border-left: 4px solid #c9a84c;
            padding: 20px 24px;
            border-radius: 0 12px 12px 0;
            margin: 24px 0;
        }
        .content-article ul,
        .content-article ol {
            margin: 16px 0 24px 32px;
        }
        .content-article li {
            margin-bottom: 8px;
        }
        .content-article .img-wrapper {
            margin: 32px 0;
            text-align: center;
        }
        .content-article .img-wrapper figcaption {
            font-size: 0.85rem;
            color: #6a7a6a;
            margin-top: 8px;
        }
        .sidebar {
            background: #f0ebe0;
            border-radius: 16px;
            padding: 28px 24px;
            height: fit-content;
            position: sticky;
            top: 120px;
        }
        .sidebar h3 {
            font-size: 1.3rem;
            color: #0f281c;
            border-bottom: 2px solid #c9a84c;
            padding-bottom: 10px;
            margin-bottom: 18px;
        }
        .sidebar .link-item {
            display: block;
            padding: 10px 0;
            border-bottom: 1px solid #ddd6c8;
            color: #2d4a36;
            font-weight: 500;
        }
        .sidebar .link-item i {
            color: #b58a2f;
            margin-right: 10px;
            width: 20px;
        }
        .sidebar .link-item:hover {
            color: #b58a2f;
            text-decoration: none;
            padding-left: 4px;
        }
        .search-box {
            background: #fff;
            border-radius: 40px;
            display: flex;
            overflow: hidden;
            border: 1px solid #ddd6c8;
            margin: 18px 0 28px;
            max-width: 500px;
        }
        .search-box input {
            flex: 1;
            border: none;
            padding: 14px 20px;
            font-size: 1rem;
            outline: none;
            background: transparent;
            font-family: inherit;
        }
        .search-box button {
            background: #c9a84c;
            border: none;
            color: #0f281c;
            padding: 0 24px;
            font-size: 1.1rem;
            cursor: pointer;
            transition: 0.2s;
        }
        .search-box button:hover {
            background: #b8963a;
        }
        .feedback-section {
            background: #f0ebe0;
            border-radius: 16px;
            padding: 28px 32px;
            margin: 48px 0 32px;
        }
        .feedback-section h3 {
            font-size: 1.6rem;
            color: #0f281c;
            margin-bottom: 20px;
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 32px;
        }
        @media (max-width: 700px) {
            .feedback-grid {
                grid-template-columns: 1fr;
            }
        }
        .feedback-section form {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }
        .feedback-section input,
        .feedback-section textarea,
        .feedback-section select {
            padding: 12px 16px;
            border: 1px solid #ccc6b8;
            border-radius: 8px;
            font-size: 1rem;
            font-family: inherit;
            background: #fff;
            transition: 0.2s;
        }
        .feedback-section input:focus,
        .feedback-section textarea:focus,
        .feedback-section select:focus {
            border-color: #c9a84c;
            outline: none;
            box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.2);
        }
        .feedback-section textarea {
            min-height: 100px;
            resize: vertical;
        }
        .feedback-section .btn {
            background: #0f281c;
            color: #efe6d0;
            padding: 14px 28px;
            border: none;
            border-radius: 40px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: 0.25s;
            align-self: flex-start;
        }
        .feedback-section .btn:hover {
            background: #1a3c2a;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(15, 40, 28, 0.3);
        }
        .rating-stars {
            display: flex;
            gap: 6px;
            font-size: 1.8rem;
            color: #ddd6c8;
            cursor: pointer;
        }
        .rating-stars i.active {
            color: #c9a84c;
        }
        .rating-stars i:hover {
            color: #c9a84c;
        }
        footer {
            background: #0f281c;
            color: #d4cfc0;
            padding: 40px 0 20px;
            margin-top: 40px;
        }
        footer .footer-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 32px;
        }
        @media (max-width: 600px) {
            footer .footer-grid {
                grid-template-columns: 1fr;
            }
        }
        footer h4 {
            color: #c9a84c;
            font-size: 1.1rem;
            margin-bottom: 12px;
        }
        footer a {
            color: #b8ad9a;
        }
        footer a:hover {
            color: #c9a84c;
        }
        friend-link {
            display: flex;
            flex-wrap: wrap;
            gap: 8px 20px;
            padding: 12px 0;
        }
        friend-link a {
            padding: 4px 0;
        }
        .copyright {
            border-top: 1px solid #2d4a36;
            padding-top: 20px;
            margin-top: 28px;
            text-align: center;
            font-size: 0.85rem;
            color: #8a9a8a;
        }
        .copyright strong {
            color: #c9a84c;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            nav {
                display: none;
                width: 100%;
            }
            nav.nav-mobile-open {
                display: flex;
                flex-direction: column;
                align-items: flex-start;
                gap: 12px;
                padding-top: 12px;
            }
            .hero h1 {
                font-size: 2.2rem;
            }
            .header-inner {
                align-items: center;
            }
            .my-logo {
                font-size: 1.6rem;
            }
            .sidebar {
                position: static;
            }
        }
        @media (min-width: 769px) {
            nav {
                display: flex !important;
            }
        }
        .text-gold {
            color: #c9a84c;
        }
        .fw-700 {
            font-weight: 700;
        }
        .mt-16 {
            margin-top: 16px;
        }
        .mb-8 {
            margin-bottom: 8px;
        }
        .emoji-big {
            font-size: 1.6rem;
            vertical-align: middle;
        }
        hr {
            border: none;
            border-top: 2px solid #e8dfd0;
            margin: 32px 0;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 24px 0;
        }
        .table-wrap table {
            width: 100%;
            border-collapse: collapse;
            background: #fff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
        }
        .table-wrap th {
            background: #0f281c;
            color: #c9a84c;
            padding: 14px 18px;
            text-align: left;
        }
        .table-wrap td {
            padding: 12px 18px;
            border-bottom: 1px solid #e8dfd0;
        }
        .table-wrap tr:last-child td {
            border-bottom: none;
        }
        .table-wrap tr:hover td {
            background: #f5efe4;
        }
