        *,
        *::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: #0d0f14;
            color: #e8edf2;
            line-height: 1.75;
            padding: 0 1rem;
            min-height: 100vh;
        }
        a {
            color: #f0c040;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover,
        a:focus-visible {
            color: #ffd966;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        h1,
        h2,
        h3,
        h4 {
            font-weight: 700;
            line-height: 1.25;
            letter-spacing: 0.01em;
            color: #f5f9ff;
        }
        h1 {
            font-size: 2.4rem;
            margin-bottom: 0.75rem;
            border-left: 6px solid #f0c040;
            padding-left: 1rem;
        }
        h2 {
            font-size: 1.8rem;
            margin: 2.5rem 0 1rem 0;
            border-bottom: 2px solid #2a2e38;
            padding-bottom: 0.5rem;
            position: relative;
        }
        h2::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 80px;
            height: 4px;
            background: #f0c040;
            border-radius: 4px;
        }
        h3 {
            font-size: 1.35rem;
            margin: 1.8rem 0 0.6rem 0;
            color: #f0c040;
        }
        h4 {
            font-size: 1.1rem;
            margin: 1.2rem 0 0.4rem 0;
            color: #c0d0e0;
        }
        p {
            margin-bottom: 1.2rem;
            max-width: 75ch;
        }
        ul,
        ol {
            margin: 0.8rem 0 1.2rem 1.8rem;
        }
        li {
            margin-bottom: 0.4rem;
        }
        strong {
            color: #ffd966;
            font-weight: 600;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 0.5rem;
        }
        .site-header {
            padding: 1.2rem 0 0.8rem 0;
            border-bottom: 1px solid #2a2e38;
            margin-bottom: 1.2rem;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            background: linear-gradient(135deg, #f0c040, #d4a030);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.02em;
            text-shadow: 0 0 20px rgba(240, 192, 64, 0.15);
            display: inline-flex;
            align-items: center;
            gap: 0.3rem;
        }
        .my-logo i {
            -webkit-text-fill-color: initial;
            color: #f0c040;
            font-size: 1.6rem;
        }
        .my-logo:hover {
            opacity: 0.9;
            text-decoration: none;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #e8edf2;
            font-size: 1.6rem;
            cursor: pointer;
            padding: 0.25rem 0.5rem;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: #1f232b;
        }
        .nav-menu {
            display: flex;
            flex-wrap: wrap;
            gap: 0.2rem 1.2rem;
            align-items: center;
            list-style: none;
            margin: 0;
            padding: 0;
        }
        .nav-menu li a {
            color: #c8d0d8;
            font-weight: 500;
            padding: 0.3rem 0.2rem;
            border-bottom: 2px solid transparent;
            transition: all 0.2s;
            font-size: 0.95rem;
        }
        .nav-menu li a:hover {
            color: #f0c040;
            border-bottom-color: #f0c040;
            text-decoration: none;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem 0.8rem;
            font-size: 0.85rem;
            color: #88929e;
            padding: 0.6rem 0 0.2rem 0;
            list-style: none;
            margin: 0;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 0.6rem;
            color: #5a6270;
        }
        .breadcrumb a {
            color: #b0b8c4;
        }
        .breadcrumb a:hover {
            color: #f0c040;
        }
        .search-section {
            background: #171b24;
            border-radius: 16px;
            padding: 1.8rem 2rem;
            margin: 2rem 0 2.5rem 0;
            border: 1px solid #2a2e38;
        }
        .search-section h2 {
            margin-top: 0;
            border-bottom: none;
            font-size: 1.4rem;
        }
        .search-section h2::after {
            display: none;
        }
        .search-form {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem;
            margin-top: 0.6rem;
        }
        .search-form input[type="text"] {
            flex: 1 1 240px;
            padding: 0.75rem 1.2rem;
            border-radius: 40px;
            border: 1px solid #3a3f4a;
            background: #0d0f14;
            color: #e8edf2;
            font-size: 1rem;
            outline: none;
            transition: border 0.3s, box-shadow 0.3s;
        }
        .search-form input[type="text"]:focus {
            border-color: #f0c040;
            box-shadow: 0 0 0 3px rgba(240, 192, 64, 0.2);
        }
        .search-form button {
            padding: 0.75rem 1.8rem;
            border-radius: 40px;
            border: none;
            background: #f0c040;
            color: #0d0f14;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.25s, transform 0.1s;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-form button:hover {
            background: #ffd966;
            transform: scale(1.02);
        }
        .search-form button:active {
            transform: scale(0.97);
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
            margin: 2.5rem 0;
        }
        @media (max-width:700px) {
            .feedback-grid {
                grid-template-columns: 1fr;
            }
        }
        .feedback-card {
            background: #171b24;
            border-radius: 16px;
            padding: 1.6rem 1.8rem;
            border: 1px solid #2a2e38;
        }
        .feedback-card h3 {
            margin-top: 0;
            font-size: 1.2rem;
            color: #f0c040;
        }
        .feedback-card form {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
            margin-top: 0.6rem;
        }
        .feedback-card input,
        .feedback-card textarea,
        .feedback-card select {
            padding: 0.65rem 1rem;
            border-radius: 8px;
            border: 1px solid #3a3f4a;
            background: #0d0f14;
            color: #e8edf2;
            font-size: 0.95rem;
            outline: none;
            transition: border 0.3s;
            font-family: inherit;
        }
        .feedback-card input:focus,
        .feedback-card textarea:focus,
        .feedback-card select:focus {
            border-color: #f0c040;
        }
        .feedback-card textarea {
            min-height: 80px;
            resize: vertical;
        }
        .feedback-card button {
            align-self: flex-start;
            padding: 0.6rem 1.6rem;
            border-radius: 40px;
            border: none;
            background: #f0c040;
            color: #0d0f14;
            font-weight: 700;
            font-size: 0.95rem;
            cursor: pointer;
            transition: background 0.25s, transform 0.1s;
        }
        .feedback-card button:hover {
            background: #ffd966;
            transform: scale(1.02);
        }
        .star-rating {
            display: flex;
            gap: 0.3rem;
            direction: rtl;
            justify-content: flex-end;
            font-size: 1.6rem;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            color: #4a4f5a;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #f0c040;
        }
        .featured-image {
            margin: 2rem 0 2.5rem 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
        }
        .featured-image img {
            width: 100%;
            max-height: 480px;
            object-fit: cover;
        }
        .featured-image figcaption {
            padding: 0.8rem 1.2rem;
            background: #171b24;
            font-size: 0.9rem;
            color: #aab2be;
            border-top: 1px solid #2a2e38;
        }
        .related-links {
            background: #171b24;
            border-radius: 12px;
            padding: 1.2rem 1.6rem;
            margin: 2rem 0;
            border-left: 4px solid #f0c040;
        }
        .related-links ul {
            list-style: none;
            margin: 0.6rem 0 0 0;
            padding: 0;
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem 1.2rem;
        }
        .related-links li a {
            font-weight: 500;
        }
        .site-footer {
            border-top: 1px solid #2a2e38;
            padding: 2rem 0 1.5rem 0;
            margin-top: 3rem;
            font-size: 0.9rem;
            color: #88929e;
        }
        .site-footer friend-link {
            display: block;
            margin-bottom: 0.8rem;
            font-weight: 500;
        }
        .site-footer friend-link a {
            margin: 0 0.6rem 0 0.2rem;
        }
        .site-footer .copyright {
            font-size: 0.85rem;
            border-top: 1px solid #1f232b;
            padding-top: 1rem;
            margin-top: 0.6rem;
        }
        .last-updated {
            display: inline-block;
            background: #1f232b;
            padding: 0.2rem 1rem;
            border-radius: 40px;
            font-size: 0.8rem;
            color: #aab2be;
            margin-bottom: 1rem;
        }
        @media (max-width:768px) {
            body {
                padding: 0 0.75rem;
            }
            h1 {
                font-size: 1.8rem;
                padding-left: 0.6rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            h3 {
                font-size: 1.15rem;
            }
            .site-header {
                flex-wrap: wrap;
                gap: 0.4rem;
            }
            .nav-toggle {
                display: block;
            }
            .nav-menu {
                display: none;
                width: 100%;
                flex-direction: column;
                gap: 0.6rem 0;
                padding: 0.8rem 0 0.4rem 0;
                border-top: 1px solid #2a2e38;
                margin-top: 0.4rem;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu li a {
                font-size: 1rem;
                padding: 0.4rem 0;
                display: block;
            }
            .search-section {
                padding: 1.2rem 1.2rem;
            }
            .feedback-card {
                padding: 1.2rem;
            }
            .star-rating {
                font-size: 1.4rem;
            }
            .related-links ul {
                flex-direction: column;
                gap: 0.3rem 0;
            }
        }
        @media (min-width:769px) {
            .nav-toggle {
                display: none !important;
            }
            .nav-menu {
                display: flex !important;
            }
        }
        .highlight-box {
            background: #1a1f2a;
            border-radius: 12px;
            padding: 1.2rem 1.6rem;
            margin: 1.5rem 0;
            border-left: 4px solid #f0c040;
        }
        .emoji-big {
            font-size: 1.4rem;
            margin-right: 0.2rem;
        }
        .tag {
            display: inline-block;
            background: #2a2e38;
            padding: 0.15rem 0.8rem;
            border-radius: 40px;
            font-size: 0.75rem;
            color: #c0c8d4;
            margin-right: 0.3rem;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 1.2rem 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.9rem;
            background: #171b24;
            border-radius: 12px;
            overflow: hidden;
        }
        th,
        td {
            padding: 0.7rem 1rem;
            text-align: left;
            border-bottom: 1px solid #2a2e38;
        }
        th {
            background: #1f232b;
            color: #f0c040;
            font-weight: 600;
        }
        tr:last-child td {
            border-bottom: none;
        }
        ::-webkit-scrollbar {
            width: 8px;
            height: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #0d0f14;
        }
        ::-webkit-scrollbar-thumb {
            background: #3a3f4a;
            border-radius: 8px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #5a6270;
        }
