        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
            background: #0b0e14;
            color: #e8edf5;
            line-height: 1.7;
            padding: 0;
            margin: 0;
            min-height: 100vh;
        }
        a {
            color: #c8aa6e;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover,
        a:focus {
            color: #e1c78c;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        ul,
        ol {
            padding-left: 1.4rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 600;
            line-height: 1.3;
            color: #f0e6d3;
            margin-top: 1.8rem;
            margin-bottom: 0.8rem;
        }
        h1 {
            font-size: 2.4rem;
            border-bottom: 2px solid #c8aa6e;
            padding-bottom: 0.5rem;
            margin-top: 0.5rem;
        }
        h2 {
            font-size: 1.8rem;
            border-left: 4px solid #c8aa6e;
            padding-left: 1rem;
            margin-top: 2.5rem;
        }
        h3 {
            font-size: 1.4rem;
            color: #dcc9a6;
            margin-top: 1.8rem;
        }
        h4 {
            font-size: 1.15rem;
            color: #cdb891;
            margin-top: 1.4rem;
        }
        p {
            margin-bottom: 1.2rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.2rem;
        }
        header {
            background: #10141b;
            border-bottom: 2px solid #2c313c;
            padding: 0.6rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 12px 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.5rem;
            font-weight: 700;
            color: #f0e6d3;
            letter-spacing: 1px;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            background: linear-gradient(135deg, #c8aa6e, #a8874a);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .my-logo i {
            -webkit-text-fill-color: #c8aa6e;
            font-size: 1.8rem;
        }
        .my-logo:hover {
            opacity: 0.85;
            text-decoration: none;
        }
        nav {
            display: flex;
            align-items: center;
            gap: 0.3rem;
            flex-wrap: wrap;
        }
        nav a {
            padding: 0.5rem 0.9rem;
            font-size: 0.92rem;
            font-weight: 500;
            color: #b4b9c4;
            border-radius: 4px;
            transition: background 0.2s, color 0.2s;
        }
        nav a:hover,
        nav a:focus {
            background: #1e2530;
            color: #f0e6d3;
            text-decoration: none;
        }
        nav a i {
            margin-right: 0.3rem;
            font-size: 0.8rem;
            color: #c8aa6e;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 1px solid #3a404e;
            color: #f0e6d3;
            font-size: 1.5rem;
            padding: 0.3rem 0.8rem;
            border-radius: 4px;
            cursor: pointer;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: #1e2530;
        }
        .breadcrumb {
            background: #181d27;
            padding: 0.6rem 0;
            border-bottom: 1px solid #262c38;
            font-size: 0.85rem;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem 0.8rem;
            padding: 0;
            margin: 0;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 0.6rem;
            color: #6b7280;
        }
        .breadcrumb a {
            color: #9aa2b0;
        }
        .breadcrumb a:hover {
            color: #c8aa6e;
        }
        .breadcrumb .active {
            color: #c8aa6e;
            font-weight: 500;
        }
        .hero-image {
            margin: 1.8rem 0 2rem;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
            background: #1a202c;
        }
        .hero-image img {
            width: 100%;
            height: auto;
            max-height: 480px;
            object-fit: cover;
            border-bottom: 3px solid #c8aa6e;
        }
        .hero-caption {
            padding: 0.8rem 1.2rem;
            font-size: 0.9rem;
            color: #b4b9c4;
            background: #141a24;
            border-radius: 0 0 12px 12px;
            font-style: italic;
        }
        .content-section {
            margin: 2.5rem 0;
            padding: 1.5rem 0;
            border-bottom: 1px solid #262c38;
        }
        .content-section:last-of-type {
            border-bottom: none;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 1.2rem;
            margin: 1.8rem 0;
        }
        .stat-card {
            background: #181d27;
            border: 1px solid #2c313c;
            border-radius: 10px;
            padding: 1.2rem 1rem;
            text-align: center;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .stat-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
        }
        .stat-card i {
            font-size: 2rem;
            color: #c8aa6e;
            margin-bottom: 0.5rem;
        }
        .stat-card .number {
            font-size: 1.8rem;
            font-weight: 700;
            color: #f0e6d3;
            display: block;
        }
        .stat-card .label {
            font-size: 0.9rem;
            color: #9aa2b0;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 1.5rem 0;
            border-radius: 8px;
            border: 1px solid #2c313c;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            background: #141a24;
            font-size: 0.92rem;
        }
        th,
        td {
            padding: 0.8rem 1rem;
            text-align: left;
            border-bottom: 1px solid #262c38;
        }
        th {
            background: #1e2530;
            color: #c8aa6e;
            font-weight: 600;
            white-space: nowrap;
        }
        tr:hover td {
            background: #1a212e;
        }
        .form-card {
            background: #141a24;
            border: 1px solid #2c313c;
            border-radius: 10px;
            padding: 1.8rem;
            margin: 1.5rem 0;
        }
        .form-card label {
            display: block;
            font-weight: 500;
            color: #dcc9a6;
            margin-bottom: 0.3rem;
            font-size: 0.95rem;
        }
        .form-card input,
        .form-card textarea,
        .form-card select {
            width: 100%;
            padding: 0.7rem 1rem;
            border-radius: 6px;
            border: 1px solid #3a404e;
            background: #0b0e14;
            color: #e8edf5;
            font-family: inherit;
            font-size: 0.95rem;
            transition: border 0.2s;
            margin-bottom: 1rem;
        }
        .form-card input:focus,
        .form-card textarea:focus,
        .form-card select:focus {
            outline: none;
            border-color: #c8aa6e;
            box-shadow: 0 0 0 2px rgba(200, 170, 110, 0.2);
        }
        .form-card textarea {
            min-height: 120px;
            resize: vertical;
        }
        .btn {
            display: inline-block;
            background: #c8aa6e;
            color: #0b0e14;
            font-weight: 600;
            padding: 0.7rem 1.8rem;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            font-size: 0.95rem;
            transition: background 0.2s, transform 0.1s;
        }
        .btn:hover {
            background: #dbbf84;
            transform: scale(1.02);
            text-decoration: none;
        }
        .btn i {
            margin-right: 0.4rem;
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 0.2rem;
            margin-bottom: 1rem;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 1.6rem;
            color: #3a404e;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #c8aa6e;
        }
        .comment-item {
            background: #181d27;
            border: 1px solid #262c38;
            border-radius: 8px;
            padding: 1rem 1.2rem;
            margin-bottom: 1rem;
        }
        .comment-item .meta {
            font-size: 0.85rem;
            color: #9aa2b0;
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.4rem;
            margin-bottom: 0.5rem;
        }
        .comment-item .author {
            font-weight: 600;
            color: #c8aa6e;
        }
        .comment-item .text {
            color: #d0d5e0;
        }
        footer {
            background: #0d111a;
            border-top: 2px solid #2c313c;
            padding: 2.5rem 0 1.5rem;
            margin-top: 3rem;
        }
        footer .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        footer h4 {
            color: #c8aa6e;
            font-size: 1.1rem;
            margin-top: 0;
            border-bottom: 1px solid #2c313c;
            padding-bottom: 0.5rem;
        }
        footer ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        footer ul li {
            margin-bottom: 0.4rem;
        }
        footer ul li a {
            color: #9aa2b0;
            font-size: 0.9rem;
        }
        footer ul li a:hover {
            color: #c8aa6e;
        }
        friend-link {
            display: block;
            padding: 1rem 0;
            border-top: 1px solid #262c38;
            margin-top: 1.5rem;
            font-size: 0.9rem;
            color: #9aa2b0;
        }
        friend-link a {
            color: #c8aa6e;
            margin: 0 0.4rem;
        }
        .copyright {
            text-align: center;
            color: #6b7280;
            font-size: 0.85rem;
            padding-top: 1.2rem;
            border-top: 1px solid #1e2530;
        }
        .copyright i {
            color: #c8aa6e;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            h3 {
                font-size: 1.15rem;
            }
            .header-inner {
                flex-direction: row;
            }
            .nav-toggle {
                display: block;
            }
            nav {
                display: none;
                width: 100%;
                flex-direction: column;
                background: #10141b;
                padding: 1rem 0;
                border-top: 1px solid #2c313c;
                margin-top: 0.6rem;
            }
            nav.open {
                display: flex;
            }
            nav a {
                padding: 0.6rem 1.2rem;
                width: 100%;
                border-radius: 0;
            }
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .form-card {
                padding: 1.2rem;
            }
            .hero-image img {
                max-height: 240px;
            }
        }
        @media (max-width: 480px) {
            .stats-grid {
                grid-template-columns: 1fr;
            }
            .breadcrumb ol {
                font-size: 0.75rem;
                gap: 0.2rem 0.4rem;
            }
            .my-logo {
                font-size: 1.1rem;
            }
            .my-logo i {
                font-size: 1.3rem;
            }
        }
        .text-gold {
            color: #c8aa6e;
        }
        .text-muted {
            color: #9aa2b0;
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .mt-2 {
            margin-top: 2rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .flex-between {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 0.8rem;
        }
        .last-updated {
            display: inline-block;
            background: #1e2530;
            padding: 0.3rem 1rem;
            border-radius: 20px;
            font-size: 0.85rem;
            color: #9aa2b0;
            border: 1px solid #2c313c;
        }
        .last-updated i {
            color: #c8aa6e;
            margin-right: 0.4rem;
        }
        .highlight-box {
            background: #1a212e;
            border-left: 4px solid #c8aa6e;
            padding: 1.2rem 1.5rem;
            border-radius: 0 8px 8px 0;
            margin: 1.5rem 0;
        }
        .label-badge {
            display: inline-block;
            background: #c8aa6e;
            color: #0b0e14;
            font-size: 0.7rem;
            font-weight: 700;
            padding: 0.15rem 0.6rem;
            border-radius: 12px;
            letter-spacing: 0.3px;
            text-transform: uppercase;
        }
