        *,
        *::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, Roboto, 'Helvetica Neue', sans-serif;
            background: #0b0d10;
            color: #e8e6e3;
            line-height: 1.75;
            padding: 0;
            margin: 0;
            min-height: 100vh;
        }
        :root {
            --bg-main: #0b0d10;
            --bg-card: #14181c;
            --bg-card-hover: #1c2228;
            --gold: #d4a94b;
            --gold-dim: #b8923e;
            --gold-glow: #f0d48a;
            --text-primary: #e8e6e3;
            --text-secondary: #b0aca6;
            --text-muted: #7a7670;
            --border-color: #2a2e34;
            --accent-red: #c0392b;
            --accent-blue: #3b82f6;
            --shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
            --radius: 10px;
            --transition: 0.25s ease;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.25;
            color: var(--gold);
            margin-top: 1.8em;
            margin-bottom: 0.6em;
            letter-spacing: 0.02em;
        }
        h1 {
            font-size: 2.4rem;
            border-bottom: 2px solid var(--gold-dim);
            padding-bottom: 0.3em;
            margin-top: 0.4em;
        }
        h2 {
            font-size: 1.8rem;
            border-left: 4px solid var(--gold);
            padding-left: 0.7em;
        }
        h3 {
            font-size: 1.35rem;
            color: var(--gold-dim);
        }
        h4 {
            font-size: 1.1rem;
            color: var(--text-primary);
        }
        p {
            margin-bottom: 1.2em;
            color: var(--text-secondary);
        }
        strong {
            color: var(--gold-glow);
            font-weight: 600;
        }
        a {
            color: var(--gold);
            text-decoration: none;
            transition: color var(--transition);
        }
        a:hover,
        a:focus-visible {
            color: var(--gold-glow);
            text-decoration: underline;
            outline: none;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.2rem;
        }
        .site-header {
            background: #0f1216;
            border-bottom: 1px solid var(--border-color);
            padding: 0.6rem 0;
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.8rem;
        }
        .my-logo {
            font-size: 1.7rem;
            font-weight: 800;
            letter-spacing: 0.06em;
            background: linear-gradient(135deg, var(--gold), var(--gold-glow));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-decoration: none !important;
            display: inline-flex;
            align-items: center;
            gap: 0.3rem;
        }
        .my-logo:hover {
            opacity: 0.9;
            text-decoration: none !important;
        }
        .my-logo::before {
            content: "⚔️";
            font-size: 1.5rem;
            -webkit-text-fill-color: initial;
        }
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 6px 4px;
            border-radius: 4px;
            transition: background var(--transition);
        }
        .hamburger:hover {
            background: rgba(212, 169, 75, 0.12);
        }
        .hamburger span {
            display: block;
            width: 28px;
            height: 3px;
            background: var(--gold);
            border-radius: 3px;
            transition: all 0.3s ease;
        }
        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 6px);
        }
        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }
        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -6px);
        }
        .main-nav {
            display: flex;
            align-items: center;
            gap: 1.6rem;
            flex-wrap: wrap;
        }
        .main-nav a {
            font-size: 0.95rem;
            font-weight: 500;
            padding: 0.3rem 0;
            position: relative;
            color: var(--text-secondary);
            text-decoration: none;
            transition: color var(--transition);
        }
        .main-nav a::after {
            content: "";
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gold);
            transition: width var(--transition);
        }
        .main-nav a:hover::after,
        .main-nav a:focus-visible::after {
            width: 100%;
        }
        .main-nav a:hover {
            color: var(--gold);
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 0.4rem 0.8rem;
            padding: 0.8rem 0 0.2rem;
            font-size: 0.85rem;
            color: var(--text-muted);
            list-style: none;
        }
        .breadcrumb li {
            display: inline;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 0.6rem;
            color: var(--text-muted);
            font-size: 1.1rem;
        }
        .breadcrumb a {
            color: var(--text-muted);
            text-decoration: none;
        }
        .breadcrumb a:hover {
            color: var(--gold);
        }
        .breadcrumb .current {
            color: var(--gold);
            font-weight: 500;
        }
        .search-section {
            margin: 2.4rem 0 2rem;
            background: var(--bg-card);
            border-radius: var(--radius);
            padding: 1.8rem 2rem;
            border: 1px solid var(--border-color);
        }
        .search-section form {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem;
            align-items: center;
        }
        .search-section input[type="text"] {
            flex: 1 1 220px;
            padding: 0.75rem 1.2rem;
            border-radius: 50px;
            border: 1px solid var(--border-color);
            background: #1a1f24;
            color: var(--text-primary);
            font-size: 1rem;
            transition: border var(--transition), box-shadow var(--transition);
        }
        .search-section input[type="text"]:focus {
            border-color: var(--gold);
            box-shadow: 0 0 0 3px rgba(212, 169, 75, 0.2);
            outline: none;
        }
        .search-section button {
            padding: 0.75rem 2rem;
            border-radius: 50px;
            border: none;
            background: linear-gradient(135deg, var(--gold), var(--gold-dim));
            color: #0b0d10;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: transform var(--transition), box-shadow var(--transition);
        }
        .search-section button:hover {
            transform: scale(1.03);
            box-shadow: 0 4px 20px rgba(212, 169, 75, 0.35);
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            margin: 2rem 0 3rem;
        }
        .article-body {
            background: var(--bg-card);
            border-radius: var(--radius);
            padding: 2rem 2.2rem;
            border: 1px solid var(--border-color);
            box-shadow: var(--shadow);
        }
        .featured-img {
            width: 100%;
            max-width: 900px;
            height: auto;
            border-radius: var(--radius);
            margin: 1.6rem 0 2rem;
            border: 1px solid var(--border-color);
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
            display: block;
            background: #1a1f24;
        }
        .inline-links {
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem 1.2rem;
            padding: 0.6rem 0 1.2rem;
        }
        .inline-links a {
            font-size: 0.9rem;
            background: rgba(212, 169, 75, 0.08);
            padding: 0.2rem 0.9rem;
            border-radius: 30px;
            border: 1px solid rgba(212, 169, 75, 0.15);
            transition: background var(--transition), border-color var(--transition);
        }
        .inline-links a:hover {
            background: rgba(212, 169, 75, 0.18);
            border-color: var(--gold-dim);
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.6rem;
            margin: 2.4rem 0 1.2rem;
        }
        .feedback-card {
            background: var(--bg-card);
            border-radius: var(--radius);
            padding: 1.6rem 1.8rem;
            border: 1px solid var(--border-color);
            transition: border-color var(--transition);
        }
        .feedback-card:hover {
            border-color: var(--gold-dim);
        }
        .feedback-card h3 {
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .feedback-card form {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
        }
        .feedback-card textarea,
        .feedback-card select {
            width: 100%;
            padding: 0.7rem 1rem;
            border-radius: 6px;
            border: 1px solid var(--border-color);
            background: #1a1f24;
            color: var(--text-primary);
            font-size: 0.95rem;
            resize: vertical;
            transition: border var(--transition);
        }
        .feedback-card textarea:focus,
        .feedback-card select:focus {
            border-color: var(--gold);
            outline: none;
        }
        .feedback-card select {
            appearance: auto;
            cursor: pointer;
        }
        .feedback-card button {
            align-self: flex-start;
            padding: 0.6rem 1.8rem;
            border-radius: 30px;
            border: none;
            background: var(--gold);
            color: #0b0d10;
            font-weight: 700;
            cursor: pointer;
            transition: background var(--transition), transform var(--transition);
        }
        .feedback-card button:hover {
            background: var(--gold-glow);
            transform: scale(1.02);
        }
        .site-footer {
            background: #0f1216;
            border-top: 1px solid var(--border-color);
            padding: 2.4rem 0 1.6rem;
            margin-top: 3rem;
        }
        .footer-inner {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 2rem;
        }
        .footer-col {
            flex: 1 1 200px;
        }
        .footer-col h4 {
            color: var(--gold);
            margin: 0 0 0.8rem;
            font-size: 1.1rem;
        }
        .footer-col a {
            display: block;
            color: var(--text-muted);
            font-size: 0.9rem;
            padding: 0.2rem 0;
            transition: color var(--transition);
        }
        .footer-col a:hover {
            color: var(--gold);
        }
        friend-link {
            display: block;
            margin-top: 0.6rem;
        }
        friend-link a {
            display: inline-block;
            margin-right: 1.2rem;
        }
        .copyright {
            text-align: center;
            padding-top: 1.6rem;
            margin-top: 1.6rem;
            border-top: 1px solid var(--border-color);
            color: var(--text-muted);
            font-size: 0.85rem;
        }
        .copyright strong {
            color: var(--text-secondary);
        }
        .last-updated {
            display: inline-block;
            background: rgba(212, 169, 75, 0.1);
            padding: 0.2rem 1rem;
            border-radius: 30px;
            font-size: 0.8rem;
            color: var(--text-muted);
            margin-top: 0.6rem;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }
            .main-nav {
                display: none;
                flex-direction: column;
                width: 100%;
                gap: 0.2rem;
                padding: 1rem 0 0.4rem;
                border-top: 1px solid var(--border-color);
                margin-top: 0.6rem;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 0.6rem 0.4rem;
                font-size: 1.05rem;
                border-bottom: 1px solid rgba(255, 255, 255, 0.04);
            }
            .main-nav a::after {
                display: none;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            h3 {
                font-size: 1.15rem;
            }
            .article-body {
                padding: 1.2rem 1rem;
            }
            .feedback-grid {
                grid-template-columns: 1fr;
            }
            .search-section {
                padding: 1.2rem 1.2rem;
            }
            .search-section form {
                flex-direction: column;
            }
            .search-section input[type="text"] {
                width: 100%;
                flex: 1 1 auto;
            }
            .search-section button {
                width: 100%;
            }
            .header-inner {
                gap: 0.4rem;
            }
            .my-logo {
                font-size: 1.3rem;
            }
            .footer-inner {
                flex-direction: column;
                gap: 1.4rem;
            }
            .inline-links {
                gap: 0.4rem 0.8rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 0.8rem;
            }
            h1 {
                font-size: 1.5rem;
            }
            .article-body {
                padding: 0.8rem 0.8rem;
            }
            .feedback-card {
                padding: 1rem;
            }
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .flex-wrap {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 0.8rem;
        }
        .gold-text {
            color: var(--gold);
        }
        .text-sm {
            font-size: 0.9rem;
        }
        .divider {
            border: none;
            border-top: 1px solid var(--border-color);
            margin: 1.6rem 0;
        }
