        *,
        *::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, sans-serif;
            background: #0d0f14;
            color: #e8e6e3;
            line-height: 1.75;
            min-height: 100vh;
        }
        a {
            color: #f5c542;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover,
        a:focus-visible {
            color: #ffdd77;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.25;
            color: #f0e6d3;
            margin-bottom: 0.5em;
        }
        h1 {
            font-size: clamp(2rem, 5vw, 3.2rem);
            letter-spacing: -0.02em;
            margin-top: 0;
        }
        h2 {
            font-size: clamp(1.5rem, 3.5vw, 2.2rem);
            border-bottom: 2px solid #2a2f3a;
            padding-bottom: 0.35rem;
            margin-top: 2.5rem;
        }
        h3 {
            font-size: clamp(1.2rem, 2.5vw, 1.6rem);
            margin-top: 1.8rem;
        }
        h4 {
            font-size: clamp(1rem, 2vw, 1.25rem);
            margin-top: 1.2rem;
            color: #d4c9b8;
        }
        p {
            margin-bottom: 1.2rem;
        }
        .wrapper {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }
        .site-header {
            background: #141820;
            border-bottom: 1px solid #2a2f3a;
            padding: 0.75rem 0;
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(8px);
            background: rgba(20, 24, 32, 0.96);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.5rem 1rem;
        }
        .my-logo {
            font-size: 1.6rem;
            font-weight: 800;
            letter-spacing: -0.03em;
            color: #f5c542;
            text-transform: uppercase;
            text-decoration: none;
            line-height: 1.2;
        }
        .my-logo:hover {
            color: #ffdd77;
            text-decoration: none;
        }
        .my-logo small {
            display: block;
            font-size: 0.55rem;
            font-weight: 400;
            letter-spacing: 0.3em;
            color: #8a8f9a;
            text-transform: uppercase;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 1px solid #3a3f4a;
            color: #e8e6e3;
            font-size: 1.4rem;
            padding: 0.3rem 0.7rem;
            border-radius: 6px;
            cursor: pointer;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: #2a2f3a;
        }
        .navbar {
            display: flex;
            align-items: center;
            gap: 0.25rem 0.75rem;
            flex-wrap: wrap;
        }
        .navbar a {
            padding: 0.3rem 0.6rem;
            border-radius: 4px;
            font-size: 0.9rem;
            font-weight: 500;
            color: #c8c6c2;
            transition: background 0.2s, color 0.2s;
        }
        .navbar a:hover {
            background: #2a2f3a;
            color: #f5c542;
            text-decoration: none;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 0.3rem 0.6rem;
            font-size: 0.85rem;
            color: #8a8f9a;
            padding: 0.75rem 0 0.25rem;
            list-style: none;
        }
        .breadcrumb li {
            display: inline-flex;
            align-items: center;
            gap: 0.3rem;
        }
        .breadcrumb li+li::before {
            content: "›";
            color: #5a5f6a;
            font-size: 1.1rem;
            margin-right: 0.3rem;
        }
        .breadcrumb a {
            color: #b0b5c0;
        }
        .breadcrumb a:hover {
            color: #f5c542;
        }
        .breadcrumb .current {
            color: #f5c542;
            font-weight: 600;
        }
        .main-content {
            padding: 1.5rem 0 3rem;
        }
        .update-badge {
            display: inline-block;
            background: #1e232c;
            padding: 0.35rem 1rem;
            border-radius: 20px;
            font-size: 0.8rem;
            color: #aab0bc;
            border: 1px solid #2a2f3a;
            margin-bottom: 1.5rem;
        }
        .update-badge i {
            margin-right: 0.4rem;
            color: #f5c542;
        }
        .featured-figure {
            margin: 1.8rem 0 2.2rem;
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid #2a2f3a;
            background: #1a1e26;
        }
        .featured-figure img {
            width: 100%;
            height: auto;
            max-height: 520px;
            object-fit: cover;
        }
        .featured-figure figcaption {
            padding: 0.75rem 1rem;
            font-size: 0.85rem;
            color: #9a9faa;
            font-style: italic;
        }
        .section-card {
            background: #161a22;
            border: 1px solid #2a2f3a;
            border-radius: 12px;
            padding: 1.5rem 1.8rem;
            margin-bottom: 2rem;
            transition: border-color 0.2s;
        }
        .section-card:hover {
            border-color: #3a4050;
        }
        .grid-2,
        .grid-3 {
            display: grid;
            gap: 1.5rem;
            margin: 1.5rem 0;
        }
        .grid-2 {
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        }
        .grid-3 {
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        }
        .info-box {
            background: #1e232c;
            border-left: 4px solid #f5c542;
            padding: 1rem 1.2rem;
            border-radius: 0 8px 8px 0;
            margin: 1.2rem 0;
        }
        .info-box.info-blue {
            border-left-color: #4a8af4;
        }
        .info-box.info-green {
            border-left-color: #4caf78;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 1.2rem 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.95rem;
        }
        th,
        td {
            padding: 0.6rem 0.8rem;
            text-align: left;
            border-bottom: 1px solid #2a2f3a;
        }
        th {
            background: #1e232c;
            font-weight: 600;
            color: #f5c542;
        }
        tr:hover td {
            background: #1c212a;
        }
        .form-group {
            margin-bottom: 1rem;
        }
        .form-group label {
            display: block;
            font-weight: 600;
            margin-bottom: 0.3rem;
            color: #d4c9b8;
            font-size: 0.9rem;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 0.6rem 0.8rem;
            border-radius: 6px;
            border: 1px solid #2a2f3a;
            background: #0d0f14;
            color: #e8e6e3;
            font-size: 0.95rem;
            transition: border 0.2s;
        }
        .form-group input:focus,
        .form-group textarea:focus {
            border-color: #f5c542;
            outline: none;
            box-shadow: 0 0 0 2px rgba(245, 197, 66, 0.15);
        }
        .form-group textarea {
            min-height: 100px;
            resize: vertical;
        }
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            padding: 0.6rem 1.4rem;
            border-radius: 6px;
            font-weight: 600;
            font-size: 0.95rem;
            border: none;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            background: #f5c542;
            color: #0d0f14;
        }
        .btn:hover {
            background: #ffdd77;
            transform: translateY(-1px);
            text-decoration: none;
        }
        .btn:active {
            transform: translateY(0);
        }
        .btn-outline {
            background: transparent;
            border: 1px solid #3a3f4a;
            color: #e8e6e3;
        }
        .btn-outline:hover {
            background: #2a2f3a;
            color: #f5c542;
            border-color: #f5c542;
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 0.15rem;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 1.6rem;
            color: #3a3f4a;
            cursor: pointer;
            transition: color 0.15s;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #f5c542;
        }
        .comment-item {
            background: #1a1e26;
            border-radius: 8px;
            padding: 1rem 1.2rem;
            margin-bottom: 1rem;
            border: 1px solid #252a34;
        }
        .comment-item .meta {
            font-size: 0.8rem;
            color: #8a8f9a;
            margin-bottom: 0.3rem;
        }
        .comment-item .name {
            font-weight: 600;
            color: #f0e6d3;
        }
        .comment-item .text {
            color: #c8c4be;
        }
        .site-footer {
            background: #0d0f14;
            border-top: 1px solid #2a2f3a;
            padding: 2.5rem 0 1.5rem;
            margin-top: 2rem;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 2rem;
        }
        .footer-col h4 {
            color: #f5c542;
            font-size: 1rem;
            margin-bottom: 0.8rem;
            border-bottom: 1px solid #2a2f3a;
            padding-bottom: 0.4rem;
        }
        .footer-col ul {
            list-style: none;
            padding-left: 0;
        }
        .footer-col li {
            margin-bottom: 0.3rem;
        }
        .footer-col a {
            font-size: 0.9rem;
            color: #b0b5c0;
        }
        .footer-col a:hover {
            color: #f5c542;
        }
        friend-link {
            display: block;
            background: #141820;
            border: 1px solid #2a2f3a;
            border-radius: 8px;
            padding: 1rem 1.2rem;
            margin: 1.5rem 0;
            font-size: 0.9rem;
        }
        friend-link ul {
            list-style: none;
            padding-left: 0;
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem 1.2rem;
        }
        friend-link li::before {
            content: "🔗 ";
            font-size: 0.8rem;
        }
        friend-link a {
            color: #b0b5c0;
        }
        friend-link a:hover {
            color: #f5c542;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            margin-top: 1.5rem;
            border-top: 1px solid #1e232c;
            font-size: 0.85rem;
            color: #6a6f7a;
        }
        .copyright strong {
            color: #aab0bc;
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            .navbar {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: stretch;
                background: #141820;
                padding: 0.75rem 0.5rem;
                border-radius: 8px;
                border: 1px solid #2a2f3a;
                margin-top: 0.5rem;
            }
            .navbar.open {
                display: flex;
            }
            .navbar a {
                padding: 0.5rem 0.8rem;
                border-bottom: 1px solid #1e232c;
            }
            .navbar a:last-child {
                border-bottom: none;
            }
            .section-card {
                padding: 1rem 1.2rem;
            }
            .header-inner {
                align-items: center;
            }
        }
        @media (min-width: 769px) {
            .nav-toggle {
                display: none !important;
            }
            .navbar {
                display: flex !important;
            }
        }
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #0d0f14;
        }
        ::-webkit-scrollbar-thumb {
            background: #2a2f3a;
            border-radius: 4px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #3a4050;
        }
        .inline-icon {
            margin-right: 0.3rem;
        }
        .text-gold {
            color: #f5c542;
        }
        .text-muted {
            color: #8a8f9a;
        }
        .mb-0 {
            margin-bottom: 0;
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .flex-between {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        hr {
            border: none;
            border-top: 1px solid #2a2f3a;
            margin: 1.8rem 0;
        }
        .back-to-top {
            position: fixed;
            bottom: 1.5rem;
            right: 1.5rem;
            background: #f5c542;
            color: #0d0f14;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            box-shadow: 0 4px 16px rgba(245, 197, 66, 0.25);
            transition: transform 0.2s, background 0.2s;
            z-index: 50;
            border: none;
            cursor: pointer;
        }
        .back-to-top:hover {
            transform: translateY(-3px);
            background: #ffdd77;
        }
