        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #0b0e14;
            color: #e8edf5;
            line-height: 1.7;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: #f7c948;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover,
        a:focus {
            color: #ffdd7a;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        li {
            margin-bottom: 0.4rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.25rem;
            width: 100%;
        }
        .site-header {
            background: linear-gradient(145deg, #161c27, #0f141d);
            border-bottom: 2px solid #2a3346;
            padding: 0.75rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.75rem;
        }
        .my-logo {
            font-size: 1.6rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #f7c948, #f59e42);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 2px 12px rgba(247, 201, 72, 0.2);
            display: inline-block;
            transition: transform 0.2s;
        }
        .my-logo:hover {
            transform: scale(1.02);
            text-decoration: none;
        }
        .my-logo small {
            font-size: 0.7rem;
            font-weight: 400;
            -webkit-text-fill-color: #8899bb;
            color: #8899bb;
            display: block;
            letter-spacing: 0.3px;
        }
        .main-nav {
            display: flex;
            align-items: center;
            gap: 0.25rem;
            flex-wrap: wrap;
        }
        .main-nav a {
            padding: 0.5rem 1rem;
            border-radius: 8px;
            font-weight: 500;
            font-size: 0.9rem;
            color: #c8d2e6;
            transition: background 0.2s, color 0.2s;
            white-space: nowrap;
        }
        .main-nav a:hover,
        .main-nav a:focus {
            background: #2a3346;
            color: #f7c948;
            text-decoration: none;
        }
        .main-nav a.active {
            background: #2a3346;
            color: #f7c948;
        }
        .hamburger {
            display: none;
            background: none;
            border: 2px solid #3a455a;
            color: #e8edf5;
            font-size: 1.4rem;
            padding: 0.3rem 0.7rem;
            border-radius: 8px;
            cursor: pointer;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: #2a3346;
        }
        .hamburger i {
            pointer-events: none;
        }
        .breadcrumbs {
            padding: 0.75rem 0 0.25rem 0;
            font-size: 0.85rem;
            color: #8899bb;
        }
        .breadcrumbs ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem 0.6rem;
            padding: 0;
            margin: 0;
        }
        .breadcrumbs li+li::before {
            content: "›";
            margin-right: 0.6rem;
            color: #556688;
            font-weight: 700;
        }
        .breadcrumbs a {
            color: #8899bb;
        }
        .breadcrumbs a:hover {
            color: #f7c948;
        }
        .breadcrumbs .current {
            color: #f7c948;
            font-weight: 500;
        }
        .search-section {
            background: #161c27;
            border-radius: 14px;
            padding: 1.5rem 1.75rem;
            margin: 1.5rem 0 2rem 0;
            border: 1px solid #2a3346;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 1rem;
        }
        .search-section label {
            font-weight: 600;
            color: #f7c948;
            font-size: 1.05rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-form {
            display: flex;
            flex: 1;
            min-width: 200px;
            gap: 0.5rem;
        }
        .search-form input {
            flex: 1;
            padding: 0.7rem 1.2rem;
            border-radius: 10px;
            border: 1px solid #2a3346;
            background: #0b0e14;
            color: #e8edf5;
            font-size: 0.95rem;
            outline: none;
            transition: border 0.2s;
        }
        .search-form input:focus {
            border-color: #f7c948;
        }
        .search-form button {
            padding: 0.7rem 1.5rem;
            border-radius: 10px;
            border: none;
            background: #f7c948;
            color: #0b0e14;
            font-weight: 700;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            font-size: 0.95rem;
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        .search-form button:hover {
            background: #ffdd7a;
            transform: scale(1.02);
        }
        .content {
            flex: 1;
            padding: 0.5rem 0 2.5rem 0;
        }
        .content h1 {
            font-size: 2.6rem;
            font-weight: 800;
            line-height: 1.2;
            color: #f7c948;
            margin: 0.5rem 0 1.25rem 0;
            letter-spacing: -0.5px;
            border-left: 5px solid #f7c948;
            padding-left: 1.25rem;
        }
        .content h2 {
            font-size: 1.9rem;
            font-weight: 700;
            color: #f7c948;
            margin: 2.5rem 0 1rem 0;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #2a3346;
        }
        .content h3 {
            font-size: 1.45rem;
            font-weight: 600;
            color: #e8edf5;
            margin: 1.75rem 0 0.75rem 0;
        }
        .content h4 {
            font-size: 1.15rem;
            font-weight: 600;
            color: #c8d2e6;
            margin: 1.25rem 0 0.5rem 0;
        }
        .content p {
            margin-bottom: 1.15rem;
            color: #d0d9ec;
            font-size: 1.02rem;
        }
        .content strong {
            color: #f7c948;
            font-weight: 700;
        }
        .content em {
            color: #ffdd7a;
            font-style: italic;
        }
        .content .highlight-box {
            background: #1a2230;
            border-left: 4px solid #f7c948;
            padding: 1.25rem 1.5rem;
            border-radius: 0 12px 12px 0;
            margin: 1.5rem 0;
        }
        .content .highlight-box p:last-child {
            margin-bottom: 0;
        }
        .content ul,
        .content ol {
            margin-bottom: 1.25rem;
            color: #d0d9ec;
        }
        .content li strong {
            color: #f7c948;
        }
        .featured-image {
            margin: 2rem 0;
            border-radius: 14px;
            overflow: hidden;
            border: 1px solid #2a3346;
            background: #161c27;
            padding: 0.75rem;
        }
        .featured-image img {
            border-radius: 10px;
            width: 100%;
        }
        .featured-image figcaption {
            text-align: center;
            font-size: 0.9rem;
            color: #8899bb;
            padding: 0.75rem 0 0.25rem 0;
        }
        .last-updated {
            display: inline-block;
            background: #1a2230;
            padding: 0.4rem 1.2rem;
            border-radius: 20px;
            font-size: 0.85rem;
            color: #8899bb;
            border: 1px solid #2a3346;
            margin-bottom: 1.5rem;
        }
        .last-updated i {
            color: #f7c948;
            margin-right: 0.4rem;
        }
        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.5rem 0;
            background: #161c27;
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid #2a3346;
        }
        .data-table th {
            background: #1f2a3a;
            color: #f7c948;
            padding: 0.75rem 1rem;
            text-align: left;
            font-weight: 600;
        }
        .data-table td {
            padding: 0.7rem 1rem;
            border-top: 1px solid #2a3346;
            color: #d0d9ec;
        }
        .data-table tr:hover td {
            background: #1a2230;
        }
        .review-section {
            background: #161c27;
            border: 1px solid #2a3346;
            border-radius: 14px;
            padding: 1.75rem;
            margin: 2.5rem 0;
        }
        .review-section h3 {
            margin-top: 0;
            color: #f7c948;
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 0.3rem;
            font-size: 1.8rem;
            margin: 1rem 0;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            color: #3a455a;
            cursor: pointer;
            transition: color 0.2s, transform 0.1s;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #f7c948;
        }
        .star-rating label:hover {
            transform: scale(1.15);
        }
        .rating-submit {
            padding: 0.6rem 2rem;
            border-radius: 10px;
            border: none;
            background: #f7c948;
            color: #0b0e14;
            font-weight: 700;
            cursor: pointer;
            transition: background 0.2s;
            font-size: 1rem;
            margin-top: 0.5rem;
        }
        .rating-submit:hover {
            background: #ffdd7a;
        }
        .comments-section {
            background: #161c27;
            border: 1px solid #2a3346;
            border-radius: 14px;
            padding: 1.75rem;
            margin: 2rem 0;
        }
        .comments-section h3 {
            margin-top: 0;
            color: #f7c948;
        }
        .comment-form textarea {
            width: 100%;
            padding: 0.8rem 1.2rem;
            border-radius: 10px;
            border: 1px solid #2a3346;
            background: #0b0e14;
            color: #e8edf5;
            font-size: 0.95rem;
            resize: vertical;
            min-height: 100px;
            outline: none;
            transition: border 0.2s;
            font-family: inherit;
        }
        .comment-form textarea:focus {
            border-color: #f7c948;
        }
        .comment-form .form-row {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            margin: 0.75rem 0;
        }
        .comment-form .form-row input {
            flex: 1;
            min-width: 180px;
            padding: 0.7rem 1.2rem;
            border-radius: 10px;
            border: 1px solid #2a3346;
            background: #0b0e14;
            color: #e8edf5;
            outline: none;
            transition: border 0.2s;
        }
        .comment-form .form-row input:focus {
            border-color: #f7c948;
        }
        .comment-form button {
            padding: 0.7rem 2rem;
            border-radius: 10px;
            border: none;
            background: #f7c948;
            color: #0b0e14;
            font-weight: 700;
            cursor: pointer;
            transition: background 0.2s;
            font-size: 1rem;
        }
        .comment-form button:hover {
            background: #ffdd7a;
        }
        friend-link {
            display: block;
            padding: 1.5rem 0;
            border-top: 1px solid #2a3346;
            margin-top: 2rem;
        }
        friend-link .friend-list {
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem 1.5rem;
            list-style: none;
            padding: 0;
            margin: 0.75rem 0 0 0;
        }
        friend-link .friend-list li a {
            color: #8899bb;
            font-size: 0.9rem;
            transition: color 0.2s;
        }
        friend-link .friend-list li a:hover {
            color: #f7c948;
        }
        .site-footer {
            background: #0f141d;
            border-top: 2px solid #2a3346;
            padding: 1.75rem 0;
            text-align: center;
            color: #556688;
            font-size: 0.9rem;
            margin-top: 2rem;
        }
        .site-footer .copyright {
            letter-spacing: 0.3px;
        }
        .site-footer .copyright strong {
            color: #8899bb;
        }
        @media (max-width: 820px) {
            .header-inner {
                flex-wrap: wrap;
            }
            .hamburger {
                display: inline-block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: stretch;
                gap: 0.25rem;
                padding-top: 0.75rem;
                border-top: 1px solid #2a3346;
                margin-top: 0.5rem;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 0.6rem 1rem;
                border-radius: 6px;
            }
            .content h1 {
                font-size: 1.8rem;
                padding-left: 0.75rem;
            }
            .content h2 {
                font-size: 1.5rem;
            }
            .content h3 {
                font-size: 1.2rem;
            }
            .search-section {
                flex-direction: column;
                align-items: stretch;
                padding: 1.25rem;
            }
            .search-form {
                min-width: unset;
            }
            .star-rating {
                font-size: 1.5rem;
            }
            .data-table {
                font-size: 0.85rem;
            }
            .data-table th,
            .data-table td {
                padding: 0.5rem 0.6rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 0.9rem;
            }
            .my-logo {
                font-size: 1.2rem;
            }
            .my-logo small {
                font-size: 0.6rem;
            }
            .content h1 {
                font-size: 1.5rem;
            }
            .content h2 {
                font-size: 1.3rem;
            }
            .content p {
                font-size: 0.95rem;
            }
            .review-section,
            .comments-section {
                padding: 1.25rem;
            }
            .comment-form .form-row {
                flex-direction: column;
            }
            .breadcrumbs {
                font-size: 0.75rem;
            }
            .featured-image {
                padding: 0.5rem;
            }
        }
        .skip-link {
            position: absolute;
            top: -100%;
            left: 1rem;
            background: #f7c948;
            color: #0b0e14;
            padding: 0.5rem 1.2rem;
            border-radius: 0 0 8px 8px;
            font-weight: 700;
            z-index: 9999;
            transition: top 0.2s;
        }
        .skip-link:focus {
            top: 0;
            text-decoration: none;
        }
        .emoji-lg {
            font-size: 1.3em;
        }
        .text-muted {
            color: #8899bb;
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .flex-between {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 0.75rem;
        }
