        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
            background: #0b0e14;
            color: #e8e6e3;
            line-height: 1.7;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: #f5b342;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover,
        a:focus {
            color: #ffd966;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.25;
            margin-top: 0;
            color: #f5d087;
        }
        h1 {
            font-size: 2.4rem;
            margin-bottom: 0.75rem;
            color: #fbd38d;
        }
        h2 {
            font-size: 1.8rem;
            margin-top: 2.5rem;
            margin-bottom: 0.6rem;
            border-bottom: 2px solid #3a2e1f;
            padding-bottom: 0.4rem;
        }
        h3 {
            font-size: 1.35rem;
            margin-top: 1.8rem;
            margin-bottom: 0.4rem;
            color: #e8c97a;
        }
        h4 {
            font-size: 1.1rem;
            margin-top: 1.2rem;
            margin-bottom: 0.3rem;
            color: #d4b06a;
        }
        p {
            margin-bottom: 1rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, #1a1510 0%, #2a1f14 100%);
            border-bottom: 3px solid #5a3e1e;
            padding: 0.6rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.8rem;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: 0.5px;
            background: linear-gradient(135deg, #f5b342, #f5d087);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: none;
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        .my-logo i {
            -webkit-text-fill-color: initial;
            color: #f5b342;
            font-size: 1.6rem;
        }
        .my-logo:hover {
            opacity: 0.85;
            text-decoration: none;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #f5b342;
            font-size: 1.6rem;
            cursor: pointer;
            padding: 0.2rem 0.4rem;
            transition: transform 0.2s;
        }
        .nav-toggle:hover {
            transform: scale(1.1);
        }
        .nav-menu {
            display: flex;
            align-items: center;
            gap: 1.2rem;
            flex-wrap: wrap;
        }
        .nav-menu a {
            font-weight: 500;
            font-size: 0.95rem;
            padding: 0.3rem 0.6rem;
            border-radius: 6px;
            transition: background 0.2s, color 0.2s;
            color: #d4c5a9;
        }
        .nav-menu a:hover {
            background: rgba(245, 179, 66, 0.15);
            color: #f5b342;
            text-decoration: none;
        }
        .nav-menu a.active {
            color: #f5b342;
            border-bottom: 2px solid #f5b342;
        }
        .breadcrumb {
            background: #141a20;
            padding: 0.5rem 0;
            font-size: 0.85rem;
            border-bottom: 1px solid #2a2a2a;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem 0.6rem;
            padding: 0;
            margin: 0;
        }
        .breadcrumb li+li::before {
            content: "›";
            color: #7a6a4a;
            margin-right: 0.6rem;
        }
        .breadcrumb a {
            color: #b8a88a;
        }
        .breadcrumb a:hover {
            color: #f5b342;
        }
        .breadcrumb .current {
            color: #f5d087;
        }
        .main-content {
            flex: 1;
            padding: 2rem 0 3rem;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
        }
        .content-body {
            min-width: 0;
        }
        .sidebar {
            position: sticky;
            top: 90px;
            align-self: start;
        }
        .widget {
            background: #1a1f26;
            border-radius: 12px;
            padding: 1.4rem;
            margin-bottom: 1.5rem;
            border: 1px solid #2e2e2e;
        }
        .widget h4 {
            font-size: 1.1rem;
            margin-top: 0;
            margin-bottom: 0.8rem;
            border-bottom: 1px solid #3a2e1f;
            padding-bottom: 0.4rem;
        }
        .widget ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .widget ul li {
            padding: 0.3rem 0;
            border-bottom: 1px solid #222;
        }
        .widget ul li:last-child {
            border-bottom: none;
        }
        .widget ul li a {
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        .widget ul li a i {
            width: 1.2rem;
            color: #f5b342;
            font-size: 0.8rem;
        }
        .search-form {
            display: flex;
            gap: 0.5rem;
            width: 100%;
        }
        .search-form input[type="text"] {
            flex: 1;
            padding: 0.6rem 1rem;
            border-radius: 8px;
            border: 1px solid #3a2e1f;
            background: #0b0e14;
            color: #e8e6e3;
            font-size: 0.95rem;
            outline: none;
            transition: border 0.2s;
        }
        .search-form input[type="text"]:focus {
            border-color: #f5b342;
        }
        .search-form button {
            background: #f5b342;
            color: #0b0e14;
            border: none;
            border-radius: 8px;
            padding: 0.6rem 1.2rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            font-size: 0.95rem;
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        .search-form button:hover {
            background: #ffd966;
            transform: scale(0.98);
        }
        .feedback-section {
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 2px solid #2a2a2a;
        }
        .feedback-forms {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
        }
        .feedback-card {
            background: #1a1f26;
            border-radius: 12px;
            padding: 1.6rem;
            border: 1px solid #2e2e2e;
        }
        .feedback-card h3 {
            margin-top: 0;
            font-size: 1.25rem;
        }
        .feedback-card form {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
        }
        .feedback-card label {
            font-weight: 500;
            font-size: 0.95rem;
            color: #d4c5a9;
        }
        .feedback-card input,
        .feedback-card textarea,
        .feedback-card select {
            padding: 0.6rem 1rem;
            border-radius: 8px;
            border: 1px solid #3a2e1f;
            background: #0b0e14;
            color: #e8e6e3;
            font-size: 0.95rem;
            outline: none;
            transition: border 0.2s;
            font-family: inherit;
        }
        .feedback-card input:focus,
        .feedback-card textarea:focus,
        .feedback-card select:focus {
            border-color: #f5b342;
        }
        .feedback-card textarea {
            min-height: 100px;
            resize: vertical;
        }
        .feedback-card button {
            background: #f5b342;
            color: #0b0e14;
            border: none;
            border-radius: 8px;
            padding: 0.7rem 1.5rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            font-size: 1rem;
            align-self: flex-start;
        }
        .feedback-card button:hover {
            background: #ffd966;
            transform: scale(0.98);
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 0.2rem;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 1.6rem;
            color: #4a4a4a;
            cursor: pointer;
            transition: color 0.2s;
            padding: 0 0.1rem;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #f5b342;
        }
        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.2rem 0;
            font-size: 0.95rem;
            border-radius: 10px;
            overflow: hidden;
        }
        .data-table th {
            background: #2a1f14;
            color: #f5d087;
            padding: 0.7rem 1rem;
            text-align: left;
            font-weight: 600;
        }
        .data-table td {
            padding: 0.6rem 1rem;
            border-bottom: 1px solid #2a2a2a;
            background: #141a20;
        }
        .data-table tr:hover td {
            background: #1a222c;
        }
        .featured-image {
            margin: 1.8rem 0;
            border-radius: 14px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
            background: #1a1f26;
            padding: 8px;
        }
        .featured-image img {
            border-radius: 10px;
            width: 100%;
        }
        .featured-image figcaption {
            text-align: center;
            padding: 0.6rem 0.4rem 0.2rem;
            font-size: 0.9rem;
            color: #b8a88a;
            font-style: italic;
        }
        .site-footer {
            background: #0f0d0a;
            border-top: 3px solid #3a2e1f;
            padding: 2rem 0 1.2rem;
            margin-top: 3rem;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 2rem;
        }
        .footer-inner h4 {
            color: #f5d087;
            margin-bottom: 0.8rem;
            font-size: 1.1rem;
        }
        .footer-inner ul {
            list-style: none;
            padding: 0;
        }
        .footer-inner ul li {
            padding: 0.2rem 0;
        }
        .footer-inner ul li a {
            font-size: 0.9rem;
            color: #b8a88a;
        }
        .footer-inner ul li a:hover {
            color: #f5b342;
        }
        friend-link {
            display: block;
            padding: 0.6rem 0;
        }
        friend-link a {
            color: #b8a88a;
            font-size: 0.9rem;
            display: inline-block;
            margin-right: 1.2rem;
            margin-bottom: 0.3rem;
        }
        friend-link a:hover {
            color: #f5b342;
        }
        .copyright {
            border-top: 1px solid #2a2a2a;
            padding-top: 1.2rem;
            margin-top: 1.2rem;
            text-align: center;
            font-size: 0.85rem;
            color: #7a6a4a;
        }
        .copyright strong {
            color: #b8a88a;
        }
        .last-updated {
            text-align: right;
            font-size: 0.85rem;
            color: #7a6a4a;
            margin-top: 0.4rem;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 1rem;
            }
            .footer-inner {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            .nav-menu {
                display: none;
                flex-direction: column;
                width: 100%;
                gap: 0.4rem;
                padding: 0.8rem 0 0.2rem;
                border-top: 1px solid #3a2e1f;
                margin-top: 0.4rem;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu a {
                width: 100%;
                padding: 0.5rem 0.8rem;
                border-radius: 6px;
            }
            .nav-menu a:hover {
                background: rgba(245, 179, 66, 0.1);
            }
            .header-inner {
                align-items: center;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            h3 {
                font-size: 1.15rem;
            }
            .feedback-forms {
                grid-template-columns: 1fr;
            }
            .sidebar {
                grid-template-columns: 1fr;
            }
            .footer-inner {
                grid-template-columns: 1fr;
                gap: 1.2rem;
            }
            .data-table {
                font-size: 0.85rem;
            }
            .data-table th,
            .data-table td {
                padding: 0.5rem 0.6rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 12px;
            }
            h1 {
                font-size: 1.5rem;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .search-form {
                flex-wrap: wrap;
            }
            .search-form button {
                width: 100%;
                justify-content: center;
            }
        }
        .highlight {
            color: #f5b342;
            font-weight: 600;
        }
        .badge {
            display: inline-block;
            background: #5a3e1e;
            color: #f5d087;
            padding: 0.15rem 0.7rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
        }
        .emoji-lg {
            font-size: 1.6rem;
            vertical-align: middle;
        }
        .quote-block {
            border-left: 4px solid #f5b342;
            padding: 0.8rem 1.2rem;
            margin: 1.2rem 0;
            background: #141a20;
            border-radius: 0 10px 10px 0;
            font-style: italic;
            color: #d4c5a9;
        }
        .quote-block cite {
            display: block;
            margin-top: 0.4rem;
            font-size: 0.9rem;
            color: #b8a88a;
            font-style: normal;
        }
        .btn-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: #f5b342;
            color: #0b0e14;
            border: none;
            border-radius: 50%;
            width: 48px;
            height: 48px;
            font-size: 1.2rem;
            cursor: pointer;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
            transition: background 0.2s, transform 0.2s;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 999;
        }
        .btn-top:hover {
            background: #ffd966;
            transform: translateY(-3px);
        }
        @media (max-width: 600px) {
            .btn-top {
                width: 40px;
                height: 40px;
                font-size: 1rem;
                bottom: 16px;
                right: 16px;
            }
        }
