        *,
        *::before,
        *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --gold: #d4a843;
            --gold-light: #f0d68a;
            --gold-dark: #b7892e;
            --black: #0d0d0d;
            --dark: #1a1a2e;
            --dark-card: #16213e;
            --white: #fcfcfc;
            --gray: #e8e8e8;
            --gray-text: #b0b0b0;
            --shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
            --radius: 12px;
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            --font: 'Segoe UI', Roboto, system-ui, -apple-system, sans-serif;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: var(--font);
            background: var(--black);
            color: var(--white);
            line-height: 1.7;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: var(--gold);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover,
        a:focus {
            color: var(--gold-light);
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: var(--radius);
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: var(--dark);
        }
        ::-webkit-scrollbar-thumb {
            background: var(--gold-dark);
            border-radius: 4px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: var(--gold);
        }
        .site-header {
            background: linear-gradient(135deg, #0d0d0d 0%, #1a1a2e 100%);
            border-bottom: 2px solid var(--gold-dark);
            padding: 12px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(212, 168, 67, 0.15);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px 20px;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--gold);
            text-transform: uppercase;
            letter-spacing: 2px;
            background: linear-gradient(135deg, #d4a843, #f0d68a);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 30px rgba(212, 168, 67, 0.3);
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .my-logo:hover {
            transform: scale(1.02);
            text-decoration: none;
        }
        .my-logo small {
            font-size: 0.7rem;
            -webkit-text-fill-color: var(--gray-text);
            font-weight: 400;
            letter-spacing: 1px;
            text-transform: none;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid var(--gold-dark);
            color: var(--gold);
            font-size: 1.6rem;
            padding: 6px 14px;
            border-radius: 8px;
            cursor: pointer;
            transition: var(--transition);
        }
        .nav-toggle:hover {
            border-color: var(--gold);
            background: rgba(212, 168, 67, 0.08);
        }
        .nav-menu {
            display: flex;
            align-items: center;
            gap: 6px 18px;
            flex-wrap: wrap;
        }
        .nav-menu a {
            color: var(--gray);
            font-weight: 500;
            padding: 6px 12px;
            border-radius: 6px;
            font-size: 0.95rem;
            transition: var(--transition);
            position: relative;
        }
        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 12px;
            right: 12px;
            height: 2px;
            background: var(--gold);
            transform: scaleX(0);
            transition: transform 0.3s;
        }
        .nav-menu a:hover::after,
        .nav-menu a:focus::after {
            transform: scaleX(1);
        }
        .nav-menu a:hover {
            color: var(--gold-light);
            background: rgba(212, 168, 67, 0.06);
        }
        .breadcrumbs {
            background: rgba(255, 255, 255, 0.03);
            padding: 10px 0;
            border-bottom: 1px solid rgba(212, 168, 67, 0.1);
            font-size: 0.85rem;
            color: var(--gray-text);
        }
        .breadcrumbs ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
        }
        .breadcrumbs li+li::before {
            content: '›';
            margin-right: 12px;
            color: var(--gold-dark);
        }
        .breadcrumbs a {
            color: var(--gold);
        }
        .breadcrumbs .current {
            color: var(--gray-text);
        }
        .main-content {
            flex: 1;
            padding: 40px 0 60px;
        }
        article {
            max-width: 860px;
            margin: 0 auto;
        }
        h1 {
            font-size: 2.8rem;
            font-weight: 900;
            color: var(--gold);
            line-height: 1.2;
            margin-bottom: 16px;
            background: linear-gradient(135deg, #f0d68a, #d4a843, #b7892e);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        h2 {
            font-size: 2rem;
            font-weight: 700;
            color: var(--gold-light);
            margin-top: 48px;
            margin-bottom: 18px;
            border-left: 4px solid var(--gold);
            padding-left: 18px;
        }
        h3 {
            font-size: 1.45rem;
            font-weight: 600;
            color: var(--gold);
            margin-top: 32px;
            margin-bottom: 12px;
        }
        h4 {
            font-size: 1.15rem;
            font-weight: 600;
            color: var(--gold-light);
            margin-top: 24px;
            margin-bottom: 8px;
        }
        p {
            margin-bottom: 18px;
            font-size: 1.05rem;
            color: #e0e0e0;
        }
        .lead {
            font-size: 1.2rem;
            color: var(--gray);
            font-weight: 400;
            border-left: 3px solid var(--gold-dark);
            padding-left: 20px;
            margin-bottom: 28px;
        }
        strong,
        b {
            color: var(--gold-light);
            font-weight: 700;
        }
        ul,
        ol {
            margin: 16px 0 24px 24px;
            color: #e0e0e0;
        }
        li {
            margin-bottom: 8px;
        }
        .highlight-box {
            background: linear-gradient(135deg, rgba(212, 168, 67, 0.08), rgba(212, 168, 67, 0.02));
            border: 1px solid rgba(212, 168, 67, 0.25);
            border-radius: var(--radius);
            padding: 24px 28px;
            margin: 28px 0;
            box-shadow: var(--shadow);
        }
        .highlight-box p:last-child {
            margin-bottom: 0;
        }
        .emoji-big {
            font-size: 1.8rem;
            display: inline-block;
            margin-right: 6px;
        }
        .featured-image {
            margin: 32px 0;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            background: var(--dark-card);
        }
        .featured-image img {
            width: 100%;
            object-fit: cover;
            max-height: 480px;
        }
        .featured-image figcaption {
            padding: 12px 18px;
            font-size: 0.9rem;
            color: var(--gray-text);
            background: rgba(0, 0, 0, 0.4);
            font-style: italic;
        }
        .search-section {
            background: var(--dark-card);
            border: 1px solid rgba(212, 168, 67, 0.2);
            border-radius: var(--radius);
            padding: 28px 30px;
            margin: 40px 0;
            box-shadow: var(--shadow);
        }
        .search-section h3 {
            margin-top: 0;
        }
        .search-form {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            margin-top: 12px;
        }
        .search-form input[type="search"] {
            flex: 1;
            min-width: 200px;
            padding: 14px 20px;
            border-radius: 8px;
            border: 2px solid rgba(212, 168, 67, 0.3);
            background: rgba(255, 255, 255, 0.05);
            color: var(--white);
            font-size: 1rem;
            transition: var(--transition);
            outline: none;
        }
        .search-form input[type="search"]:focus {
            border-color: var(--gold);
            background: rgba(255, 255, 255, 0.08);
            box-shadow: 0 0 20px rgba(212, 168, 67, 0.1);
        }
        .search-form input[type="search"]::placeholder {
            color: var(--gray-text);
        }
        .btn {
            padding: 14px 32px;
            border: none;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            background: linear-gradient(135deg, var(--gold-dark), var(--gold));
            color: var(--black);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(212, 168, 67, 0.3);
        }
        .btn:active {
            transform: translateY(0);
        }
        .feedback-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin: 48px 0;
        }
        @media (max-width: 768px) {
            .feedback-section {
                grid-template-columns: 1fr;
            }
        }
        .feedback-card {
            background: var(--dark-card);
            border: 1px solid rgba(212, 168, 67, 0.15);
            border-radius: var(--radius);
            padding: 28px 30px;
            box-shadow: var(--shadow);
        }
        .feedback-card h3 {
            margin-top: 0;
            font-size: 1.3rem;
        }
        .feedback-card label {
            display: block;
            margin-top: 14px;
            font-weight: 500;
            color: var(--gray);
        }
        .feedback-card input,
        .feedback-card textarea,
        .feedback-card select {
            width: 100%;
            padding: 12px 16px;
            border-radius: 8px;
            border: 2px solid rgba(212, 168, 67, 0.2);
            background: rgba(255, 255, 255, 0.04);
            color: var(--white);
            font-size: 0.95rem;
            transition: var(--transition);
            outline: none;
            font-family: var(--font);
            margin-top: 4px;
        }
        .feedback-card input:focus,
        .feedback-card textarea:focus,
        .feedback-card select:focus {
            border-color: var(--gold);
            background: rgba(255, 255, 255, 0.07);
        }
        .feedback-card textarea {
            min-height: 90px;
            resize: vertical;
        }
        .feedback-card .btn {
            margin-top: 18px;
            width: 100%;
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 4px;
            margin-top: 6px;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 1.8rem;
            color: var(--gray-text);
            cursor: pointer;
            transition: var(--transition);
            margin-top: 0;
            padding: 0 2px;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: var(--gold);
            text-shadow: 0 0 15px rgba(212, 168, 67, 0.4);
        }
        .site-footer {
            background: linear-gradient(135deg, #0a0a0f, #111122);
            border-top: 2px solid rgba(212, 168, 67, 0.15);
            padding: 40px 0 30px;
            margin-top: 60px;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 30px 40px;
        }
        @media (max-width: 768px) {
            .footer-inner {
                grid-template-columns: 1fr;
                text-align: center;
            }
        }
        .footer-inner h4 {
            color: var(--gold);
            margin-top: 0;
            font-size: 1.1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .footer-inner p,
        .footer-inner a {
            font-size: 0.95rem;
            color: var(--gray-text);
        }
        .footer-inner a:hover {
            color: var(--gold-light);
        }
        friend-link {
            display: block;
            margin-top: 30px;
            padding-top: 24px;
            border-top: 1px solid rgba(212, 168, 67, 0.1);
            font-size: 0.9rem;
            color: var(--gray-text);
        }
        friend-link a {
            display: inline-block;
            margin: 4px 12px 4px 0;
            color: var(--gold);
        }
        friend-link a:hover {
            color: var(--gold-light);
        }
        .copyright {
            margin-top: 24px;
            font-size: 0.85rem;
            color: #666;
            text-align: center;
            border-top: 1px solid rgba(255, 255, 255, 0.04);
            padding-top: 20px;
        }
        @media (max-width: 900px) {
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            .header-inner {
                padding: 0 4px;
            }
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            .nav-menu {
                display: none;
                flex-direction: column;
                width: 100%;
                background: var(--dark);
                padding: 16px 0 20px;
                border-radius: 0 0 var(--radius) var(--radius);
                border-top: 1px solid rgba(212, 168, 67, 0.15);
                gap: 4px;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu a {
                padding: 10px 20px;
                width: 100%;
                text-align: left;
                border-radius: 0;
            }
            .nav-menu a::after {
                display: none;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            .feedback-section {
                grid-template-columns: 1fr;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form input[type="search"] {
                min-width: auto;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 14px;
            }
            h1 {
                font-size: 1.5rem;
            }
            .highlight-box {
                padding: 16px 18px;
            }
            .feedback-card {
                padding: 18px 16px;
            }
        }
        .text-gold {
            color: var(--gold);
        }
        .text-muted {
            color: var(--gray-text);
        }
        .mt-2 {
            margin-top: 16px;
        }
        .mb-2 {
            margin-bottom: 16px;
        }
        .flex-center {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .last-updated {
            display: inline-block;
            background: rgba(212, 168, 67, 0.1);
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 0.85rem;
            color: var(--gray-text);
            border: 1px solid rgba(212, 168, 67, 0.15);
            margin-bottom: 20px;
        }
        .last-updated i {
            color: var(--gold);
            margin-right: 6px;
        }
        .link-list-inline {
            display: flex;
            flex-wrap: wrap;
            gap: 8px 16px;
            margin: 16px 0 20px;
        }
        .link-list-inline a {
            background: rgba(212, 168, 67, 0.06);
            padding: 4px 14px;
            border-radius: 20px;
            border: 1px solid rgba(212, 168, 67, 0.12);
            font-size: 0.9rem;
            transition: var(--transition);
        }
        .link-list-inline a:hover {
            background: rgba(212, 168, 67, 0.15);
            border-color: var(--gold-dark);
            transform: translateY(-1px);
        }
        .stats-table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
            font-size: 0.95rem;
        }
        .stats-table th {
            background: rgba(212, 168, 67, 0.15);
            color: var(--gold);
            padding: 12px 16px;
            text-align: left;
            border-bottom: 2px solid var(--gold-dark);
        }
        .stats-table td {
            padding: 10px 16px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            color: #ddd;
        }
        .stats-table tr:hover td {
            background: rgba(212, 168, 67, 0.04);
        }
