        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, Roboto, 'Helvetica Neue', sans-serif;
            background: #0b0d17;
            color: #e0e6f0;
            line-height: 1.7;
            padding: 0;
            margin: 0;
            min-height: 100vh;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            color: #f0c040;
            text-decoration: none;
            transition: color 0.2s ease, text-shadow 0.2s ease;
        }
        a:hover,
        a:focus-visible {
            color: #ffde80;
            text-shadow: 0 0 8px rgba(240, 192, 64, 0.3);
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.25;
            color: #f5f9ff;
            letter-spacing: 0.01em;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.25rem;
        }
        .site-header {
            background: linear-gradient(135deg, #0f121f 0%, #1a1e30 100%);
            border-bottom: 1px solid #2a2e45;
            padding: 0.75rem 0;
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.75rem 1rem;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            background: linear-gradient(135deg, #f0c040, #ff7b00);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.03em;
            text-transform: uppercase;
            display: flex;
            align-items: center;
            gap: 0.3rem;
        }
        .my-logo i {
            -webkit-text-fill-color: initial;
            color: #f0c040;
            font-size: 1.4rem;
        }
        .my-logo:hover {
            opacity: 0.9;
            text-shadow: 0 0 20px rgba(240, 192, 64, 0.2);
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 1px solid #3a3e5a;
            color: #e0e6f0;
            font-size: 1.4rem;
            padding: 0.4rem 0.8rem;
            border-radius: 6px;
            cursor: pointer;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: #2a2e45;
        }
        .nav-menu {
            display: flex;
            align-items: center;
            gap: 0.25rem 1.2rem;
            flex-wrap: wrap;
        }
        .nav-menu a {
            font-size: 0.92rem;
            font-weight: 500;
            padding: 0.3rem 0;
            color: #bcc3d4;
            border-bottom: 2px solid transparent;
            transition: color 0.2s, border-color 0.2s;
        }
        .nav-menu a:hover {
            color: #f0c040;
            border-bottom-color: #f0c040;
        }
        .breadcrumb {
            padding: 0.75rem 0 0.25rem 0;
            font-size: 0.82rem;
            color: #8891aa;
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem 0.6rem;
        }
        .breadcrumb a {
            color: #8891aa;
        }
        .breadcrumb a:hover {
            color: #f0c040;
        }
        .breadcrumb span {
            color: #bcc3d4;
        }
        .main-content {
            padding: 1.5rem 0 3rem 0;
        }
        article {
            background: #11141f;
            border-radius: 18px;
            padding: 2rem 2.2rem;
            box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
            border: 1px solid #252a3e;
        }
        h1 {
            font-size: 2.6rem;
            margin-bottom: 0.5rem;
            background: linear-gradient(135deg, #f5f9ff 0%, #f0c040 80%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        h2 {
            font-size: 1.9rem;
            margin: 2.2rem 0 1rem 0;
            color: #f0c040;
            border-left: 4px solid #f0c040;
            padding-left: 1rem;
        }
        h3 {
            font-size: 1.45rem;
            margin: 1.8rem 0 0.8rem 0;
            color: #ffde80;
        }
        h4 {
            font-size: 1.15rem;
            margin: 1.2rem 0 0.5rem 0;
            color: #c8d4f0;
        }
        p {
            margin: 0 0 1.1rem 0;
            color: #d0d8e8;
        }
        .quote-block {
            background: #181e2e;
            border-left: 6px solid #f0c040;
            padding: 1.2rem 1.8rem;
            margin: 1.5rem 0;
            border-radius: 0 12px 12px 0;
            font-style: italic;
            font-size: 1.08rem;
            color: #f5f9ff;
            position: relative;
        }
        .quote-block::before {
            content: '\201C';
            font-size: 3rem;
            color: #f0c040;
            position: absolute;
            top: -0.2rem;
            left: 0.6rem;
            opacity: 0.3;
            font-family: Georgia, serif;
        }
        .quote-block .attribution {
            display: block;
            margin-top: 0.6rem;
            font-style: normal;
            font-weight: 600;
            color: #f0c040;
            font-size: 0.95rem;
        }
        .quote-block .attribution i {
            margin-right: 0.4rem;
        }
        .feature-img {
            border-radius: 14px;
            margin: 2rem 0;
            box-shadow: 0 6px 30px rgba(0, 0, 0, 0.5);
            border: 1px solid #2a2e45;
            width: 100%;
            max-height: 520px;
            object-fit: cover;
            background: #1a1e30;
        }
        .search-section {
            background: #181e2e;
            border-radius: 14px;
            padding: 1.6rem 2rem;
            margin: 2.2rem 0;
            border: 1px solid #2a2e45;
        }
        .search-section form {
            display: flex;
            gap: 0.8rem;
            flex-wrap: wrap;
        }
        .search-section input[type="text"] {
            flex: 1 1 240px;
            padding: 0.75rem 1.2rem;
            border-radius: 40px;
            border: 1px solid #3a3e5a;
            background: #0f121f;
            color: #e0e6f0;
            font-size: 1rem;
            outline: none;
            transition: border 0.2s, box-shadow 0.2s;
        }
        .search-section input[type="text"]:focus {
            border-color: #f0c040;
            box-shadow: 0 0 0 3px rgba(240, 192, 64, 0.15);
        }
        .search-section button {
            padding: 0.7rem 1.8rem;
            border-radius: 40px;
            border: none;
            background: linear-gradient(135deg, #f0c040, #e67e00);
            color: #0b0d17;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .search-section button:hover {
            transform: scale(1.02);
            box-shadow: 0 4px 20px rgba(240, 192, 64, 0.3);
        }
        .search-section button i {
            margin-right: 0.4rem;
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.8rem;
            margin: 2.2rem 0;
        }
        .feedback-card {
            background: #181e2e;
            border-radius: 14px;
            padding: 1.6rem 2rem;
            border: 1px solid #2a2e45;
        }
        .feedback-card h3 {
            margin-top: 0;
            font-size: 1.25rem;
            color: #f0c040;
        }
        .feedback-card form {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
        }
        .feedback-card textarea,
        .feedback-card input[type="text"],
        .feedback-card input[type="number"] {
            padding: 0.7rem 1rem;
            border-radius: 10px;
            border: 1px solid #3a3e5a;
            background: #0f121f;
            color: #e0e6f0;
            font-size: 0.95rem;
            outline: none;
            transition: border 0.2s;
            font-family: inherit;
            resize: vertical;
        }
        .feedback-card textarea:focus,
        .feedback-card input:focus {
            border-color: #f0c040;
        }
        .feedback-card button {
            align-self: flex-start;
            padding: 0.6rem 1.8rem;
            border-radius: 40px;
            border: none;
            background: linear-gradient(135deg, #f0c040, #e67e00);
            color: #0b0d17;
            font-weight: 700;
            font-size: 0.95rem;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .feedback-card button:hover {
            transform: scale(1.02);
            box-shadow: 0 4px 20px rgba(240, 192, 64, 0.25);
        }
        .star-rating {
            display: flex;
            gap: 0.3rem;
            font-size: 1.6rem;
            color: #3a3e5a;
            cursor: pointer;
            direction: rtl;
        }
        .star-rating i {
            transition: color 0.2s, transform 0.2s;
        }
        .star-rating i:hover,
        .star-rating i:hover~i {
            color: #f0c040;
            transform: scale(1.1);
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            cursor: pointer;
            color: #3a3e5a;
            transition: color 0.2s, transform 0.2s;
        }
        .star-rating label:hover,
        .star-rating label:hover~label {
            color: #f0c040;
            transform: scale(1.1);
        }
        .star-rating input:checked~label {
            color: #f0c040;
        }
        @media (max-width: 700px) {
            .feedback-grid {
                grid-template-columns: 1fr;
            }
            article {
                padding: 1.2rem 1rem;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.2rem;
            }
            .header-inner {
                flex-direction: row;
            }
            .nav-menu {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: flex-start;
                padding: 0.8rem 0 0.2rem 0;
                gap: 0.5rem;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-toggle {
                display: inline-block;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .quote-block {
                padding: 1rem 1.2rem;
            }
            .search-section {
                padding: 1.2rem 1.2rem;
            }
            .feedback-card {
                padding: 1.2rem 1.2rem;
            }
        }
        .site-footer {
            background: #0a0c15;
            border-top: 1px solid #1f2338;
            padding: 2.5rem 0 1.8rem 0;
            margin-top: 2rem;
        }
        .footer-inner {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 1.5rem 2rem;
        }
        .footer-col {
            flex: 1 1 200px;
        }
        .footer-col h4 {
            color: #f0c040;
            margin-bottom: 0.8rem;
            font-size: 1.1rem;
        }
        .footer-col a {
            display: block;
            padding: 0.2rem 0;
            font-size: 0.9rem;
            color: #8891aa;
        }
        .footer-col a:hover {
            color: #f0c040;
        }
        friend-link {
            display: block;
            margin-top: 0.5rem;
        }
        friend-link a {
            display: inline-block;
            margin-right: 1rem;
            margin-bottom: 0.3rem;
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            font-size: 0.82rem;
            color: #5a627a;
            border-top: 1px solid #1a1e30;
            margin-top: 2rem;
        }
        .copyright strong {
            color: #8891aa;
        }
        .link-list-inline {
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem 0.8rem;
            margin: 1.4rem 0;
            padding: 0.8rem 0;
            border-top: 1px solid #252a3e;
            border-bottom: 1px solid #252a3e;
        }
        .link-list-inline a {
            font-size: 0.88rem;
            background: #1a1e30;
            padding: 0.2rem 1rem;
            border-radius: 40px;
            border: 1px solid #2a2e45;
            transition: background 0.2s, border-color 0.2s;
        }
        .link-list-inline a:hover {
            background: #252a3e;
            border-color: #f0c040;
        }
        .last-updated {
            font-size: 0.85rem;
            color: #6a7290;
            margin-top: 1.2rem;
            text-align: right;
            border-top: 1px solid #1f2338;
            padding-top: 1rem;
        }
        .last-updated i {
            margin-right: 0.4rem;
        }
        .schema-hidden {
            display: none;
        }
        .highlight {
            color: #f0c040;
            font-weight: 600;
        }
        .text-glow {
            text-shadow: 0 0 20px rgba(240, 192, 64, 0.15);
        }
        .tag {
            display: inline-block;
            background: #2a2e45;
            padding: 0.15rem 0.8rem;
            border-radius: 40px;
            font-size: 0.75rem;
            color: #bcc3d4;
            margin-right: 0.3rem;
        }
        .emoji-big {
            font-size: 1.4rem;
            margin-right: 0.3rem;
        }
        hr {
            border: none;
            border-top: 1px solid #252a3e;
            margin: 2rem 0;
        }
        @media (max-width: 480px) {
            .search-section form {
                flex-direction: column;
            }
            .search-section button {
                width: 100%;
            }
            .feedback-card button {
                width: 100%;
            }
        }
