* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #0b0e14;
            color: #e8edf5;
            line-height: 1.7;
            padding: 0;
        }
        a {
            color: #f7c948;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #ffdd77;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 10px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #141a24 0%, #1f2937 100%);
            border-bottom: 2px solid #f7c94833;
            padding: 18px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(8px);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            background: linear-gradient(135deg, #f7c948, #ff8a00);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.5px;
            text-shadow: 0 0 20px #f7c94822;
        }
        .my-logo small {
            font-size: 0.9rem;
            font-weight: 400;
            -webkit-text-fill-color: #aab;
            background: none;
            color: #aab;
            display: block;
            font-style: italic;
            letter-spacing: 0.3px;
        }
        .my-logo a {
            color: inherit;
            text-decoration: none;
        }
        .my-logo a:hover {
            text-decoration: none;
            opacity: 0.9;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #f7c948;
            background: none;
            border: none;
            padding: 4px 10px;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: #ffffff0c;
        }
        nav#main-nav ul {
            display: flex;
            list-style: none;
            gap: 6px;
            flex-wrap: wrap;
        }
        nav#main-nav ul li a {
            display: block;
            padding: 8px 18px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 0.9rem;
            color: #d1d9e6;
            background: transparent;
            border: 1px solid transparent;
            transition: all 0.25s;
        }
        nav#main-nav ul li a:hover {
            background: #f7c94818;
            border-color: #f7c94855;
            color: #f7c948;
            text-decoration: none;
        }
        nav#main-nav ul li a i {
            margin-right: 6px;
        }
        .breadcrumb-wrap {
            background: #121821;
            padding: 12px 0;
            border-bottom: 1px solid #2a3440;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            gap: 6px 12px;
            font-size: 0.85rem;
            color: #8899aa;
        }
        .breadcrumb li+li:before {
            content: "›";
            margin-right: 10px;
            color: #f7c94888;
            font-weight: 700;
        }
        .breadcrumb a {
            color: #b0c0d0;
        }
        .breadcrumb a:hover {
            color: #f7c948;
        }
        .breadcrumb .active {
            color: #f7c948;
            font-weight: 600;
        }
        main {
            padding: 40px 0 60px;
        }
        h1 {
            font-size: 2.6rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 20px;
            background: linear-gradient(135deg, #f7c948, #ff8a00, #f7c948);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 40px #f7c94822;
        }
        h2 {
            font-size: 1.9rem;
            font-weight: 700;
            margin: 48px 0 18px;
            color: #f7c948;
            border-left: 5px solid #ff8a00;
            padding-left: 18px;
        }
        h3 {
            font-size: 1.4rem;
            font-weight: 600;
            margin: 32px 0 14px;
            color: #ffdd99;
        }
        h4 {
            font-size: 1.15rem;
            font-weight: 600;
            margin: 24px 0 10px;
            color: #eecd99;
        }
        p {
            margin-bottom: 18px;
            font-size: 1.05rem;
            color: #cfd8e3;
        }
        .last-updated {
            display: inline-block;
            background: #1f2a38;
            padding: 6px 18px;
            border-radius: 30px;
            font-size: 0.85rem;
            color: #aabaca;
            margin-bottom: 28px;
            border: 1px solid #2f3a4a;
        }
        .last-updated i {
            margin-right: 6px;
            color: #f7c948;
        }
        .highlight-box {
            background: #1a2433;
            border-left: 5px solid #f7c948;
            padding: 20px 26px;
            border-radius: 0 12px 12px 0;
            margin: 28px 0;
        }
        .highlight-box p:last-child {
            margin-bottom: 0;
        }
        .tip-box {
            background: #0f1a2a;
            border: 1px solid #f7c94833;
            border-radius: 14px;
            padding: 20px 26px;
            margin: 28px 0;
        }
        .tip-box i {
            color: #f7c948;
            margin-right: 10px;
        }
        .inline-link-list {
            display: flex;
            flex-wrap: wrap;
            gap: 10px 18px;
            margin: 20px 0 28px;
            padding: 0;
            list-style: none;
        }
        .inline-link-list li a {
            background: #1a2433;
            padding: 6px 16px;
            border-radius: 30px;
            border: 1px solid #2a3a4a;
            font-size: 0.9rem;
            transition: all 0.25s;
            display: inline-block;
        }
        .inline-link-list li a:hover {
            background: #f7c94818;
            border-color: #f7c94866;
            text-decoration: none;
        }
        .featured-image {
            margin: 32px 0;
            border-radius: 14px;
            overflow: hidden;
            box-shadow: 0 8px 40px #00000055;
            background: #1a2433;
            padding: 10px;
        }
        .featured-image img {
            border-radius: 8px;
            width: 100%;
        }
        .featured-image figcaption {
            text-align: center;
            font-size: 0.85rem;
            color: #99aabb;
            padding: 10px 0 4px;
            font-style: italic;
        }
        .search-section {
            background: #141e2a;
            border-radius: 16px;
            padding: 30px 28px;
            margin: 40px 0;
            border: 1px solid #2a3a4a;
        }
        .search-section h2 {
            margin-top: 0;
            border-left-color: #ff8a00;
        }
        .search-form {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            margin-top: 10px;
        }
        .search-form input {
            flex: 1;
            min-width: 200px;
            padding: 14px 20px;
            border-radius: 40px;
            border: none;
            background: #0b111a;
            color: #e8edf5;
            font-size: 1rem;
            border: 1px solid #2f3a4a;
            transition: border 0.3s;
        }
        .search-form input:focus {
            outline: none;
            border-color: #f7c948;
            box-shadow: 0 0 0 3px #f7c94822;
        }
        .search-form button {
            padding: 14px 34px;
            border-radius: 40px;
            border: none;
            background: linear-gradient(135deg, #f7c948, #ff8a00);
            color: #0b0e14;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .search-form button:hover {
            transform: scale(1.03);
            box-shadow: 0 4px 20px #f7c94844;
        }
        .user-feedback {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin: 50px 0;
        }
        @media (max-width:768px) {
            .user-feedback {
                grid-template-columns: 1fr;
            }
        }
        .feedback-card {
            background: #141e2a;
            border-radius: 16px;
            padding: 28px;
            border: 1px solid #2a3a4a;
        }
        .feedback-card h3 {
            margin-top: 0;
            color: #f7c948;
            font-size: 1.4rem;
        }
        .feedback-card h3 i {
            margin-right: 10px;
        }
        .feedback-form textarea,
        .feedback-form input {
            width: 100%;
            padding: 14px 16px;
            border-radius: 10px;
            border: none;
            background: #0b111a;
            color: #e8edf5;
            font-size: 1rem;
            border: 1px solid #2f3a4a;
            margin-bottom: 14px;
            font-family: inherit;
            transition: border 0.3s;
        }
        .feedback-form textarea:focus,
        .feedback-form input:focus {
            outline: none;
            border-color: #f7c948;
            box-shadow: 0 0 0 3px #f7c94822;
        }
        .feedback-form textarea {
            min-height: 100px;
            resize: vertical;
        }
        .feedback-form button {
            padding: 12px 32px;
            border-radius: 40px;
            border: none;
            background: linear-gradient(135deg, #f7c948, #ff8a00);
            color: #0b0e14;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
            width: 100%;
        }
        .feedback-form button:hover {
            transform: scale(1.02);
            box-shadow: 0 4px 20px #f7c94844;
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 4px;
            margin: 10px 0 18px;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 2rem;
            color: #3a4a5a;
            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;
            transform: scale(1.05);
        }
        footer {
            background: #0d121c;
            border-top: 2px solid #1f2a38;
            padding: 40px 0 30px;
            margin-top: 40px;
        }
        footer .footer-inner {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 30px;
        }
        footer .footer-col h4 {
            color: #f7c948;
            margin-bottom: 14px;
            font-size: 1.1rem;
        }
        friend-link {
            display: block;
            margin: 10px 0;
        }
        friend-link a {
            display: inline-block;
            margin: 4px 0;
            color: #b0c0d0;
            font-size: 0.95rem;
            padding: 4px 0;
        }
        friend-link a:hover {
            color: #f7c948;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            margin-top: 30px;
            border-top: 1px solid #1f2a38;
            color: #7a8a9a;
            font-size: 0.9rem;
        }
        .copyright strong {
            color: #c0d0e0;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            nav#main-nav {
                display: none;
                width: 100%;
                margin-top: 14px;
            }
            nav#main-nav.open {
                display: block;
            }
            nav#main-nav ul {
                flex-direction: column;
                gap: 2px;
            }
            nav#main-nav ul li a {
                padding: 12px 18px;
                border-radius: 8px;
                background: #1a2433;
                border: 1px solid #2a3a4a;
            }
            h1 {
                font-size: 1.9rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.2rem;
            }
            .header-inner {
                gap: 6px;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .my-logo small {
                font-size: 0.75rem;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form button {
                width: 100%;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 14px;
            }
            h1 {
                font-size: 1.6rem;
            }
            .feedback-card {
                padding: 18px;
            }
            .highlight-box {
                padding: 14px 16px;
            }
        }
        html {
            scroll-behavior: smooth;
        }
        .schema-hidden {
            display: none;
        }
