        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            background: #0f1a2b;
            color: #e8edf3;
            line-height: 1.7;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: #facc15;
            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;
            border-radius: 12px;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.25;
            color: #f5f7fa;
            margin-top: 1.2em;
            margin-bottom: 0.5em;
        }
        h1 {
            font-size: clamp(2rem, 5vw, 3.2rem);
            letter-spacing: -0.02em;
        }
        h2 {
            font-size: clamp(1.5rem, 3.5vw, 2.2rem);
            border-bottom: 2px solid #facc15;
            padding-bottom: 0.25em;
        }
        h3 {
            font-size: clamp(1.2rem, 2.5vw, 1.6rem);
        }
        h4 {
            font-size: 1.1rem;
            color: #facc15;
        }
        p {
            margin-bottom: 1.1em;
            font-size: 1rem;
        }
        ul,
        ol {
            margin: 0.8em 0 1.2em 1.8em;
        }
        li {
            margin-bottom: 0.4em;
        }
        strong,
        b {
            color: #facc15;
            font-weight: 700;
        }
        blockquote {
            border-left: 4px solid #facc15;
            padding: 0.8em 1.2em;
            margin: 1.2em 0;
            background: rgba(250, 204, 21, 0.06);
            border-radius: 0 12px 12px 0;
            font-style: italic;
        }
        hr {
            border: none;
            border-top: 1px solid rgba(250, 204, 21, 0.2);
            margin: 2em 0;
        }
        .wrapper {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            width: 100%;
        }
        .site-header {
            background: linear-gradient(145deg, #0b1422, #16233a);
            padding: 16px 0;
            border-bottom: 2px solid #facc15;
            position: sticky;
            top: 0;
            z-index: 1000;
            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: 12px;
        }
        .my-logo {
            font-size: clamp(1.4rem, 4vw, 2.2rem);
            font-weight: 800;
            color: #facc15;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: opacity 0.3s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .my-logo:hover {
            opacity: 0.85;
            text-decoration: none;
        }
        .my-logo small {
            font-size: 0.5em;
            display: block;
            color: #9aaec9;
            letter-spacing: 0;
            font-weight: 400;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #facc15;
            font-size: 2rem;
            cursor: pointer;
            padding: 4px 8px;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: rgba(250, 204, 21, 0.1);
        }
        .primary-nav {
            display: flex;
            gap: 8px 20px;
            flex-wrap: wrap;
            align-items: center;
        }
        .primary-nav a {
            color: #d0d9e8;
            font-weight: 500;
            font-size: 0.95rem;
            padding: 6px 10px;
            border-radius: 8px;
            transition: background 0.2s, color 0.2s;
        }
        .primary-nav a:hover {
            background: rgba(250, 204, 21, 0.12);
            color: #facc15;
            text-decoration: none;
        }
        .breadcrumb {
            background: rgba(11, 20, 34, 0.8);
            padding: 10px 0;
            border-bottom: 1px solid rgba(250, 204, 21, 0.15);
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            margin: 0;
            padding: 0;
            gap: 6px 12px;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 10px;
            color: #6b7f9a;
        }
        .breadcrumb a {
            color: #9aaec9;
        }
        .breadcrumb .current {
            color: #facc15;
            font-weight: 600;
        }
        .search-bar {
            display: flex;
            gap: 6px;
            max-width: 480px;
            margin: 1.6em 0 2em;
        }
        .search-bar input {
            flex: 1;
            padding: 12px 18px;
            border: 2px solid #2a3a52;
            border-radius: 40px;
            background: #0b1422;
            color: #e8edf3;
            font-size: 1rem;
            outline: none;
            transition: border-color 0.3s;
        }
        .search-bar input:focus {
            border-color: #facc15;
        }
        .search-bar button {
            padding: 12px 28px;
            border: none;
            border-radius: 40px;
            background: #facc15;
            color: #0b1422;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.25s, transform 0.15s;
        }
        .search-bar button:hover {
            background: #ffd966;
            transform: scale(1.02);
        }
        .section-card {
            background: rgba(22, 35, 58, 0.65);
            border-radius: 20px;
            padding: clamp(1.2em, 3vw, 2.4em);
            margin: 2em 0;
            border: 1px solid rgba(250, 204, 21, 0.08);
            backdrop-filter: blur(4px);
            transition: box-shadow 0.3s;
        }
        .section-card:hover {
            box-shadow: 0 8px 40px rgba(250, 204, 21, 0.05);
        }
        .feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 20px;
            margin: 1.5em 0;
        }
        .feature-item {
            background: rgba(11, 20, 34, 0.7);
            border-radius: 16px;
            padding: 1.4em;
            border-left: 3px solid #facc15;
            transition: transform 0.2s;
        }
        .feature-item:hover {
            transform: translateY(-4px);
        }
        .wiki-image {
            margin: 1.6em 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
        }
        .wiki-image figcaption {
            padding: 12px 16px;
            background: rgba(11, 20, 34, 0.8);
            font-size: 0.9rem;
            color: #b0c4dd;
            text-align: center;
        }
        .interact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            margin: 1.8em 0;
        }
        @media (max-width: 640px) {
            .interact-grid {
                grid-template-columns: 1fr;
            }
        }
        .form-group {
            margin-bottom: 1em;
        }
        .form-group label {
            display: block;
            font-weight: 600;
            margin-bottom: 4px;
            color: #c8d6e8;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid #2a3a52;
            border-radius: 12px;
            background: #0b1422;
            color: #e8edf3;
            font-size: 0.95rem;
            outline: none;
            transition: border-color 0.3s;
        }
        .form-group input:focus,
        .form-group textarea:focus {
            border-color: #facc15;
        }
        .form-group textarea {
            min-height: 100px;
            resize: vertical;
        }
        .btn-primary {
            padding: 12px 32px;
            border: none;
            border-radius: 40px;
            background: #facc15;
            color: #0b1422;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.25s, transform 0.15s;
        }
        .btn-primary:hover {
            background: #ffd966;
            transform: scale(1.02);
        }
        .rating-stars {
            display: flex;
            gap: 6px;
            font-size: 1.8rem;
            cursor: pointer;
            color: #4a5a72;
            transition: color 0.2s;
        }
        .rating-stars .star:hover,
        .rating-stars .star.active {
            color: #facc15;
        }
        .site-footer {
            background: #08101e;
            border-top: 2px solid #facc15;
            padding: 2.4em 0 1.6em;
            margin-top: auto;
        }
        .footer-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 28px;
        }
        @media (max-width: 640px) {
            .footer-content {
                grid-template-columns: 1fr;
            }
        }
        friend-link {
            display: block;
            background: rgba(250, 204, 21, 0.04);
            border-radius: 16px;
            padding: 1.2em 1.6em;
            border: 1px solid rgba(250, 204, 21, 0.1);
        }
        friend-link a {
            display: inline-block;
            margin: 4px 12px 4px 0;
            padding: 4px 0;
        }
        .copyright {
            text-align: center;
            padding-top: 1.6em;
            border-top: 1px solid rgba(250, 204, 21, 0.08);
            margin-top: 1.6em;
            color: #7a8ea8;
            font-size: 0.9rem;
        }
        .copyright strong {
            color: #facc15;
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            .primary-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: stretch;
                background: #0b1422;
                padding: 12px 16px;
                border-radius: 16px;
                margin-top: 8px;
                border: 1px solid rgba(250, 204, 21, 0.15);
            }
            .primary-nav.open {
                display: flex;
            }
            .primary-nav a {
                padding: 10px 12px;
                border-radius: 8px;
            }
        }
        .tag {
            display: inline-block;
            background: #facc15;
            color: #0b1422;
            padding: 2px 14px;
            border-radius: 40px;
            font-size: 0.8rem;
            font-weight: 700;
            letter-spacing: 0.3px;
        }
        .last-updated {
            display: flex;
            align-items: center;
            gap: 8px;
            color: #9aaec9;
            font-size: 0.9rem;
            margin: 0.6em 0 1.2em;
        }
        .emoji-lg {
            font-size: 1.4em;
        }
        .text-gold {
            color: #facc15;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 1.2em 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            background: rgba(11, 20, 34, 0.6);
            border-radius: 12px;
            overflow: hidden;
        }
        th,
        td {
            padding: 12px 16px;
            text-align: left;
            border-bottom: 1px solid rgba(250, 204, 21, 0.1);
        }
        th {
            background: #facc15;
            color: #0b1422;
            font-weight: 700;
        }
        tr:hover td {
            background: rgba(250, 204, 21, 0.04);
        }
        @media (max-width: 480px) {
            .wrapper {
                padding: 0 12px;
            }
            .section-card {
                padding: 1em;
            }
            .search-bar {
                flex-direction: column;
            }
            .search-bar button {
                width: 100%;
            }
            .rating-stars {
                font-size: 1.4rem;
            }
        }
        @media (prefers-reduced-motion: no-preference) {
            .section-card {
                opacity: 0;
                transform: translateY(20px);
                animation: fadeUp 0.6s ease forwards;
            }
            .section-card:nth-child(1) {
                animation-delay: 0.05s;
            }
            .section-card:nth-child(2) {
                animation-delay: 0.1s;
            }
            .section-card:nth-child(3) {
                animation-delay: 0.15s;
            }
            .section-card:nth-child(4) {
                animation-delay: 0.2s;
            }
            @keyframes fadeUp {
                to {
                    opacity: 1;
                    transform: translateY(0);
                }
            }
        }
