        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
            background: #0b0e14;
            color: #e8edf2;
            line-height: 1.7;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            overflow-x: hidden;
        }
        a {
            color: #f5b342;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover,
        a:focus-visible {
            color: #ffd78a;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ul,
        ol {
            padding-left: 1.4rem;
        }
        li {
            margin-bottom: 0.35rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.25;
            color: #f0f4fa;
            margin-top: 1.8rem;
            margin-bottom: 0.75rem;
        }
        h1 {
            font-size: 2.4rem;
            margin-top: 0.4rem;
        }
        h2 {
            font-size: 1.8rem;
            border-bottom: 2px solid #2a313c;
            padding-bottom: 0.4rem;
        }
        h3 {
            font-size: 1.35rem;
        }
        h4 {
            font-size: 1.1rem;
            color: #cbd5e1;
        }
        p {
            margin-bottom: 1.1rem;
        }
        .container {
            max-width: 1180px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: #141a24;
            border-bottom: 2px solid #2a313c;
            padding: 0.6rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            background: rgba(20, 26, 36, 0.96);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.6rem 1rem;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #f5b342, #ff8c1a);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: inline-flex;
            align-items: center;
            gap: 0.3rem;
        }
        .my-logo i {
            -webkit-text-fill-color: #f5b342;
            font-size: 1.6rem;
        }
        .my-logo:hover {
            text-decoration: none;
            opacity: 0.92;
        }
        .my-logo small {
            font-size: 0.7rem;
            -webkit-text-fill-color: #94a3b8;
            font-weight: 400;
            display: block;
            letter-spacing: 0.3px;
        }
        .nav-wrapper {
            display: flex;
            align-items: center;
            gap: 0.8rem;
        }
        .main-nav {
            display: flex;
            gap: 1.2rem;
            align-items: center;
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .main-nav a {
            color: #cbd5e1;
            font-weight: 500;
            font-size: 0.92rem;
            padding: 0.3rem 0;
            position: relative;
        }
        .main-nav a::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background: #f5b342;
            transition: width 0.3s ease;
        }
        .main-nav a:hover::after,
        .main-nav a:focus-visible::after {
            width: 100%;
        }
        .main-nav a:hover {
            text-decoration: none;
            color: #f5b342;
        }
        .hamburger {
            display: none;
            background: transparent;
            border: none;
            color: #e8edf2;
            font-size: 1.6rem;
            cursor: pointer;
            padding: 0.2rem 0.4rem;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: #1f2937;
        }
        .breadcrumb {
            background: #1a212d;
            padding: 0.55rem 0;
            font-size: 0.85rem;
            border-bottom: 1px solid #2a313c;
        }
        .breadcrumb ul {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem 0.6rem;
            padding: 0;
            margin: 0;
        }
        .breadcrumb li+li::before {
            content: '/';
            margin-right: 0.6rem;
            color: #5a6a7e;
        }
        .breadcrumb a {
            color: #94a3b8;
        }
        .breadcrumb a:hover {
            color: #f5b342;
        }
        .breadcrumb .current {
            color: #cbd5e1;
            font-weight: 500;
        }
        .main-content {
            padding: 2rem 0 3rem;
        }
        .search-section {
            background: #1a212d;
            border-radius: 14px;
            padding: 1.6rem 1.8rem;
            margin-bottom: 2.2rem;
            border: 1px solid #2a313c;
        }
        .search-form {
            display: flex;
            gap: 0.8rem;
            flex-wrap: wrap;
        }
        .search-form input[type="text"] {
            flex: 1;
            min-width: 180px;
            padding: 0.75rem 1.2rem;
            border-radius: 10px;
            border: 1px solid #2a313c;
            background: #0b0e14;
            color: #e8edf2;
            font-size: 0.95rem;
            outline: none;
            transition: border 0.25s;
        }
        .search-form input[type="text"]:focus {
            border-color: #f5b342;
        }
        .search-form button {
            padding: 0.75rem 1.8rem;
            background: #f5b342;
            border: none;
            border-radius: 10px;
            color: #0b0e14;
            font-weight: 700;
            font-size: 0.95rem;
            cursor: pointer;
            transition: background 0.25s, transform 0.15s;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-form button:hover {
            background: #ffc966;
            transform: scale(1.02);
        }
        .feature-image-wrap {
            margin: 1.8rem 0 2rem;
            border-radius: 14px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
        }
        .feature-image-wrap img {
            width: 100%;
            max-height: 480px;
            object-fit: cover;
        }
        .content-card {
            background: #1a212d;
            border-radius: 14px;
            padding: 1.6rem 1.8rem;
            margin-bottom: 1.8rem;
            border: 1px solid #2a313c;
            transition: border-color 0.3s;
        }
        .content-card:hover {
            border-color: #3a475a;
        }
        .link-list-inline {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem 1rem;
            list-style: none;
            padding: 0.6rem 0 0.2rem;
        }
        .link-list-inline li a {
            background: #141a24;
            padding: 0.25rem 1rem;
            border-radius: 20px;
            border: 1px solid #2a313c;
            font-size: 0.88rem;
            transition: all 0.25s;
            display: inline-block;
        }
        .link-list-inline li a:hover {
            background: #1f2937;
            border-color: #f5b342;
            text-decoration: none;
        }
        .rating-section {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 1rem 2rem;
            background: #141a24;
            border-radius: 12px;
            padding: 1.2rem 1.6rem;
            margin-top: 1rem;
        }
        .stars {
            display: flex;
            gap: 0.3rem;
            font-size: 1.7rem;
            color: #3a475a;
            cursor: pointer;
        }
        .stars i.active {
            color: #f5b342;
        }
        .stars i:hover {
            color: #ffd78a;
            transform: scale(1.1);
        }
        .rating-form button {
            padding: 0.5rem 1.4rem;
            background: #f5b342;
            border: none;
            border-radius: 8px;
            color: #0b0e14;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.25s;
        }
        .rating-form button:hover {
            background: #ffc966;
        }
        .comment-box {
            background: #141a24;
            border-radius: 12px;
            padding: 1.4rem 1.6rem;
            margin-top: 1.2rem;
        }
        .comment-box textarea {
            width: 100%;
            padding: 0.8rem 1rem;
            border-radius: 10px;
            border: 1px solid #2a313c;
            background: #0b0e14;
            color: #e8edf2;
            font-size: 0.95rem;
            resize: vertical;
            min-height: 80px;
            outline: none;
            transition: border 0.25s;
            font-family: inherit;
        }
        .comment-box textarea:focus {
            border-color: #f5b342;
        }
        .comment-box .comment-submit {
            margin-top: 0.8rem;
            padding: 0.6rem 1.8rem;
            background: #f5b342;
            border: none;
            border-radius: 8px;
            color: #0b0e14;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.25s;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        .comment-box .comment-submit:hover {
            background: #ffc966;
        }
        .styled-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.2rem 0;
            background: #141a24;
            border-radius: 12px;
            overflow: hidden;
        }
        .styled-table th,
        .styled-table td {
            padding: 0.75rem 1rem;
            text-align: left;
            border-bottom: 1px solid #2a313c;
        }
        .styled-table th {
            background: #1f2937;
            color: #f5b342;
            font-weight: 600;
        }
        .styled-table tr:last-child td {
            border-bottom: none;
        }
        .styled-table tr:hover td {
            background: #1a212d;
        }
        .site-footer {
            background: #141a24;
            border-top: 2px solid #2a313c;
            padding: 2.2rem 0 1.5rem;
            margin-top: 2rem;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.8rem;
        }
        friend-link {
            display: block;
            background: #1a212d;
            border-radius: 12px;
            padding: 1.2rem 1.4rem;
            border: 1px solid #2a313c;
        }
        friend-link a {
            display: inline-block;
            margin: 0.2rem 0;
        }
        .copyright {
            margin-top: 1.8rem;
            padding-top: 1.2rem;
            border-top: 1px solid #2a313c;
            font-size: 0.85rem;
            color: #5a6a7e;
            text-align: center;
        }
        @media (max-width: 820px) {
            h1 {
                font-size: 1.9rem;
            }
            h2 {
                font-size: 1.45rem;
            }
            h3 {
                font-size: 1.15rem;
            }
            .header-inner {
                flex-wrap: wrap;
            }
            .main-nav {
                display: none;
                flex-direction: column;
                width: 100%;
                gap: 0.4rem;
                padding: 0.8rem 0 0.4rem;
                border-top: 1px solid #2a313c;
                margin-top: 0.4rem;
            }
            .main-nav.open {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .footer-grid {
                grid-template-columns: 1fr;
            }
            .search-form {
                flex-direction: column;
            }
            .rating-section {
                flex-direction: column;
                align-items: flex-start;
            }
            .content-card {
                padding: 1.2rem 1.2rem;
            }
            .search-section {
                padding: 1.2rem 1.2rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 12px;
            }
            h1 {
                font-size: 1.6rem;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .breadcrumb {
                font-size: 0.75rem;
            }
        }
        .text-accent {
            color: #f5b342;
        }
        .text-muted {
            color: #94a3b8;
        }
        .mt-1 {
            margin-top: 0.8rem;
        }
        .mb-1 {
            margin-bottom: 0.8rem;
        }
        .flex-between {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 0.8rem;
        }
        .last-updated {
            font-size: 0.85rem;
            color: #5a6a7e;
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
