* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
            background: #f5f0eb;
            color: #2d2a24;
            line-height: 1.7;
            font-size: 1.05rem;
            scroll-behavior: smooth;
        }
        a {
            color: #b45309;
            text-decoration: none;
            transition: all 0.2s ease;
        }
        a:hover {
            color: #7a2e0e;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 14px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }
        header {
            background: linear-gradient(145deg, #1e3a2f, #0f2a20);
            padding: 16px 0 10px;
            border-bottom: 4px solid #d48c4b;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px 20px;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 800;
            letter-spacing: 2px;
            color: #f5e6d3;
            text-shadow: 3px 3px 0 #b45309;
            font-family: 'Times New Roman', serif;
            transition: 0.2s;
        }
        .my-logo:hover {
            color: #ffd9a8;
            text-shadow: 3px 3px 0 #7a2e0e;
            text-decoration: none;
        }
        .my-logo small {
            font-size: 0.9rem;
            font-weight: 300;
            letter-spacing: 1px;
            color: #d4a57a;
            display: block;
            font-family: 'Segoe UI', sans-serif;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            font-size: 2rem;
            color: #f5e6d3;
            cursor: pointer;
            padding: 4px 12px;
            border-radius: 8px;
            transition: 0.2s;
        }
        .hamburger:hover {
            background: rgba(255, 255, 255, 0.08);
        }
        nav#main-nav ul {
            display: flex;
            list-style: none;
            gap: 8px 20px;
            flex-wrap: wrap;
            align-items: center;
        }
        nav#main-nav a {
            color: #f0e0d0;
            font-weight: 500;
            padding: 6px 0;
            border-bottom: 2px solid transparent;
            transition: 0.2s;
            font-size: 1rem;
        }
        nav#main-nav a:hover {
            border-bottom-color: #d48c4b;
            color: #ffd9a8;
            text-decoration: none;
        }
        .breadcrumb {
            background: #e8ddd0;
            padding: 10px 0;
            font-size: 0.92rem;
            border-bottom: 1px solid #d4c5b0;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 6px 10px;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 10px;
            color: #8a7a6a;
            font-weight: 600;
        }
        .breadcrumb a {
            color: #5a4a3a;
        }
        .breadcrumb a:hover {
            color: #b45309;
        }
        .breadcrumb .active {
            color: #2d2a24;
            font-weight: 600;
        }
        .page-grid {
            display: grid;
            grid-template-columns: 1fr 320px;
            gap: 40px;
            padding: 40px 0;
        }
        @media (max-width: 900px) {
            .page-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
        }
        .main-content h1 {
            font-size: 2.6rem;
            color: #1e3a2f;
            margin-bottom: 12px;
            line-height: 1.2;
            border-left: 6px solid #d48c4b;
            padding-left: 20px;
        }
        .main-content h1 i {
            color: #b45309;
            margin-right: 10px;
        }
        .main-content h2 {
            font-size: 1.9rem;
            color: #1e3a2f;
            margin: 48px 0 16px;
            border-bottom: 2px solid #d4c5b0;
            padding-bottom: 8px;
        }
        .main-content h2 i {
            color: #b45309;
            margin-right: 10px;
        }
        .main-content h3 {
            font-size: 1.5rem;
            color: #2d4a3a;
            margin: 32px 0 12px;
        }
        .main-content h4 {
            font-size: 1.2rem;
            color: #4a3a2a;
            margin: 24px 0 8px;
            font-weight: 600;
        }
        .main-content p {
            margin-bottom: 18px;
            text-align: justify;
        }
        .main-content ul,
        .main-content ol {
            margin: 16px 0 24px 28px;
        }
        .main-content li {
            margin-bottom: 8px;
        }
        .main-content .highlight-box {
            background: #e8ddd0;
            border-left: 5px solid #d48c4b;
            padding: 20px 24px;
            border-radius: 0 12px 12px 0;
            margin: 24px 0;
        }
        .main-content .highlight-box strong {
            color: #7a2e0e;
        }
        .main-content .insight {
            background: #f0ebe4;
            border-radius: 16px;
            padding: 20px 24px;
            margin: 24px 0;
            box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.04);
        }
        .main-content .insight i {
            color: #b45309;
            margin-right: 8px;
        }
        .feature-img-wrapper {
            margin: 32px 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
        }
        .feature-img-wrapper figcaption {
            background: #e8ddd0;
            padding: 12px 20px;
            font-size: 0.95rem;
            color: #3a3a2a;
            font-style: italic;
        }
        .last-updated {
            display: inline-block;
            background: #d4c5b0;
            padding: 6px 18px;
            border-radius: 30px;
            font-size: 0.9rem;
            color: #2d2a24;
            margin-bottom: 20px;
        }
        .last-updated i {
            margin-right: 6px;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 32px;
        }
        .sidebar-card {
            background: #faf6f0;
            border-radius: 16px;
            padding: 24px 20px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
            border: 1px solid #e0d5c5;
        }
        .sidebar-card h3 {
            font-size: 1.3rem;
            color: #1e3a2f;
            margin-bottom: 16px;
            border-bottom: 2px solid #d4c5b0;
            padding-bottom: 8px;
        }
        .sidebar-card h3 i {
            color: #b45309;
            margin-right: 8px;
        }
        .search-form {
            display: flex;
            gap: 8px;
        }
        .search-form input {
            flex: 1;
            padding: 12px 16px;
            border: 2px solid #d4c5b0;
            border-radius: 40px;
            font-size: 1rem;
            background: #fff;
            transition: 0.2s;
            outline: none;
        }
        .search-form input:focus {
            border-color: #b45309;
            box-shadow: 0 0 0 3px rgba(180, 83, 9, 0.15);
        }
        .search-form button {
            background: #b45309;
            color: #fff;
            border: none;
            border-radius: 40px;
            padding: 12px 20px;
            font-size: 1rem;
            cursor: pointer;
            transition: 0.2s;
        }
        .search-form button:hover {
            background: #7a2e0e;
            transform: scale(1.02);
        }
        .comment-form textarea {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid #d4c5b0;
            border-radius: 12px;
            font-size: 1rem;
            resize: vertical;
            min-height: 80px;
            background: #fff;
            transition: 0.2s;
            outline: none;
            font-family: inherit;
        }
        .comment-form textarea:focus {
            border-color: #b45309;
            box-shadow: 0 0 0 3px rgba(180, 83, 9, 0.1);
        }
        .comment-form button,
        .score-form button {
            background: #1e3a2f;
            color: #fff;
            border: none;
            border-radius: 40px;
            padding: 10px 24px;
            font-size: 1rem;
            cursor: pointer;
            transition: 0.2s;
            margin-top: 8px;
            width: 100%;
        }
        .comment-form button:hover,
        .score-form button:hover {
            background: #0f2a20;
            transform: scale(1.01);
        }
        .score-form .star-rating {
            display: flex;
            gap: 4px;
            font-size: 1.8rem;
            color: #d4c5b0;
            cursor: pointer;
            margin: 8px 0;
            flex-direction: row-reverse;
            justify-content: flex-end;
        }
        .score-form .star-rating i {
            transition: 0.15s;
        }
        .score-form .star-rating i:hover,
        .score-form .star-rating i:hover~i {
            color: #d48c4b;
        }
        .score-form .star-rating input {
            display: none;
        }
        .score-form .star-rating input:checked~i {
            color: #d48c4b;
        }
        .sidebar-link-list {
            list-style: none;
            padding: 0;
        }
        .sidebar-link-list li {
            padding: 6px 0;
            border-bottom: 1px dashed #e0d5c5;
        }
        .sidebar-link-list a {
            color: #4a3a2a;
            font-weight: 500;
        }
        .sidebar-link-list a:hover {
            color: #b45309;
            padding-left: 4px;
        }
        friend-link {
            display: block;
            background: #1e3a2f;
            color: #f0e0d0;
            padding: 28px 24px;
            border-radius: 16px 16px 0 0;
            margin-top: 20px;
        }
        friend-link .fl-title {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 14px;
            color: #d4a57a;
        }
        friend-link a {
            color: #ffd9a8;
            margin: 0 12px 8px 0;
            display: inline-block;
        }
        friend-link a:hover {
            color: #fff;
            text-decoration: underline;
        }
        footer {
            background: #0f2a20;
            color: #c4b5a0;
            padding: 28px 24px;
            font-size: 0.95rem;
            border-top: 2px solid #d48c4b;
        }
        footer .copyright {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 12px;
            align-items: center;
        }
        footer a {
            color: #d4a57a;
        }
        footer a:hover {
            color: #ffd9a8;
        }
        @media (max-width: 700px) {
            .hamburger {
                display: block;
            }
            nav#main-nav {
                display: none;
                width: 100%;
                order: 3;
            }
            nav#main-nav.open {
                display: block;
            }
            nav#main-nav ul {
                flex-direction: column;
                align-items: flex-start;
                gap: 2px;
                padding: 12px 0 4px;
            }
            nav#main-nav a {
                display: block;
                padding: 8px 0;
                border-bottom: 1px solid rgba(255, 255, 255, 0.06);
                width: 100%;
            }
            .header-inner {
                align-items: center;
            }
            .my-logo {
                font-size: 1.7rem;
            }
            .my-logo small {
                font-size: 0.75rem;
            }
            .main-content h1 {
                font-size: 1.8rem;
                padding-left: 14px;
            }
            .main-content h2 {
                font-size: 1.5rem;
            }
            .main-content h3 {
                font-size: 1.25rem;
            }
            .container {
                padding: 0 16px;
            }
            .page-grid {
                padding: 20px 0;
            }
            .breadcrumb {
                font-size: 0.82rem;
            }
            friend-link .fl-title {
                font-size: 1rem;
            }
            footer .copyright {
                flex-direction: column;
                text-align: center;
            }
        }
        @media (min-width: 701px) {
            nav#main-nav {
                display: block !important;
            }
            .hamburger {
                display: none !important;
            }
        }
        .anchor-offset {
            scroll-margin-top: 120px;
        }
        .styled-table {
            width: 100%;
            border-collapse: collapse;
            margin: 24px 0;
            background: #faf6f0;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
        }
        .styled-table th {
            background: #1e3a2f;
            color: #f5e6d3;
            padding: 12px 16px;
            text-align: left;
            font-weight: 600;
        }
        .styled-table td {
            padding: 10px 16px;
            border-bottom: 1px solid #e0d5c5;
        }
        .styled-table tr:last-child td {
            border-bottom: none;
        }
        .styled-table tr:hover td {
            background: #f0ebe4;
        }
        @media (max-width: 600px) {
            .styled-table {
                font-size: 0.9rem;
            }
            .styled-table th,
            .styled-table td {
                padding: 8px 10px;
            }
        }
