        *,
        *::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, Roboto, 'Helvetica Neue', sans-serif;
            background: #0f0f12;
            color: #e8e6e3;
            line-height: 1.7;
            padding: 0 16px;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: #f0c27f;
            text-decoration: none;
            transition: color 0.25s;
        }
        a:hover,
        a:focus-visible {
            color: #ffdd99;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ul,
        ol {
            padding-left: 1.6rem;
            margin: 0.8rem 0;
        }
        li {
            margin-bottom: 0.4rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 600;
            line-height: 1.3;
            color: #f5f0eb;
            margin-top: 1.6rem;
            margin-bottom: 0.6rem;
        }
        h1 {
            font-size: 2.4rem;
            border-bottom: 3px solid #c9a96e;
            padding-bottom: 0.4rem;
        }
        h2 {
            font-size: 1.8rem;
            border-left: 5px solid #c9a96e;
            padding-left: 0.8rem;
            margin-top: 2.4rem;
        }
        h3 {
            font-size: 1.4rem;
            color: #f0d9b5;
        }
        h4 {
            font-size: 1.2rem;
            color: #dcc8a8;
        }
        p {
            margin: 0.8rem 0;
        }
        strong {
            color: #f5e0c0;
            font-weight: 600;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
            flex: 1;
        }
        .site-header {
            padding: 16px 0;
            border-bottom: 1px solid #2a2a30;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            position: relative;
            background: #0f0f12;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 700;
            letter-spacing: 1px;
            background: linear-gradient(135deg, #f0c27f, #d4a259);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 12px rgba(212, 162, 89, 0.25);
            transition: transform 0.3s;
        }
        .my-logo:hover {
            transform: scale(1.02);
        }
        .my-logo i {
            -webkit-text-fill-color: initial;
            color: #c9a96e;
            margin-right: 6px;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid #c9a96e;
            color: #f0c27f;
            font-size: 1.6rem;
            padding: 6px 14px;
            border-radius: 8px;
            cursor: pointer;
            transition: background 0.3s;
        }
        .nav-toggle:hover {
            background: #1e1e24;
        }
        .main-nav {
            display: flex;
            flex-wrap: wrap;
            gap: 8px 20px;
            align-items: center;
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .main-nav li a {
            font-size: 0.95rem;
            font-weight: 500;
            padding: 6px 0;
            color: #ccc;
            border-bottom: 2px solid transparent;
            transition: border-color 0.3s, color 0.3s;
        }
        .main-nav li a:hover {
            color: #f0c27f;
            border-bottom-color: #f0c27f;
            text-decoration: none;
        }
        .main-nav li a i {
            margin-right: 6px;
            color: #c9a96e;
        }
        .breadcrumb {
            padding: 12px 0 8px;
            font-size: 0.85rem;
            color: #999;
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
            list-style: none;
            margin: 0;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 10px;
            color: #666;
        }
        .breadcrumb a {
            color: #bbb;
        }
        .breadcrumb a:hover {
            color: #f0c27f;
        }
        .breadcrumb .current {
            color: #f0c27f;
        }
        .hero-img {
            margin: 24px 0 16px;
            border-radius: 16px;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.7);
            background: #1a1a22;
            padding: 8px;
        }
        .hero-img img {
            width: 100%;
            border-radius: 10px;
        }
        .hero-img figcaption {
            text-align: center;
            font-size: 0.85rem;
            color: #aaa;
            padding: 8px 0 2px;
            font-style: italic;
        }
        .content-section {
            background: #16161d;
            border-radius: 16px;
            padding: 24px 28px;
            margin: 28px 0;
            border: 1px solid #26262e;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
        }
        .content-section p {
            margin: 1rem 0;
        }
        .boss-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 24px;
            margin: 24px 0;
        }
        .boss-card {
            background: #1d1d26;
            border-radius: 14px;
            padding: 20px 18px 22px;
            border: 1px solid #2f2f3a;
            transition: transform 0.25s, box-shadow 0.3s, border-color 0.3s;
        }
        .boss-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 16px 40px rgba(201, 169, 110, 0.15);
            border-color: #c9a96e;
        }
        .boss-card h3 {
            margin-top: 0;
            font-size: 1.3rem;
            border-bottom: 1px solid #333;
            padding-bottom: 8px;
        }
        .boss-card h3 i {
            color: #c9a96e;
            margin-right: 8px;
        }
        .boss-card .difficulty {
            display: inline-block;
            background: #2a2a35;
            padding: 2px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            color: #f0c27f;
            margin-top: 6px;
        }
        .data-table-wrap {
            overflow-x: auto;
            margin: 20px 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            background: #1a1a22;
            border-radius: 12px;
            overflow: hidden;
            font-size: 0.9rem;
        }
        th,
        td {
            padding: 12px 16px;
            text-align: left;
            border-bottom: 1px solid #2d2d38;
        }
        th {
            background: #25252e;
            color: #f0c27f;
            font-weight: 600;
            letter-spacing: 0.5px;
        }
        tr:hover td {
            background: #22222b;
        }
        .search-wrap {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            margin: 20px 0 10px;
            max-width: 600px;
        }
        .search-wrap input {
            flex: 1;
            min-width: 180px;
            padding: 12px 18px;
            border-radius: 30px;
            border: 2px solid #333;
            background: #1a1a22;
            color: #eee;
            font-size: 1rem;
            outline: none;
            transition: border-color 0.3s, box-shadow 0.3s;
        }
        .search-wrap input:focus {
            border-color: #c9a96e;
            box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.25);
        }
        .search-wrap button {
            padding: 12px 28px;
            border-radius: 30px;
            border: none;
            background: linear-gradient(135deg, #c9a96e, #b8914a);
            color: #0f0f12;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.3s;
        }
        .search-wrap button:hover {
            transform: scale(1.03);
            box-shadow: 0 6px 20px rgba(201, 169, 110, 0.4);
        }
        .form-group {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin: 16px 0;
            max-width: 700px;
        }
        .form-group label {
            font-weight: 500;
            color: #ddd;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            padding: 12px 16px;
            border-radius: 10px;
            border: 2px solid #333;
            background: #1a1a22;
            color: #eee;
            font-size: 1rem;
            outline: none;
            transition: border-color 0.3s;
            font-family: inherit;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            border-color: #c9a96e;
        }
        .form-group textarea {
            min-height: 100px;
            resize: vertical;
        }
        .btn-primary {
            padding: 12px 32px;
            border-radius: 30px;
            border: none;
            background: linear-gradient(135deg, #c9a96e, #b8914a);
            color: #0f0f12;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.3s;
            align-self: flex-start;
        }
        .btn-primary:hover {
            transform: scale(1.03);
            box-shadow: 0 6px 20px rgba(201, 169, 110, 0.35);
        }
        .star-rating {
            display: flex;
            gap: 8px;
            font-size: 2rem;
            color: #555;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star-rating i {
            transition: color 0.2s, transform 0.2s;
        }
        .star-rating i:hover,
        .star-rating i.hovered {
            color: #f0c27f;
            transform: scale(1.1);
        }
        .star-rating i.selected {
            color: #f0c27f;
        }
        .site-footer {
            border-top: 1px solid #2a2a30;
            padding: 32px 0 24px;
            margin-top: 40px;
            font-size: 0.9rem;
            color: #999;
        }
        .site-footer friend-link {
            display: flex;
            flex-wrap: wrap;
            gap: 12px 24px;
            padding: 12px 0;
            margin-bottom: 12px;
            border-bottom: 1px solid #222;
        }
        .site-footer friend-link a {
            color: #bbb;
            font-size: 0.88rem;
        }
        .site-footer friend-link a:hover {
            color: #f0c27f;
        }
        .copyright {
            text-align: center;
            padding-top: 16px;
            font-size: 0.82rem;
            color: #777;
        }
        .copyright strong {
            color: #aaa;
        }
        .last-updated {
            text-align: right;
            font-size: 0.82rem;
            color: #888;
            padding: 4px 0 12px;
            border-bottom: 1px solid #222;
            margin-bottom: 16px;
        }
        .last-updated i {
            margin-right: 6px;
        }
        @media (max-width: 768px) {
            body {
                padding: 0 10px;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            h3 {
                font-size: 1.2rem;
            }
            .content-section {
                padding: 16px 14px;
            }
            .site-header {
                flex-wrap: wrap;
            }
            .nav-toggle {
                display: block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                padding: 16px 0 8px;
                gap: 6px;
                background: #0f0f12;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav li a {
                display: block;
                padding: 10px 0;
                border-bottom: 1px solid #222;
            }
            .boss-grid {
                grid-template-columns: 1fr;
            }
            .search-wrap {
                flex-direction: column;
            }
            .search-wrap button {
                width: 100%;
            }
            .star-rating {
                font-size: 1.6rem;
            }
            .breadcrumb {
                font-size: 0.75rem;
                gap: 4px 8px;
            }
            .my-logo {
                font-size: 1.5rem;
            }
            table {
                font-size: 0.78rem;
            }
            th,
            td {
                padding: 8px 10px;
            }
            .site-footer friend-link {
                flex-direction: column;
                gap: 6px;
            }
        }
        @media (max-width: 480px) {
            .content-section {
                padding: 12px 10px;
                border-radius: 10px;
            }
            h1 {
                font-size: 1.5rem;
            }
            h2 {
                font-size: 1.2rem;
            }
            h3 {
                font-size: 1.05rem;
            }
            .boss-card {
                padding: 14px 12px;
            }
            .form-group input,
            .form-group textarea,
            .form-group select {
                padding: 10px 12px;
                font-size: 0.9rem;
            }
            .btn-primary {
                width: 100%;
                text-align: center;
            }
        }
        @media (min-width: 769px) {
            .nav-toggle {
                display: none !important;
            }
            .main-nav {
                display: flex !important;
            }
        }
        .tag {
            display: inline-block;
            background: #2a2a35;
            color: #f0c27f;
            padding: 2px 14px;
            border-radius: 30px;
            font-size: 0.75rem;
            font-weight: 500;
            margin-right: 6px;
        }
        .blockquote-custom {
            border-left: 4px solid #c9a96e;
            padding: 12px 20px;
            background: #1d1d26;
            border-radius: 8px;
            margin: 16px 0;
            font-style: italic;
            color: #ccc;
        }
        .section-icon {
            margin-right: 8px;
            color: #c9a96e;
        }
        .flex-stats {
            display: flex;
            flex-wrap: wrap;
            gap: 16px 32px;
            margin: 12px 0;
        }
        .flex-stats span {
            background: #1d1d26;
            padding: 6px 18px;
            border-radius: 30px;
            border: 1px solid #2f2f3a;
            font-size: 0.85rem;
        }
        .flex-stats i {
            color: #f0c27f;
            margin-right: 6px;
        }
        .highlight-box {
            background: #1d1d26;
            border-radius: 12px;
            padding: 18px 22px;
            border: 1px solid #c9a96e33;
            margin: 16px 0;
        }
        .highlight-box strong {
            color: #f0c27f;
        }
        .emoji-lg {
            font-size: 1.4rem;
        }
