        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', 'Arial', sans-serif;
            background: #0e0e14;
            color: #e8e6e3;
            line-height: 1.7;
            min-height: 100vh;
            padding: 0 16px;
        }
        a {
            color: #f5c542;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover,
        a:focus {
            color: #ffd966;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ul,
        ol {
            padding-left: 1.4rem;
        }
        .container {
            max-width: 1240px;
            margin: 0 auto;
            background: #14141c;
            padding: 0 24px 32px;
            border-radius: 20px;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.7);
        }
        h1 {
            font-size: 2.6rem;
            font-weight: 800;
            color: #f5c542;
            letter-spacing: -0.02em;
            margin: 0.8rem 0 1.2rem;
            line-height: 1.2;
        }
        h2 {
            font-size: 2rem;
            font-weight: 700;
            color: #f5c542;
            border-left: 6px solid #f5c542;
            padding-left: 18px;
            margin: 2.8rem 0 1.2rem;
            line-height: 1.3;
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 600;
            color: #e8d5a3;
            margin: 2rem 0 0.8rem;
            line-height: 1.35;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
            color: #d4c08c;
            margin: 1.6rem 0 0.6rem;
            line-height: 1.4;
        }
        p {
            margin-bottom: 1.2rem;
            font-size: 1.05rem;
        }
        .lead {
            font-size: 1.25rem;
            font-weight: 400;
            color: #d4d0c8;
            border-left: 4px solid #f5c542;
            padding-left: 20px;
            margin: 1.6rem 0 2rem;
        }
        strong,
        b {
            color: #f5d78a;
            font-weight: 700;
        }
        .highlight-box {
            background: #1e1e2a;
            border-radius: 16px;
            padding: 24px 28px;
            margin: 1.8rem 0;
            border: 1px solid #2f2f42;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
        }
        .header {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding: 20px 0 12px;
            border-bottom: 1px solid #2a2a3a;
            position: relative;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 900;
            color: #f5c542;
            letter-spacing: -0.03em;
            background: linear-gradient(135deg, #f5c542, #d9a83a);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 30px rgba(245, 197, 66, 0.15);
            display: inline-block;
        }
        .my-logo:hover {
            opacity: 0.85;
            text-decoration: none;
        }
        .my-logo small {
            font-size: 0.7rem;
            font-weight: 400;
            color: #9a9ab0;
            -webkit-text-fill-color: #9a9ab0;
            display: block;
            letter-spacing: 0.2em;
        }
        .nav-wrapper {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .nav-menu {
            display: flex;
            gap: 8px 16px;
            flex-wrap: wrap;
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .nav-menu li a {
            padding: 6px 14px;
            border-radius: 40px;
            font-size: 0.92rem;
            font-weight: 500;
            color: #c8c6d6;
            background: transparent;
            transition: all 0.2s ease;
            white-space: nowrap;
        }
        .nav-menu li a:hover,
        .nav-menu li a.active {
            background: #2a2a40;
            color: #f5c542;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            font-size: 1.8rem;
            color: #f5c542;
            cursor: pointer;
            padding: 4px 8px;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: #1e1e2e;
        }
        .nav-toggle {
            display: none;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            gap: 6px 10px;
            padding: 14px 0 6px;
            font-size: 0.9rem;
            color: #8a8a9e;
            list-style: none;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 10px;
            color: #5a5a72;
            font-weight: 700;
        }
        .breadcrumb a {
            color: #b0aec8;
        }
        .breadcrumb a:hover {
            color: #f5c542;
        }
        .breadcrumb .current {
            color: #f5c542;
            font-weight: 600;
        }
        .search-section {
            margin: 2rem 0 1.2rem;
        }
        .search-form {
            display: flex;
            gap: 10px;
            max-width: 600px;
            flex-wrap: wrap;
        }
        .search-form input[type="text"] {
            flex: 1;
            min-width: 200px;
            padding: 12px 20px;
            border-radius: 60px;
            border: 1px solid #333350;
            background: #1a1a28;
            color: #e8e6e3;
            font-size: 1rem;
            outline: none;
            transition: border 0.3s;
        }
        .search-form input[type="text"]:focus {
            border-color: #f5c542;
        }
        .search-form button {
            padding: 12px 32px;
            border-radius: 60px;
            border: none;
            background: #f5c542;
            color: #0e0e14;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.25s, transform 0.15s;
        }
        .search-form button:hover {
            background: #ffd966;
            transform: scale(1.02);
        }
        .interaction-panel {
            display: flex;
            flex-wrap: wrap;
            gap: 24px 40px;
            margin: 2.4rem 0 1.8rem;
            padding: 20px 0;
            border-top: 1px solid #2a2a3a;
            border-bottom: 1px solid #2a2a3a;
        }
        .rating-area {
            display: flex;
            align-items: center;
            gap: 12px 20px;
            flex-wrap: wrap;
        }
        .rating-area label {
            font-weight: 600;
            color: #c8c6d6;
        }
        .star-group {
            display: flex;
            gap: 6px;
            font-size: 1.6rem;
            color: #4a4a5e;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star-group i {
            transition: color 0.2s, transform 0.15s;
        }
        .star-group i:hover,
        .star-group i.hover {
            color: #f5c542;
            transform: scale(1.15);
        }
        .star-group i.selected {
            color: #f5c542;
        }
        .rating-area button {
            padding: 8px 24px;
            border-radius: 40px;
            border: 1px solid #f5c542;
            background: transparent;
            color: #f5c542;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.25s;
        }
        .rating-area button:hover {
            background: #f5c542;
            color: #0e0e14;
        }
        .comment-area {
            flex: 1;
            min-width: 240px;
        }
        .comment-area textarea {
            width: 100%;
            padding: 14px 18px;
            border-radius: 16px;
            border: 1px solid #333350;
            background: #1a1a28;
            color: #e8e6e3;
            font-size: 0.95rem;
            resize: vertical;
            min-height: 70px;
            outline: none;
            transition: border 0.3s;
        }
        .comment-area textarea:focus {
            border-color: #f5c542;
        }
        .comment-area .comment-actions {
            display: flex;
            gap: 12px;
            margin-top: 10px;
            flex-wrap: wrap;
        }
        .comment-area .comment-actions button {
            padding: 8px 28px;
            border-radius: 40px;
            border: none;
            background: #f5c542;
            color: #0e0e14;
            font-weight: 700;
            cursor: pointer;
            transition: background 0.25s;
        }
        .comment-area .comment-actions button:hover {
            background: #ffd966;
        }
        .last-updated {
            font-size: 0.9rem;
            color: #7a7a92;
            text-align: right;
            margin: 0.8rem 0 1.6rem;
            padding: 8px 16px;
            background: #1a1a26;
            border-radius: 40px;
            display: inline-block;
        }
        .last-updated i {
            margin-right: 6px;
        }
        .related-links {
            background: #1a1a28;
            border-radius: 16px;
            padding: 20px 24px;
            margin: 2rem 0;
            display: flex;
            flex-wrap: wrap;
            gap: 8px 20px;
        }
        .related-links a {
            font-size: 0.95rem;
            padding: 4px 0;
            border-bottom: 1px solid transparent;
            transition: border 0.2s;
        }
        .related-links a:hover {
            border-bottom-color: #f5c542;
        }
        friend-link {
            display: block;
            padding: 20px 0 12px;
            margin-top: 32px;
            border-top: 1px solid #2a2a3a;
            font-size: 0.95rem;
        }
        friend-link a {
            display: inline-block;
            margin: 4px 16px 4px 0;
            padding: 4px 0;
        }
        .footer {
            padding: 28px 0 20px;
            border-top: 1px solid #2a2a3a;
            margin-top: 32px;
            text-align: center;
            font-size: 0.9rem;
            color: #7a7a92;
        }
        .footer .copyright {
            margin-top: 12px;
            letter-spacing: 0.02em;
        }
        @media (max-width: 820px) {
            .container {
                padding: 0 16px 24px;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            h3 {
                font-size: 1.25rem;
            }
            .header {
                flex-wrap: wrap;
            }
            .hamburger {
                display: inline-block;
            }
            .nav-menu {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #1a1a28;
                border-radius: 16px;
                padding: 16px;
                margin-top: 12px;
                gap: 6px;
                border: 1px solid #2a2a3a;
            }
            .nav-menu li a {
                display: block;
                padding: 10px 16px;
                border-radius: 12px;
            }
            .nav-toggle:checked~.nav-menu {
                display: flex;
            }
            .nav-toggle:checked~.hamburger .fa-bars {
                display: none;
            }
            .nav-toggle:checked~.hamburger .fa-times {
                display: inline-block;
            }
            .hamburger .fa-times {
                display: none;
            }
            .interaction-panel {
                flex-direction: column;
                gap: 20px;
            }
            .search-form button {
                width: 100%;
            }
            .my-logo {
                font-size: 1.5rem;
            }
        }
        @media (max-width: 480px) {
            body {
                padding: 0 8px;
            }
            .container {
                padding: 0 12px 20px;
            }
            h1 {
                font-size: 1.6rem;
            }
            h2 {
                font-size: 1.3rem;
                padding-left: 12px;
            }
            .lead {
                font-size: 1.05rem;
                padding-left: 14px;
            }
            .highlight-box {
                padding: 16px 18px;
            }
            .related-links {
                flex-direction: column;
                gap: 6px;
            }
            .rating-area {
                flex-direction: column;
                align-items: flex-start;
            }
        }
        .featured-image {
            margin: 2rem 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
        }
        .featured-image figcaption {
            padding: 12px 16px;
            background: #1a1a28;
            font-size: 0.9rem;
            color: #a8a6c0;
            text-align: center;
            border-radius: 0 0 16px 16px;
        }
        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.6rem 0;
            font-size: 0.95rem;
        }
        .data-table th {
            background: #2a2a3e;
            color: #f5c542;
            padding: 12px 16px;
            text-align: left;
            font-weight: 700;
            border-bottom: 2px solid #3a3a52;
        }
        .data-table td {
            padding: 10px 16px;
            border-bottom: 1px solid #222236;
            color: #d4d0c8;
        }
        .data-table tr:hover td {
            background: #1e1e2e;
        }
        .eeat-badge {
            display: inline-flex;
            gap: 8px;
            align-items: center;
            background: #1e2a1e;
            color: #aaddaa;
            padding: 6px 18px;
            border-radius: 40px;
            font-size: 0.8rem;
            font-weight: 600;
            border: 1px solid #2a4a2a;
            margin: 4px 0;
        }
        .eeat-badge i {
            color: #7acc7a;
        }
        .code-block {
            background: #0a0a12;
            padding: 16px 20px;
            border-radius: 12px;
            font-family: 'Courier New', monospace;
            font-size: 0.95rem;
            color: #d4d0c8;
            overflow-x: auto;
            border: 1px solid #2a2a3a;
            margin: 1.2rem 0;
        }
        .space-y {
            margin-top: 0.6rem;
            margin-bottom: 0.6rem;
        }
        .flex-center {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-wrap: wrap;
        }
