        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, sans-serif;
            background: #0f0e12;
            color: #e2dcd0;
            line-height: 1.75;
            padding: 0 16px;
        }
        a {
            color: #f5c542;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover,
        a:focus {
            color: #ffdf8a;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 10px;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 600;
            line-height: 1.3;
            color: #f5d89a;
            margin-top: 1.8rem;
            margin-bottom: 0.6rem;
        }
        h1 {
            font-size: 2.2rem;
            border-bottom: 3px solid #b8860b;
            padding-bottom: 0.4rem;
        }
        h2 {
            font-size: 1.8rem;
            border-left: 5px solid #b8860b;
            padding-left: 0.9rem;
        }
        h3 {
            font-size: 1.4rem;
            color: #ecd690;
        }
        h4 {
            font-size: 1.15rem;
            color: #dcc582;
        }
        p {
            margin-bottom: 1.1rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 12px;
        }
        header {
            background: linear-gradient(145deg, #1a181f, #0f0e12);
            padding: 18px 0 10px;
            border-bottom: 2px solid #2a252e;
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(6px);
        }
        .header-inner {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            max-width: 1200px;
            margin: 0 auto;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            letter-spacing: 1px;
            background: linear-gradient(135deg, #f5c542, #d4a017);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 12px rgba(245, 197, 66, 0.25);
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .my-logo i {
            -webkit-text-fill-color: initial;
            color: #f5c542;
            font-size: 2rem;
        }
        .my-logo:hover {
            text-decoration: none;
            opacity: 0.9;
        }
        nav {
            display: flex;
            align-items: center;
            gap: 6px;
            flex-wrap: wrap;
        }
        nav a {
            padding: 8px 14px;
            border-radius: 30px;
            font-size: 0.92rem;
            font-weight: 500;
            color: #cfc7b8;
            transition: all 0.2s ease;
            white-space: nowrap;
        }
        nav a:hover {
            background: #2a2532;
            color: #f5d89a;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: 2px solid #f5c542;
            color: #f5c542;
            font-size: 1.8rem;
            padding: 6px 14px;
            border-radius: 8px;
            cursor: pointer;
            transition: 0.2s;
        }
        .hamburger:hover {
            background: #f5c54222;
        }
        .breadcrumb {
            padding: 16px 0 6px;
            font-size: 0.9rem;
            color: #a7a0b0;
            max-width: 1200px;
            margin: 0 auto;
        }
        .breadcrumb a {
            color: #c9b27c;
        }
        .breadcrumb span {
            margin: 0 4px;
        }
        .hero-img {
            margin: 24px 0 32px;
            border-radius: 16px;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.7);
            background: #1a1720;
            padding: 8px;
        }
        .hero-img img {
            border-radius: 12px;
            width: 100%;
        }
        .hero-img figcaption {
            text-align: center;
            font-size: 0.85rem;
            color: #a098a8;
            padding: 8px 0 4px;
            font-style: italic;
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr;
            gap: 32px;
            margin: 24px 0 40px;
        }
        @media (min-width: 992px) {
            .content-wrapper {
                grid-template-columns: 2.5fr 1fr;
            }
        }
        .main-content {
            min-width: 0;
        }
        .sidebar {
            background: #1a1720;
            border-radius: 16px;
            padding: 24px 20px;
            border: 1px solid #2d2835;
            height: fit-content;
            position: sticky;
            top: 100px;
        }
        .sidebar h3 {
            margin-top: 0;
            font-size: 1.2rem;
            border-bottom: 2px solid #3d3545;
            padding-bottom: 8px;
        }
        .sidebar ul {
            list-style: none;
            padding: 0;
        }
        .sidebar li {
            padding: 6px 0;
            border-bottom: 1px solid #25202b;
        }
        .sidebar li a {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .sidebar li a i {
            width: 20px;
            color: #b8860b;
        }
        .form-card {
            background: #1a1720;
            border-radius: 16px;
            padding: 24px 22px;
            border: 1px solid #2d2835;
            margin: 28px 0;
        }
        .form-card h3 {
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .form-group {
            margin-bottom: 16px;
        }
        .form-group label {
            display: block;
            font-weight: 500;
            margin-bottom: 4px;
            color: #d4cbb8;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 12px 16px;
            border-radius: 10px;
            border: 1px solid #3d3545;
            background: #0f0e12;
            color: #e2dcd0;
            font-size: 1rem;
            transition: border 0.2s;
        }
        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #f5c542;
            box-shadow: 0 0 0 3px #f5c54222;
        }
        .form-group textarea {
            min-height: 100px;
            resize: vertical;
        }
        .btn {
            background: linear-gradient(135deg, #b8860b, #d4a017);
            border: none;
            padding: 12px 32px;
            border-radius: 40px;
            font-weight: 700;
            font-size: 1rem;
            color: #0f0e12;
            cursor: pointer;
            transition: all 0.25s ease;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }
        .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px #b8860b44;
            background: linear-gradient(135deg, #d4a017, #f5c542);
        }
        .btn-secondary {
            background: #2d2835;
            color: #e2dcd0;
        }
        .btn-secondary:hover {
            background: #3d3545;
            box-shadow: none;
            transform: none;
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 4px;
            font-size: 2rem;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            color: #3d3545;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #f5c542;
        }
        .comment-item {
            background: #0f0e12;
            border-radius: 12px;
            padding: 16px 20px;
            margin-bottom: 14px;
            border-left: 4px solid #b8860b;
        }
        .comment-item .meta {
            font-size: 0.85rem;
            color: #a098a8;
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            margin-bottom: 6px;
        }
        .comment-item .meta strong {
            color: #f5d89a;
        }
        footer {
            background: #121016;
            border-top: 2px solid #2a252e;
            padding: 36px 0 20px;
            margin-top: 48px;
        }
        footer .footer-inner {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr;
            gap: 28px;
        }
        @media (min-width: 768px) {
            footer .footer-inner {
                grid-template-columns: 2fr 1fr;
            }
        }
        friend-link {
            display: block;
            background: #1a1720;
            border-radius: 14px;
            padding: 20px 24px;
            border: 1px solid #2d2835;
        }
        friend-link h4 {
            margin-top: 0;
            color: #f5d89a;
            font-size: 1.1rem;
            border-bottom: 1px solid #2d2835;
            padding-bottom: 8px;
            margin-bottom: 14px;
        }
        friend-link ul {
            list-style: none;
            padding: 0;
            display: flex;
            flex-wrap: wrap;
            gap: 8px 20px;
        }
        friend-link li a {
            color: #c9b27c;
            font-size: 0.95rem;
        }
        .copyright {
            text-align: center;
            padding: 18px 0 4px;
            color: #7a7485;
            font-size: 0.9rem;
            border-top: 1px solid #1f1c24;
            margin-top: 24px;
        }
        .copyright strong {
            color: #b8860b;
        }
        .last-updated {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 0.9rem;
            color: #a098a8;
            background: #1a1720;
            padding: 6px 18px;
            border-radius: 30px;
            border: 1px solid #2d2835;
            margin: 12px 0 20px;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 1.7rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            h3 {
                font-size: 1.2rem;
            }
            .header-inner {
                flex-wrap: wrap;
            }
            .hamburger {
                display: block;
            }
            nav {
                display: none;
                width: 100%;
                flex-direction: column;
                background: #1a181f;
                padding: 16px 0 12px;
                border-radius: 0 0 16px 16px;
                margin-top: 12px;
                border: 1px solid #2d2835;
            }
            nav.open {
                display: flex;
            }
            nav a {
                padding: 12px 20px;
                border-radius: 0;
                width: 100%;
                border-bottom: 1px solid #25202b;
            }
            nav a:last-child {
                border-bottom: none;
            }
            .sidebar {
                position: static;
            }
            .star-rating {
                font-size: 1.6rem;
            }
        }
        @media (min-width: 769px) {
            nav {
                display: flex !important;
            }
        }
        .highlight {
            color: #f5c542;
            font-weight: 600;
        }
        .badge {
            display: inline-block;
            background: #b8860b33;
            color: #f5d89a;
            font-size: 0.75rem;
            padding: 2px 12px;
            border-radius: 30px;
            border: 1px solid #b8860b55;
        }
        .divider {
            height: 2px;
            background: linear-gradient(90deg, transparent, #b8860b55, transparent);
            margin: 28px 0;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 20px 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            background: #1a1720;
            border-radius: 12px;
            overflow: hidden;
        }
        th,
        td {
            padding: 12px 16px;
            text-align: left;
            border-bottom: 1px solid #2d2835;
        }
        th {
            background: #2a2532;
            color: #f5d89a;
            font-weight: 600;
        }
        tr:last-child td {
            border-bottom: none;
        }
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #0f0e12;
        }
        ::-webkit-scrollbar-thumb {
            background: #3d3545;
            border-radius: 10px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #5a4f6a;
        }
