        *,
        *::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, sans-serif;
            background: #0b0e14;
            color: #e8ecf1;
            line-height: 1.75;
            padding: 0 16px;
            max-width: 1280px;
            margin: 0 auto;
        }
        a {
            color: #ffb347;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover,
        a:focus-visible {
            color: #ffd700;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.3;
            color: #f5f7fa;
            margin-top: 1.8rem;
            margin-bottom: 0.6rem;
        }
        h1 {
            font-size: 2.4rem;
            border-bottom: 3px solid #ffb347;
            padding-bottom: 0.4rem;
        }
        h2 {
            font-size: 1.8rem;
            border-left: 5px solid #ffb347;
            padding-left: 0.75rem;
            margin-top: 2.4rem;
        }
        h3 {
            font-size: 1.4rem;
            margin-top: 1.8rem;
            color: #f0d6a0;
        }
        h4 {
            font-size: 1.15rem;
            color: #d4c9b0;
            margin-top: 1.2rem;
        }
        p {
            margin-bottom: 1.1rem;
        }
        ul,
        ol {
            margin: 0.6rem 0 1.2rem 1.8rem;
        }
        li {
            margin-bottom: 0.3rem;
        }
        strong {
            color: #ffd966;
        }
        em {
            color: #c0d0e0;
        }
        hr {
            border: none;
            border-top: 1px solid #2a3140;
            margin: 2.4rem 0;
        }
        header {
            padding: 1.2rem 0 0.6rem;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            position: relative;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: -0.02em;
            background: linear-gradient(135deg, #ffb347, #ff8c00);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-transform: uppercase;
            padding: 0.2rem 0;
        }
        .my-logo:hover {
            opacity: 0.85;
            text-decoration: none;
        }
        .my-logo small {
            font-size: 0.7rem;
            display: block;
            -webkit-text-fill-color: #8899aa;
            color: #8899aa;
            letter-spacing: 0.3px;
        }
        .nav-wrapper {
            display: flex;
            align-items: center;
            gap: 20px;
        }
        nav {
            display: flex;
            gap: 12px 24px;
            flex-wrap: wrap;
        }
        nav a {
            font-weight: 600;
            font-size: 0.95rem;
            padding: 6px 10px;
            border-radius: 8px;
            transition: background 0.2s, color 0.2s;
            color: #bcc8db;
        }
        nav a:hover {
            background: #1f2a3a;
            color: #ffb347;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: 2px solid #ffb347;
            color: #ffb347;
            font-size: 1.5rem;
            padding: 4px 12px;
            border-radius: 8px;
            cursor: pointer;
            transition: 0.2s;
        }
        .hamburger:hover {
            background: #ffb34722;
        }
        .nav-toggle {
            display: none;
        }
        @media (max-width: 800px) {
            .hamburger {
                display: inline-block;
            }
            .nav-links {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #141b26;
                padding: 16px 12px;
                border-radius: 12px;
                margin-top: 12px;
                gap: 8px;
            }
            .nav-toggle:checked~.nav-links {
                display: flex;
            }
            .nav-wrapper {
                flex-wrap: wrap;
            }
            nav a {
                font-size: 1.05rem;
                padding: 10px 12px;
            }
        }
        .breadcrumb {
            font-size: 0.85rem;
            color: #8899aa;
            padding: 0.4rem 0 0.2rem;
            display: flex;
            flex-wrap: wrap;
            gap: 6px 10px;
            list-style: none;
            margin: 0 0 0.8rem 0;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 8px;
            color: #556677;
        }
        .breadcrumb a {
            color: #aabbcc;
        }
        .breadcrumb a:hover {
            color: #ffb347;
        }
        .breadcrumb .current {
            color: #e8ecf1;
        }
        .search-box {
            display: flex;
            gap: 6px;
            max-width: 480px;
            margin: 1.2rem 0 1.8rem;
            background: #1a2230;
            border-radius: 40px;
            padding: 4px 4px 4px 18px;
            border: 1px solid #2a3444;
            transition: border 0.2s;
        }
        .search-box:focus-within {
            border-color: #ffb347;
        }
        .search-box input {
            flex: 1;
            background: transparent;
            border: none;
            padding: 12px 6px;
            color: #e8ecf1;
            font-size: 0.95rem;
            outline: none;
        }
        .search-box input::placeholder {
            color: #667788;
        }
        .search-box button {
            background: #ffb347;
            border: none;
            border-radius: 40px;
            padding: 10px 20px;
            font-weight: 700;
            color: #0b0e14;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            font-size: 0.9rem;
        }
        .search-box button:hover {
            background: #ffd700;
            transform: scale(1.02);
        }
        .section-card {
            background: #121a26;
            border-radius: 16px;
            padding: 1.8rem 2rem;
            margin: 2rem 0;
            border: 1px solid #1e2a3a;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
        }
        @media (max-width: 600px) {
            .section-card {
                padding: 1.2rem 1rem;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            h3 {
                font-size: 1.15rem;
            }
        }
        .feature-image {
            margin: 1.8rem 0;
            border-radius: 14px;
            overflow: hidden;
            background: #0d1420;
            padding: 8px;
            border: 1px solid #1f2c3c;
        }
        .feature-image figcaption {
            padding: 10px 12px 4px;
            font-size: 0.85rem;
            color: #99aabb;
            font-style: italic;
        }
        .comment-form,
        .rating-form {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin: 1.2rem 0 0.6rem;
            max-width: 600px;
        }
        .comment-form textarea,
        .comment-form input,
        .rating-form select,
        .rating-form input {
            background: #0d1420;
            border: 1px solid #2a3444;
            border-radius: 10px;
            padding: 12px 16px;
            color: #e8ecf1;
            font-size: 0.95rem;
            transition: border 0.2s;
        }
        .comment-form textarea:focus,
        .comment-form input:focus,
        .rating-form select:focus {
            border-color: #ffb347;
            outline: none;
        }
        .comment-form button,
        .rating-form button {
            align-self: flex-start;
            background: #ffb347;
            border: none;
            border-radius: 30px;
            padding: 12px 28px;
            font-weight: 700;
            color: #0b0e14;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            font-size: 0.95rem;
        }
        .comment-form button:hover,
        .rating-form button:hover {
            background: #ffd700;
            transform: scale(1.02);
        }
        footer {
            margin-top: 3rem;
            padding: 2rem 0 1.5rem;
            border-top: 1px solid #1e2a3a;
        }
        friend-link {
            display: block;
            padding: 1.2rem 0;
            font-size: 0.95rem;
        }
        friend-link a {
            display: inline-block;
            margin: 0.3rem 1.2rem 0.3rem 0;
            padding: 6px 14px;
            background: #141e2c;
            border-radius: 30px;
            transition: background 0.2s;
        }
        friend-link a:hover {
            background: #1f2e42;
            text-decoration: none;
        }
        .copyright {
            font-size: 0.82rem;
            color: #667788;
            text-align: center;
            padding-top: 1.2rem;
            border-top: 1px solid #1a2535;
        }
        .copyright a {
            color: #8899aa;
        }
        .text-muted {
            color: #8899aa;
        }
        .flex-between {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            align-items: center;
        }
        .badge {
            display: inline-block;
            background: #ffb34722;
            color: #ffb347;
            padding: 2px 12px;
            border-radius: 30px;
            font-size: 0.75rem;
            font-weight: 600;
            border: 1px solid #ffb34755;
        }
        .last-updated {
            font-size: 0.85rem;
            color: #99aabb;
            margin: 0.4rem 0 1.2rem;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .last-updated i {
            color: #ffb347;
        }
        @media (max-width: 480px) {
            .search-box {
                flex-wrap: wrap;
                border-radius: 20px;
                padding: 6px 6px 6px 14px;
            }
            .search-box button {
                width: 100%;
                border-radius: 30px;
                margin-top: 4px;
            }
            .breadcrumb {
                font-size: 0.75rem;
            }
        }
