        *,
        *::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, BlinkMacSystemFont, Roboto, 'Helvetica Neue', sans-serif;
            background: #0b0e14;
            color: #e8edf5;
            line-height: 1.75;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: #f0c040;
            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;
            border-radius: 12px;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        hr {
            border: none;
            border-top: 1px solid #2a3040;
            margin: 2.5rem 0;
        }
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #151b24;
        }
        ::-webkit-scrollbar-thumb {
            background: #3a4658;
            border-radius: 6px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #f0c040;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.25rem;
        }
        .site-header {
            background: #0f141c;
            border-bottom: 2px solid #1f2a38;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(12px);
            background-color: rgba(15, 20, 28, 0.92);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.75rem 1.5rem;
        }
        .my-logo {
            font-size: 1.6rem;
            font-weight: 800;
            letter-spacing: 1px;
            background: linear-gradient(135deg, #f0c040, #f5d77b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 30px rgba(240, 192, 64, 0.15);
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
        }
        .my-logo i {
            -webkit-text-fill-color: #f0c040;
            font-size: 1.5rem;
        }
        .my-logo:hover {
            opacity: 0.92;
        }
        .nav-wrapper {
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        .main-nav {
            display: flex;
            gap: 0.25rem;
            flex-wrap: wrap;
        }
        .main-nav a {
            padding: 0.5rem 1rem;
            border-radius: 8px;
            font-size: 0.9rem;
            font-weight: 500;
            color: #c8d0dc;
            transition: background 0.2s, color 0.2s;
            white-space: nowrap;
        }
        .main-nav a:hover,
        .main-nav a:focus-visible {
            background: #1f2a38;
            color: #f0c040;
            text-decoration: none;
        }
        .main-nav a.active {
            background: #1f2a38;
            color: #f0c040;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #e8edf5;
            font-size: 1.6rem;
            cursor: pointer;
            padding: 0.25rem 0.5rem;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: #1f2a38;
        }
        .nav-check {
            display: none;
        }
        .breadcrumb {
            padding: 1rem 0 0.25rem 0;
            font-size: 0.85rem;
            color: #8892a8;
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem;
            align-items: center;
        }
        .breadcrumb a {
            color: #8892a8;
        }
        .breadcrumb a:hover {
            color: #f0c040;
        }
        .breadcrumb span.sep {
            color: #4a5568;
            margin: 0 0.2rem;
        }
        .breadcrumb .current {
            color: #f0c040;
            font-weight: 500;
        }
        .main-content {
            flex: 1;
            padding: 1.5rem 0 3rem 0;
        }
        article h1 {
            font-size: 2.8rem;
            font-weight: 800;
            line-height: 1.2;
            margin: 0.5rem 0 1.5rem 0;
            background: linear-gradient(135deg, #f5d77b, #f0c040, #d4a830);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.5px;
        }
        article h2 {
            font-size: 2rem;
            font-weight: 700;
            margin: 2.5rem 0 1rem 0;
            color: #f0c040;
            border-bottom: 2px solid #1f2a38;
            padding-bottom: 0.5rem;
        }
        article h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin: 2rem 0 0.75rem 0;
            color: #e8d5a0;
        }
        article h4 {
            font-size: 1.2rem;
            font-weight: 600;
            margin: 1.5rem 0 0.5rem 0;
            color: #c8d0dc;
        }
        article p {
            margin: 0 0 1.25rem 0;
            color: #d5dce8;
            font-size: 1.05rem;
        }
        article p strong {
            color: #f5e7c0;
            font-weight: 600;
        }
        article ul,
        article ol {
            margin: 0 0 1.5rem 0;
            color: #d5dce8;
        }
        article li {
            margin-bottom: 0.5rem;
        }
        .last-updated {
            display: inline-block;
            background: #1a2230;
            padding: 0.5rem 1.2rem;
            border-radius: 30px;
            font-size: 0.85rem;
            color: #8892a8;
            margin-bottom: 1.5rem;
            border: 1px solid #2a3040;
        }
        .last-updated i {
            margin-right: 0.4rem;
            color: #f0c040;
        }
        .featured-image {
            margin: 2rem 0 2.5rem 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
            position: relative;
        }
        .featured-image img {
            width: 100%;
            max-height: 520px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .featured-image:hover img {
            transform: scale(1.02);
        }
        .featured-image figcaption {
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
            padding: 1.5rem 1.5rem 1rem;
            font-size: 0.9rem;
            color: #b0bcca;
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
        }
        .info-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }
        .info-card {
            background: #151b24;
            border: 1px solid #1f2a38;
            border-radius: 14px;
            padding: 1.5rem;
            transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
        }
        .info-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 40px rgba(240, 192, 64, 0.08);
            border-color: #f0c040;
        }
        .info-card i {
            font-size: 2rem;
            color: #f0c040;
            margin-bottom: 0.75rem;
        }
        .info-card h3 {
            margin-top: 0;
            font-size: 1.3rem;
        }
        .info-card h3 a {
            color: #e8d5a0;
        }
        .info-card h3 a:hover {
            color: #f0c040;
        }
        .info-card p {
            font-size: 0.95rem;
            margin-bottom: 0;
        }
        .search-section {
            background: #151b24;
            border: 1px solid #1f2a38;
            border-radius: 16px;
            padding: 2rem 1.8rem;
            margin: 2.5rem 0;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 1rem 1.5rem;
        }
        .search-section label {
            font-weight: 600;
            font-size: 1.1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: #f0c040;
        }
        .search-form {
            flex: 1;
            display: flex;
            gap: 0.5rem;
            min-width: 200px;
        }
        .search-form input {
            flex: 1;
            padding: 0.7rem 1.2rem;
            border-radius: 30px;
            border: 1px solid #2a3040;
            background: #0b0e14;
            color: #e8edf5;
            font-size: 1rem;
            outline: none;
            transition: border 0.3s;
        }
        .search-form input:focus {
            border-color: #f0c040;
        }
        .search-form button {
            padding: 0.7rem 1.5rem;
            border-radius: 30px;
            border: none;
            background: #f0c040;
            color: #0b0e14;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.25s, transform 0.15s;
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        .search-form button:hover {
            background: #ffdd77;
            transform: scale(1.02);
        }
        .interact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.8rem;
            margin: 2.5rem 0;
        }
        @media (max-width:700px) {
            .interact-grid {
                grid-template-columns: 1fr;
            }
        }
        .interact-card {
            background: #151b24;
            border: 1px solid #1f2a38;
            border-radius: 16px;
            padding: 1.8rem;
        }
        .interact-card h3 {
            margin-top: 0;
            font-size: 1.3rem;
            color: #f0c040;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        .interact-card form {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
            margin-top: 1rem;
        }
        .interact-card input,
        .interact-card textarea,
        .interact-card select {
            padding: 0.7rem 1rem;
            border-radius: 10px;
            border: 1px solid #2a3040;
            background: #0b0e14;
            color: #e8edf5;
            font-size: 0.95rem;
            font-family: inherit;
            outline: none;
            transition: border 0.3s;
        }
        .interact-card input:focus,
        .interact-card textarea:focus,
        .interact-card select:focus {
            border-color: #f0c040;
        }
        .interact-card textarea {
            min-height: 90px;
            resize: vertical;
        }
        .interact-card button {
            padding: 0.7rem 1.5rem;
            border-radius: 30px;
            border: none;
            background: #f0c040;
            color: #0b0e14;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.25s, transform 0.15s;
            align-self: flex-start;
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        .interact-card button:hover {
            background: #ffdd77;
            transform: scale(1.02);
        }
        .rating-stars {
            display: flex;
            gap: 0.3rem;
            font-size: 1.5rem;
            color: #4a5568;
            cursor: pointer;
        }
        .rating-stars i {
            transition: color 0.2s, transform 0.15s;
        }
        .rating-stars i:hover,
        .rating-stars i.active {
            color: #f0c040;
            transform: scale(1.1);
        }
        .site-footer {
            background: #0a0e14;
            border-top: 2px solid #1f2a38;
            padding: 2.5rem 0 1.5rem 0;
            margin-top: 3rem;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 2rem;
        }
        @media (max-width:700px) {
            .footer-inner {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
        }
        .footer-brand .my-logo {
            font-size: 1.3rem;
        }
        .footer-brand p {
            font-size: 0.9rem;
            color: #8892a8;
            margin-top: 0.5rem;
        }
        .footer-links h4,
        .footer-friends h4 {
            color: #f0c040;
            font-size: 1rem;
            margin-bottom: 0.75rem;
            font-weight: 600;
        }
        .footer-links ul,
        .footer-friends ul {
            list-style: none;
            padding: 0;
        }
        .footer-links li,
        .footer-friends li {
            margin-bottom: 0.4rem;
        }
        .footer-links a,
        .footer-friends a {
            font-size: 0.9rem;
            color: #8892a8;
        }
        .footer-links a:hover,
        .footer-friends a:hover {
            color: #f0c040;
        }
        .footer-bottom {
            border-top: 1px solid #1a2230;
            margin-top: 1.8rem;
            padding-top: 1.2rem;
            text-align: center;
            font-size: 0.85rem;
            color: #5a6678;
        }
        .footer-bottom a {
            color: #8892a8;
        }
        .footer-bottom a:hover {
            color: #f0c040;
        }
        @media (max-width:768px) {
            .hamburger {
                display: block;
            }
            .main-nav {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #0f141c;
                border: 1px solid #1f2a38;
                border-radius: 12px;
                padding: 0.5rem;
                margin-top: 0.5rem;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                z-index: 99;
            }
            .nav-check:checked~.main-nav {
                display: flex;
            }
            .header-inner {
                position: relative;
            }
            .nav-wrapper {
                flex: 1;
                justify-content: flex-end;
            }
            article h1 {
                font-size: 2rem;
            }
            article h2 {
                font-size: 1.5rem;
            }
            article h3 {
                font-size: 1.25rem;
            }
            .search-section {
                flex-direction: column;
                align-items: stretch;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form button {
                align-self: center;
            }
        }
        @media (max-width:480px) {
            .container {
                padding: 0 1rem;
            }
            article h1 {
                font-size: 1.6rem;
            }
            .info-grid {
                grid-template-columns: 1fr;
            }
            .my-logo {
                font-size: 1.2rem;
            }
        }
        .text-glow {
            text-shadow: 0 0 40px rgba(240, 192, 64, 0.08);
        }
        .highlight {
            background: linear-gradient(120deg, rgba(240, 192, 64, 0.15), transparent);
            padding: 0 0.3rem;
            border-radius: 4px;
        }
        .tag {
            display: inline-block;
            background: #1f2a38;
            color: #f0c040;
            font-size: 0.75rem;
            padding: 0.2rem 0.8rem;
            border-radius: 20px;
            font-weight: 500;
            letter-spacing: 0.3px;
        }
        .btn-top {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            background: #f0c040;
            color: #0b0e14;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            box-shadow: 0 4px 20px rgba(240, 192, 64, 0.25);
            transition: transform 0.25s, box-shadow 0.25s;
            border: none;
            cursor: pointer;
            z-index: 50;
        }
        .btn-top:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 30px rgba(240, 192, 64, 0.35);
        }
