        *,
        *::before,
        *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
            background: #0b0a08;
            color: #e8e0d4;
            line-height: 1.75;
            min-height: 100vh;
        }
        a {
            color: #d4a853;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover,
        a:focus {
            color: #f5d68a;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        li {
            margin-bottom: 0.4rem;
        }
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #1a1815;
        }
        ::-webkit-scrollbar-thumb {
            background: #d4a853;
            border-radius: 4px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #f5d68a;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.25rem;
        }
        .site-header {
            background: linear-gradient(180deg, #1f1b16 0%, #0b0a08 100%);
            border-bottom: 2px solid #d4a85333;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
        }
        .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: 2px;
            text-transform: uppercase;
            color: #d4a853;
            text-shadow: 0 0 12px #d4a85344;
            transition: text-shadow 0.3s;
        }
        .my-logo:hover {
            text-shadow: 0 0 24px #d4a85388;
            text-decoration: none;
        }
        .my-logo small {
            display: block;
            font-size: 0.6rem;
            font-weight: 400;
            letter-spacing: 3px;
            color: #9a8a78;
            text-transform: none;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #d4a853;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.25rem 0.5rem;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: #d4a85322;
        }
        .primary-nav {
            display: flex;
            align-items: center;
            gap: 0.25rem;
            flex-wrap: wrap;
        }
        .primary-nav a {
            padding: 0.5rem 1rem;
            border-radius: 6px;
            font-size: 0.9rem;
            font-weight: 500;
            color: #c4b8a8;
            transition: background 0.2s, color 0.2s;
            white-space: nowrap;
        }
        .primary-nav a:hover,
        .primary-nav a.active {
            background: #d4a85318;
            color: #f5d68a;
            text-decoration: none;
        }
        .breadcrumb {
            padding: 0.75rem 0 0.5rem;
            font-size: 0.85rem;
            color: #9a8a78;
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem;
            align-items: center;
        }
        .breadcrumb a {
            color: #b8a68a;
        }
        .breadcrumb a:hover {
            color: #d4a853;
        }
        .breadcrumb .sep {
            color: #5a4e3e;
            margin: 0 0.2rem;
        }
        .main-content {
            padding: 2rem 0 3rem;
        }
        h1 {
            font-size: 2.8rem;
            font-weight: 800;
            line-height: 1.2;
            color: #f5d68a;
            margin: 0 0 1rem;
            letter-spacing: -0.5px;
            text-shadow: 0 2px 12px #00000066;
        }
        h2 {
            font-size: 2rem;
            font-weight: 700;
            color: #d4a853;
            margin: 2.5rem 0 1rem;
            padding-bottom: 0.4rem;
            border-bottom: 2px solid #d4a85333;
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 600;
            color: #e8d5b8;
            margin: 2rem 0 0.75rem;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
            color: #d4c4a8;
            margin: 1.25rem 0 0.5rem;
        }
        p {
            margin-bottom: 1.1rem;
        }
        .lead {
            font-size: 1.2rem;
            color: #d4c4a8;
            font-weight: 400;
            line-height: 1.7;
        }
        strong,
        b {
            color: #f5e6c8;
            font-weight: 600;
        }
        .highlight {
            background: #d4a85318;
            padding: 0 0.3rem;
            border-radius: 4px;
        }
        .cheat-code {
            display: inline-block;
            background: #1a1815;
            border: 1px solid #d4a85344;
            padding: 0.5rem 1.2rem;
            border-radius: 8px;
            font-family: 'Courier New', monospace;
            font-size: 1rem;
            color: #f5d68a;
            letter-spacing: 1px;
            margin: 0.25rem 0;
            box-shadow: 0 2px 8px #00000044;
        }
        .card {
            background: #1a1815;
            border: 1px solid #2a2520;
            border-radius: 16px;
            padding: 1.5rem 1.75rem;
            margin-bottom: 1.5rem;
            transition: border-color 0.3s, box-shadow 0.3s;
        }
        .card:hover {
            border-color: #d4a85344;
            box-shadow: 0 8px 32px #00000033;
        }
        .cheat-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.5rem 0;
            font-size: 0.95rem;
        }
        .cheat-table th {
            background: #2a2520;
            color: #d4a853;
            font-weight: 600;
            padding: 0.85rem 1rem;
            text-align: left;
            border-bottom: 2px solid #d4a85344;
        }
        .cheat-table td {
            padding: 0.75rem 1rem;
            border-bottom: 1px solid #2a2520;
            vertical-align: top;
        }
        .cheat-table tr:hover td {
            background: #d4a85308;
        }
        .featured-image {
            margin: 2rem 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 12px 40px #00000055;
            background: #1a1815;
            padding: 0.5rem;
        }
        .featured-image img {
            border-radius: 12px;
            width: 100%;
            height: auto;
        }
        .featured-image figcaption {
            text-align: center;
            font-size: 0.85rem;
            color: #9a8a78;
            padding: 0.75rem 0.5rem 0.25rem;
            font-style: italic;
        }
        .form-group {
            margin-bottom: 1.25rem;
        }
        .form-group label {
            display: block;
            font-weight: 500;
            margin-bottom: 0.35rem;
            color: #d4c4a8;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 0.8rem 1rem;
            background: #1a1815;
            border: 1px solid #3a342e;
            border-radius: 10px;
            color: #e8e0d4;
            font-size: 1rem;
            font-family: inherit;
            transition: border-color 0.3s, box-shadow 0.3s;
        }
        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #d4a853;
            box-shadow: 0 0 0 3px #d4a85322;
        }
        .form-group textarea {
            min-height: 120px;
            resize: vertical;
        }
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.75rem 2rem;
            background: #d4a853;
            color: #0b0a08;
            font-weight: 700;
            font-size: 1rem;
            border: none;
            border-radius: 10px;
            cursor: pointer;
            transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
        }
        .btn:hover {
            background: #f5d68a;
            transform: translateY(-2px);
            box-shadow: 0 8px 24px #d4a85333;
        }
        .btn:active {
            transform: translateY(0);
        }
        .btn-secondary {
            background: #2a2520;
            color: #d4a853;
        }
        .btn-secondary:hover {
            background: #3a342e;
            color: #f5d68a;
        }
        .search-box {
            display: flex;
            gap: 0.5rem;
            flex-wrap: wrap;
        }
        .search-box input {
            flex: 1;
            min-width: 180px;
        }
        .star-rating {
            display: flex;
            gap: 0.25rem;
            font-size: 2rem;
            color: #5a4e3e;
            cursor: pointer;
            direction: rtl;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            cursor: pointer;
            transition: color 0.2s, transform 0.2s;
            color: #5a4e3e;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #d4a853;
            transform: scale(1.1);
        }
        .rating-display {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            flex-wrap: wrap;
        }
        .rating-stars {
            color: #d4a853;
            font-size: 1.3rem;
            letter-spacing: 2px;
        }
        .comment-item {
            background: #1a1815;
            border-left: 3px solid #d4a85344;
            padding: 1rem 1.25rem;
            border-radius: 0 12px 12px 0;
            margin-bottom: 1rem;
        }
        .comment-item .meta {
            font-size: 0.85rem;
            color: #9a8a78;
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }
        .comment-item .name {
            color: #d4a853;
            font-weight: 600;
        }
        .related-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 0.75rem;
            margin: 1.5rem 0;
        }
        .related-links a {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.6rem 1rem;
            background: #1a1815;
            border: 1px solid #2a2520;
            border-radius: 10px;
            font-size: 0.9rem;
            transition: all 0.25s;
        }
        .related-links a:hover {
            border-color: #d4a85344;
            background: #2a2520;
            text-decoration: none;
        }
        .site-footer {
            background: #0f0d0a;
            border-top: 2px solid #d4a85322;
            padding: 2.5rem 0 1.5rem;
            margin-top: 3rem;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-grid h4 {
            color: #d4a853;
            margin-bottom: 1rem;
            border-bottom: 1px solid #d4a85322;
            padding-bottom: 0.5rem;
        }
        .footer-grid a {
            display: block;
            padding: 0.25rem 0;
            font-size: 0.9rem;
            color: #b8a68a;
        }
        .footer-grid a:hover {
            color: #f5d68a;
        }
        friend-link {
            display: block;
            padding: 0.25rem 0;
            font-size: 0.9rem;
        }
        friend-link a {
            color: #b8a68a;
        }
        friend-link a:hover {
            color: #f5d68a;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #2a2520;
            font-size: 0.85rem;
            color: #7a6a5a;
        }
        .copyright strong {
            color: #b8a68a;
        }
        @media (max-width: 1024px) {
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            .primary-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: stretch;
                background: #1a1815;
                border: 1px solid #2a2520;
                border-radius: 12px;
                padding: 0.5rem;
                margin-top: 0.5rem;
            }
            .primary-nav.open {
                display: flex;
            }
            .primary-nav a {
                padding: 0.7rem 1rem;
                border-radius: 6px;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            h3 {
                font-size: 1.2rem;
            }
            .cheat-table {
                font-size: 0.85rem;
            }
            .cheat-table th,
            .cheat-table td {
                padding: 0.5rem 0.6rem;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            .container {
                padding: 0 1rem;
            }
            .card {
                padding: 1rem 1.25rem;
            }
            .star-rating {
                font-size: 1.6rem;
            }
        }
        @media (max-width: 480px) {
            h1 {
                font-size: 1.5rem;
            }
            .my-logo {
                font-size: 1.3rem;
            }
            .my-logo small {
                font-size: 0.5rem;
            }
            .cheat-table {
                font-size: 0.75rem;
            }
            .cheat-table th,
            .cheat-table td {
                padding: 0.4rem 0.5rem;
            }
            .search-box {
                flex-direction: column;
            }
        }
        .text-center {
            text-align: center;
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .mt-2 {
            margin-top: 2rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .mb-2 {
            margin-bottom: 2rem;
        }
        .flex {
            display: flex;
        }
        .flex-wrap {
            flex-wrap: wrap;
        }
        .gap-1 {
            gap: 1rem;
        }
        .items-center {
            align-items: center;
        }
        .justify-between {
            justify-content: space-between;
        }
        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            border: 0;
        }
        .last-updated {
            font-size: 0.85rem;
            color: #9a8a78;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            flex-wrap: wrap;
            margin-bottom: 1.5rem;
        }
