        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
            background: #0b0a0a;
            color: #f0ece4;
            line-height: 1.7;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: #f5c542;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover,
        a:focus-visible {
            color: #ffd966;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.3;
            color: #f9e6b3;
            margin-top: 1.8rem;
            margin-bottom: 0.75rem;
        }
        h1 {
            font-size: 2.4rem;
            margin-top: 0;
        }
        h2 {
            font-size: 1.8rem;
            border-bottom: 2px solid #c9a84c;
            padding-bottom: 0.4rem;
        }
        h3 {
            font-size: 1.4rem;
            color: #f0d78c;
        }
        h4 {
            font-size: 1.15rem;
            color: #e6cc80;
        }
        p {
            margin-bottom: 1.2rem;
        }
        ul,
        ol {
            margin: 0.8rem 0 1.2rem 1.8rem;
        }
        li {
            margin-bottom: 0.45rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.2rem;
        }
        .skip-link {
            position: absolute;
            top: -100%;
            left: 0;
            background: #f5c542;
            color: #0b0a0a;
            padding: 0.6rem 1.2rem;
            z-index: 1000;
            font-weight: 600;
            border-radius: 0 0 0.5rem 0;
        }
        .skip-link:focus {
            top: 0;
        }
        .site-header {
            background: linear-gradient(135deg, #1a1510 0%, #2c241c 100%);
            border-bottom: 3px solid #c9a84c;
            padding: 0.6rem 0;
            position: sticky;
            top: 0;
            z-index: 900;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.6rem 1.2rem;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            letter-spacing: 3px;
            text-transform: uppercase;
            background: linear-gradient(135deg, #f5c542, #d4a840);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 30px rgba(245, 197, 66, 0.15);
            display: inline-flex;
            align-items: center;
            gap: 0.3rem;
            font-family: 'Georgia', 'Times New Roman', serif;
        }
        .my-logo i {
            -webkit-text-fill-color: initial;
            color: #f5c542;
            font-size: 1.6rem;
        }
        .my-logo small {
            font-size: 0.7rem;
            -webkit-text-fill-color: initial;
            color: #b8a07a;
            letter-spacing: 1px;
            font-weight: 300;
            display: block;
            font-family: 'Segoe UI', sans-serif;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #f5c542;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.3rem 0.6rem;
            border-radius: 0.3rem;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: rgba(245, 197, 66, 0.1);
        }
        .primary-nav {
            display: flex;
            align-items: center;
            gap: 0.2rem;
            flex-wrap: wrap;
        }
        .primary-nav a {
            display: block;
            padding: 0.5rem 0.9rem;
            border-radius: 0.3rem;
            font-size: 0.9rem;
            font-weight: 500;
            color: #ddd6c8;
            transition: background 0.2s, color 0.2s;
            white-space: nowrap;
        }
        .primary-nav a:hover,
        .primary-nav a:focus-visible {
            background: rgba(245, 197, 66, 0.12);
            color: #f5c542;
            text-decoration: none;
        }
        .primary-nav a.active {
            color: #f5c542;
            background: rgba(245, 197, 66, 0.08);
        }
        @media (max-width: 820px) {
            .nav-toggle {
                display: block;
            }
            .primary-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: stretch;
                gap: 0.1rem;
                padding: 0.8rem 0 0.4rem 0;
                border-top: 1px solid rgba(245, 197, 66, 0.2);
                margin-top: 0.4rem;
            }
            .primary-nav.open {
                display: flex;
            }
            .primary-nav a {
                padding: 0.7rem 0.8rem;
                border-radius: 0.2rem;
                font-size: 1rem;
            }
            .header-inner {
                align-items: center;
            }
        }
        .breadcrumbs {
            background: #1f1a15;
            padding: 0.5rem 0;
            border-bottom: 1px solid #3a3028;
            font-size: 0.85rem;
            color: #b8a693;
        }
        .breadcrumbs ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem 0.6rem;
            margin: 0;
            padding: 0;
        }
        .breadcrumbs li+li::before {
            content: "›";
            margin-right: 0.6rem;
            color: #7a6a5a;
            font-weight: 300;
        }
        .breadcrumbs a {
            color: #d4c5ad;
        }
        .breadcrumbs a:hover {
            color: #f5c542;
        }
        .breadcrumbs .current {
            color: #f5c542;
            font-weight: 500;
        }
        .hero-section {
            position: relative;
            margin: 1.8rem 0 2.4rem 0;
            border-radius: 0.8rem;
            overflow: hidden;
            background: #1f1a15;
            box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
        }
        .hero-section img {
            width: 100%;
            max-height: 480px;
            object-fit: cover;
            border-radius: 0.8rem;
        }
        .hero-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 2rem 2rem 1.8rem 2rem;
            background: linear-gradient(transparent 20%, rgba(0, 0, 0, 0.85) 80%);
            border-radius: 0 0 0.8rem 0.8rem;
        }
        .hero-overlay h1 {
            margin: 0;
            font-size: 2.2rem;
            color: #f9e6b3;
            text-shadow: 0 2px 16px rgba(0, 0, 0, 0.7);
        }
        .hero-overlay p {
            margin: 0.3rem 0 0 0;
            font-size: 1.05rem;
            color: #e0d4be;
            text-shadow: 0 1px 8px rgba(0, 0, 0, 0.6);
            max-width: 700px;
        }
        @media (max-width: 600px) {
            .hero-overlay {
                padding: 1.2rem 1rem 1rem 1rem;
            }
            .hero-overlay h1 {
                font-size: 1.5rem;
            }
            .hero-overlay p {
                font-size: 0.9rem;
            }
            h1 {
                font-size: 1.7rem;
            }
            h2 {
                font-size: 1.35rem;
            }
            h3 {
                font-size: 1.15rem;
            }
        }
        .main-grid {
            display: grid;
            grid-template-columns: 1fr 320px;
            gap: 2.4rem;
            margin: 2rem 0 3rem 0;
        }
        @media (max-width: 920px) {
            .main-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
        }
        .content-area {
            min-width: 0;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 1.8rem;
        }
        .sidebar-card {
            background: #1f1a15;
            border-radius: 0.6rem;
            padding: 1.4rem 1.2rem;
            border: 1px solid #3a3028;
        }
        .sidebar-card h3 {
            margin-top: 0;
            font-size: 1.1rem;
            color: #f5c542;
            border-bottom: 1px solid #3a3028;
            padding-bottom: 0.5rem;
            margin-bottom: 0.8rem;
        }
        .sidebar-card ul {
            list-style: none;
            margin: 0;
            padding: 0;
        }
        .sidebar-card li {
            margin-bottom: 0.4rem;
        }
        .sidebar-card a {
            display: block;
            padding: 0.4rem 0;
            font-size: 0.92rem;
            border-bottom: 1px solid #2a2520;
            color: #d4c5ad;
        }
        .sidebar-card a:hover {
            color: #f5c542;
            border-bottom-color: #c9a84c;
        }
        .search-form {
            display: flex;
            gap: 0.4rem;
            margin-top: 0.3rem;
        }
        .search-form input[type="text"] {
            flex: 1;
            padding: 0.6rem 0.8rem;
            border: 1px solid #4a3f35;
            border-radius: 0.3rem;
            background: #0b0a0a;
            color: #f0ece4;
            font-size: 0.95rem;
            outline: none;
            transition: border 0.2s;
        }
        .search-form input[type="text"]:focus {
            border-color: #f5c542;
        }
        .search-form button {
            padding: 0.6rem 1rem;
            background: #c9a84c;
            border: none;
            border-radius: 0.3rem;
            color: #0b0a0a;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s;
        }
        .search-form button:hover {
            background: #f5c542;
        }
        .interaction-area {
            display: flex;
            flex-direction: column;
            gap: 1.6rem;
            margin: 2.4rem 0;
            padding-top: 1.6rem;
            border-top: 2px solid #3a3028;
        }
        .comment-form textarea,
        .comment-form input {
            width: 100%;
            padding: 0.7rem 0.9rem;
            border: 1px solid #4a3f35;
            border-radius: 0.3rem;
            background: #0b0a0a;
            color: #f0ece4;
            font-size: 0.95rem;
            font-family: inherit;
            outline: none;
            transition: border 0.2s;
            margin-bottom: 0.6rem;
        }
        .comment-form textarea:focus,
        .comment-form input:focus {
            border-color: #f5c542;
        }
        .comment-form textarea {
            min-height: 100px;
            resize: vertical;
        }
        .comment-form button,
        .rating-form button {
            padding: 0.6rem 1.6rem;
            background: #c9a84c;
            border: none;
            border-radius: 0.3rem;
            color: #0b0a0a;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s;
            font-size: 0.95rem;
        }
        .comment-form button:hover,
        .rating-form button:hover {
            background: #f5c542;
        }
        .rating-stars {
            display: flex;
            gap: 0.3rem;
            font-size: 1.6rem;
            color: #4a3f35;
            cursor: pointer;
            margin: 0.3rem 0 0.6rem 0;
            flex-direction: row-reverse;
            justify-content: flex-end;
        }
        .rating-stars i {
            transition: color 0.15s;
        }
        .rating-stars i:hover,
        .rating-stars i:hover~i {
            color: #f5c542;
        }
        .rating-stars i.selected {
            color: #f5c542;
        }
        friend-link {
            display: block;
            padding: 1rem 0;
        }
        .friend-links-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem 1.6rem;
            list-style: none;
            margin: 0.6rem 0 0 0;
            padding: 0;
        }
        .friend-links-grid li {
            margin: 0;
        }
        .friend-links-grid a {
            color: #d4c5ad;
            font-size: 0.9rem;
            padding: 0.2rem 0;
        }
        .friend-links-grid a:hover {
            color: #f5c542;
        }
        .site-footer {
            background: #1a1510;
            border-top: 3px solid #2c241c;
            padding: 2rem 0 1.2rem 0;
            margin-top: auto;
            color: #b8a693;
            font-size: 0.88rem;
        }
        .footer-inner {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 1.2rem;
            align-items: center;
        }
        .footer-copy {
            opacity: 0.8;
        }
        .footer-copy a {
            color: #d4c5ad;
        }
        .footer-copy a:hover {
            color: #f5c542;
        }
        .strategy-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.2rem 0 1.8rem 0;
            font-size: 0.92rem;
            background: #16120e;
            border-radius: 0.4rem;
            overflow: hidden;
        }
        .strategy-table th,
        .strategy-table td {
            padding: 0.6rem 0.9rem;
            text-align: left;
            border-bottom: 1px solid #2f2822;
        }
        .strategy-table th {
            background: #2c241c;
            color: #f5c542;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-size: 0.82rem;
        }
        .strategy-table tr:hover td {
            background: #221d17;
        }
        .highlight-box {
            background: #1f1a15;
            border-left: 4px solid #f5c542;
            padding: 1rem 1.4rem;
            border-radius: 0 0.4rem 0.4rem 0;
            margin: 1.2rem 0;
        }
        .highlight-box strong {
            color: #f5c542;
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 0.8rem;
            }
            .header-inner {
                gap: 0.3rem;
            }
            .my-logo {
                font-size: 1.4rem;
                letter-spacing: 1px;
            }
            .my-logo small {
                font-size: 0.6rem;
            }
            .strategy-table {
                font-size: 0.78rem;
            }
            .strategy-table th,
            .strategy-table td {
                padding: 0.4rem 0.5rem;
            }
            .hero-overlay h1 {
                font-size: 1.2rem;
            }
            .hero-overlay p {
                font-size: 0.8rem;
            }
            .rating-stars {
                font-size: 1.3rem;
            }
        }
        @media print {
            .site-header,
            .breadcrumbs,
            .sidebar,
            .interaction-area,
            .site-footer,
            .nav-toggle {
                display: none !important;
            }
            .main-grid {
                display: block;
            }
            body {
                background: #fff;
                color: #222;
            }
            h1,
            h2,
            h3,
            h4 {
                color: #222;
            }
            a {
                color: #1155cc;
            }
            .hero-overlay {
                background: none;
                position: static;
                padding: 1rem 0;
            }
            .hero-overlay h1,
            .hero-overlay p {
                color: #222;
                text-shadow: none;
            }
            .hero-section img {
                max-height: 300px;
            }
        }
        .fade-in {
            animation: fadeUp 0.6s ease both;
        }
        @keyframes fadeUp {
            0% {
                opacity: 0;
                transform: translateY(16px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }
