        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
            background: #0c0c0f;
            color: #e8e6e3;
            line-height: 1.75;
            padding: 0;
            margin: 0;
            min-height: 100vh;
        }
        a {
            color: #d4a843;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover,
        a:focus {
            color: #f0d080;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.3;
            color: #f5f0e8;
            margin-top: 0;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.25rem;
        }
        .site-header {
            background: linear-gradient(180deg, #1a1a24 0%, #0c0c0f 100%);
            border-bottom: 2px solid #2a2a3a;
            padding: 0.75rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.75rem;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: 0.04em;
            background: linear-gradient(135deg, #d4a843, #f5d78e, #d4a843);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 30px rgba(212, 168, 67, 0.15);
            transition: transform 0.3s;
            display: inline-block;
        }
        .my-logo:hover {
            transform: scale(1.02);
        }
        .my-logo i {
            -webkit-text-fill-color: #d4a843;
            margin-right: 0.2rem;
        }
        .main-nav {
            display: flex;
            align-items: center;
            gap: 0.25rem;
            flex-wrap: wrap;
        }
        .main-nav a {
            color: #c8c4bc;
            padding: 0.5rem 1rem;
            border-radius: 6px;
            font-size: 0.9rem;
            font-weight: 500;
            transition: background 0.2s, color 0.2s;
            white-space: nowrap;
        }
        .main-nav a:hover,
        .main-nav a:focus {
            background: rgba(212, 168, 67, 0.12);
            color: #f0d080;
            text-decoration: none;
        }
        .main-nav a i {
            margin-right: 0.4rem;
            font-size: 0.85rem;
        }
        .hamburger {
            display: none;
            background: none;
            border: 2px solid #d4a843;
            color: #d4a843;
            font-size: 1.4rem;
            padding: 0.3rem 0.7rem;
            border-radius: 6px;
            cursor: pointer;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: rgba(212, 168, 67, 0.15);
        }
        .breadcrumb {
            background: #14141c;
            padding: 0.7rem 0;
            border-bottom: 1px solid #2a2a3a;
            font-size: 0.85rem;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem 0.6rem;
            padding: 0;
            margin: 0;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 0.6rem;
            color: #6a6a7a;
            font-weight: 700;
        }
        .breadcrumb a {
            color: #a8a4a0;
        }
        .breadcrumb a:hover {
            color: #d4a843;
        }
        .breadcrumb .current {
            color: #d4a843;
            font-weight: 600;
        }
        .content-wrapper {
            padding: 2.5rem 0 4rem;
        }
        h1 {
            font-size: 2.6rem;
            margin-bottom: 1.2rem;
            border-bottom: 3px solid #d4a843;
            padding-bottom: 0.6rem;
            display: inline-block;
        }
        h2 {
            font-size: 2rem;
            margin-top: 3rem;
            margin-bottom: 1rem;
            color: #f0d8a0;
            border-left: 4px solid #d4a843;
            padding-left: 1rem;
        }
        h3 {
            font-size: 1.5rem;
            margin-top: 2.2rem;
            margin-bottom: 0.8rem;
            color: #e0d0b8;
        }
        h4 {
            font-size: 1.2rem;
            margin-top: 1.6rem;
            margin-bottom: 0.5rem;
            color: #d0c8b8;
            font-weight: 600;
        }
        p {
            margin-bottom: 1.2rem;
            color: #d8d4ce;
        }
        .lead {
            font-size: 1.2rem;
            color: #e8e0d8;
            font-weight: 400;
            border-left: 3px solid #d4a843;
            padding-left: 1.2rem;
            margin-bottom: 2rem;
        }
        .featured-image {
            margin: 2rem 0 2.5rem;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 40px rgba(0, 0, 0, 0.6);
            border: 1px solid #2a2a3a;
            background: #14141c;
        }
        .featured-image img {
            width: 100%;
            max-height: 520px;
            object-fit: cover;
        }
        .featured-image figcaption {
            padding: 0.8rem 1.2rem;
            font-size: 0.85rem;
            color: #a8a4a0;
            background: #1a1a24;
            border-top: 1px solid #2a2a3a;
        }
        .info-card {
            background: #1a1a24;
            border: 1px solid #2a2a3a;
            border-radius: 10px;
            padding: 1.5rem 1.8rem;
            margin: 1.8rem 0;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }
        .info-card h4 {
            margin-top: 0;
            color: #d4a843;
        }
        .info-card i {
            color: #d4a843;
            margin-right: 0.5rem;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 1.2rem;
            margin: 2rem 0;
        }
        .stat-item {
            background: #1a1a24;
            border: 1px solid #2a2a3a;
            border-radius: 10px;
            padding: 1.2rem;
            text-align: center;
            transition: transform 0.2s, border-color 0.2s;
        }
        .stat-item:hover {
            transform: translateY(-3px);
            border-color: #d4a843;
        }
        .stat-item .number {
            font-size: 2.2rem;
            font-weight: 800;
            color: #d4a843;
            display: block;
        }
        .stat-item .label {
            font-size: 0.9rem;
            color: #a8a4a0;
            margin-top: 0.3rem;
        }
        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.5rem 0;
            font-size: 0.95rem;
        }
        .data-table th {
            background: #2a2a3a;
            color: #f0d8a0;
            padding: 0.75rem 1rem;
            text-align: left;
            font-weight: 600;
        }
        .data-table td {
            padding: 0.7rem 1rem;
            border-bottom: 1px solid #2a2a3a;
        }
        .data-table tr:hover td {
            background: #1e1e2a;
        }
        .form-section {
            background: #1a1a24;
            border: 1px solid #2a2a3a;
            border-radius: 12px;
            padding: 2rem;
            margin: 2.5rem 0;
        }
        .form-section h3 {
            margin-top: 0;
        }
        .form-group {
            margin-bottom: 1.2rem;
        }
        .form-group label {
            display: block;
            font-weight: 600;
            margin-bottom: 0.3rem;
            color: #d0c8b8;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 0.7rem 1rem;
            background: #14141c;
            border: 1px solid #3a3a4a;
            border-radius: 6px;
            color: #e8e6e3;
            font-size: 1rem;
            transition: border-color 0.2s;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: #d4a843;
            box-shadow: 0 0 0 3px rgba(212, 168, 67, 0.15);
        }
        .form-group textarea {
            min-height: 100px;
            resize: vertical;
        }
        .btn {
            display: inline-block;
            padding: 0.7rem 2rem;
            background: #d4a843;
            color: #0c0c0f;
            font-weight: 700;
            font-size: 1rem;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            transition: background 0.2s, transform 0.15s;
        }
        .btn:hover {
            background: #e8c060;
            transform: translateY(-1px);
        }
        .btn i {
            margin-right: 0.5rem;
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 0.2rem;
            font-size: 1.8rem;
            margin: 0.5rem 0;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            color: #4a4a5a;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #d4a843;
        }
        .comment-item {
            background: #14141c;
            border: 1px solid #2a2a3a;
            border-radius: 8px;
            padding: 1.2rem 1.5rem;
            margin-bottom: 1rem;
        }
        .comment-item .meta {
            font-size: 0.85rem;
            color: #8a8a9a;
            margin-bottom: 0.4rem;
        }
        .comment-item .meta strong {
            color: #d4a843;
        }
        .comment-item .comment-text {
            color: #d8d4ce;
        }
        .site-footer {
            background: #14141c;
            border-top: 2px solid #2a2a3a;
            padding: 2.5rem 0 1.5rem;
            margin-top: 3rem;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-grid h4 {
            color: #d4a843;
            margin-bottom: 1rem;
            font-size: 1.1rem;
        }
        .footer-grid a {
            display: block;
            color: #a8a4a0;
            padding: 0.25rem 0;
            font-size: 0.9rem;
        }
        .footer-grid a:hover {
            color: #f0d080;
        }
        .footer-bottom {
            border-top: 1px solid #2a2a3a;
            padding-top: 1.5rem;
            text-align: center;
            font-size: 0.85rem;
            color: #7a7a8a;
        }
        .footer-bottom .copyright {
            margin-top: 0.5rem;
        }
        friend-link {
            display: block;
            padding: 0.3rem 0;
        }
        friend-link a {
            color: #d4a843;
        }
        friend-link a:hover {
            color: #f0d080;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                background: #1a1a24;
                border: 1px solid #2a2a3a;
                border-radius: 8px;
                padding: 0.5rem;
                margin-top: 0.5rem;
                gap: 0;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 0.7rem 1rem;
                border-bottom: 1px solid #2a2a3a;
                width: 100%;
            }
            .main-nav a:last-child {
                border-bottom: none;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.25rem;
            }
            .header-inner {
                gap: 0.5rem;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .form-section {
                padding: 1.2rem;
            }
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .data-table {
                font-size: 0.8rem;
            }
            .data-table th,
            .data-table td {
                padding: 0.5rem 0.6rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 0.9rem;
            }
            h1 {
                font-size: 1.5rem;
            }
            h2 {
                font-size: 1.3rem;
            }
            .stats-grid {
                grid-template-columns: 1fr 1fr;
                gap: 0.8rem;
            }
            .stat-item .number {
                font-size: 1.6rem;
            }
            .btn {
                width: 100%;
                text-align: center;
            }
        }
        @media print {
            .site-header {
                position: static;
                backdrop-filter: none;
            }
            .hamburger {
                display: none !important;
            }
            .main-nav {
                display: flex !important;
            }
            body {
                background: #fff;
                color: #222;
            }
            a {
                color: #0055aa;
            }
            .info-card,
            .form-section {
                border-color: #ccc;
                background: #f9f9f9;
            }
            .stat-item {
                border-color: #ccc;
                background: #f9f9f9;
            }
            .site-footer {
                border-color: #ccc;
                background: #f5f5f5;
            }
        }
        .transition-all {
            transition: all 0.25s ease;
        }
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #0c0c0f;
        }
        ::-webkit-scrollbar-thumb {
            background: #3a3a4a;
            border-radius: 4px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #d4a843;
        }
        .highlight {
            color: #d4a843;
            font-weight: 600;
        }
        .text-gold {
            color: #d4a843;
        }
        .small-meta {
            font-size: 0.85rem;
            color: #8a8a9a;
        }
        .last-updated {
            display: inline-block;
            background: #2a2a3a;
            padding: 0.3rem 1rem;
            border-radius: 20px;
            font-size: 0.8rem;
            color: #b8b4ac;
            margin-bottom: 1.5rem;
        }
        .last-updated i {
            margin-right: 0.4rem;
            color: #d4a843;
        }
