        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, Roboto, 'Helvetica Neue', sans-serif;
            background: #0b0e14;
            color: #e8edf5;
            line-height: 1.7;
            padding: 0 16px;
            max-width: 1400px;
            margin: 0 auto;
            min-height: 100vh;
        }
        a {
            color: #f0c040;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover,
        a:focus-visible {
            color: #ffd966;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ul,
        ol {
            padding-left: 1.6rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 600;
            line-height: 1.3;
            margin-top: 1.8rem;
            margin-bottom: 0.6rem;
            color: #f5f0e8;
        }
        h1 {
            font-size: 2.4rem;
            border-bottom: 3px solid #f0c040;
            padding-bottom: 0.4rem;
        }
        h2 {
            font-size: 1.8rem;
            border-left: 5px solid #f0c040;
            padding-left: 0.8rem;
        }
        h3 {
            font-size: 1.4rem;
            color: #f0d68a;
        }
        h4 {
            font-size: 1.15rem;
            color: #d4c9b0;
        }
        p {
            margin-bottom: 1rem;
        }
        strong,
        b {
            color: #ffd966;
            font-weight: 600;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 8px;
        }
        hr {
            border: none;
            border-top: 1px solid #2a3140;
            margin: 2rem 0;
        }
        .site-header {
            padding: 1.2rem 0 0.6rem;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            border-bottom: 2px solid #1e2532;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 800;
            background: linear-gradient(135deg, #f0c040, #d4a020);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.5px;
            text-shadow: 0 0 20px rgba(240, 192, 64, 0.15);
            display: inline-block;
        }
        .my-logo small {
            font-size: 0.9rem;
            -webkit-text-fill-color: #8a8f9a;
            color: #8a8f9a;
            font-weight: 400;
            background: none;
            display: block;
            font-style: italic;
            letter-spacing: 0.5px;
        }
        .my-logo a {
            background: none;
            -webkit-text-fill-color: inherit;
            color: inherit;
        }
        .my-logo a:hover {
            text-decoration: none;
            opacity: 0.9;
        }
        .nav-toggle {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: #f0c040;
            cursor: pointer;
            padding: 4px 10px;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: #1e2532;
        }
        .nav-toggle:focus-visible {
            outline: 2px solid #f0c040;
            outline-offset: 2px;
        }
        .main-nav {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 0.6rem 1.2rem;
            list-style: none;
            padding: 0;
            margin: 0.4rem 0 0;
        }
        .main-nav li a {
            font-size: 0.95rem;
            padding: 4px 10px;
            border-radius: 6px;
            background: transparent;
            transition: background 0.2s, color 0.2s;
            color: #c8cdd8;
            font-weight: 500;
        }
        .main-nav li a:hover,
        .main-nav li a.active {
            background: #1e2532;
            color: #f0c040;
            text-decoration: none;
        }
        .breadcrumb {
            padding: 0.6rem 0 0.2rem;
            font-size: 0.85rem;
            color: #8a8f9a;
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem 0.6rem;
            list-style: none;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 0.5rem;
            color: #5a5f6a;
        }
        .breadcrumb a {
            color: #b0b5c0;
        }
        .breadcrumb a:hover {
            color: #f0c040;
        }
        .breadcrumb .current {
            color: #f0c040;
        }
        .search-section {
            background: #141a24;
            border-radius: 14px;
            padding: 1.5rem 1.8rem;
            margin: 1.8rem 0;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 1rem;
            border: 1px solid #252d3a;
        }
        .search-section label {
            font-weight: 600;
            font-size: 1.05rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: #f0d68a;
        }
        .search-form {
            display: flex;
            flex: 1 1 280px;
            gap: 0.5rem;
        }
        .search-form input[type="text"] {
            flex: 1;
            padding: 0.65rem 1rem;
            border-radius: 8px;
            border: 1px solid #2a3140;
            background: #0b0e14;
            color: #e8edf5;
            font-size: 0.95rem;
            outline: none;
            transition: border 0.2s;
        }
        .search-form input[type="text"]:focus {
            border-color: #f0c040;
        }
        .search-form button {
            padding: 0.65rem 1.4rem;
            border-radius: 8px;
            border: none;
            background: #f0c040;
            color: #0b0e14;
            font-weight: 700;
            font-size: 0.95rem;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
        }
        .search-form button:hover {
            background: #ffd966;
            transform: scale(1.02);
        }
        .search-form button:active {
            transform: scale(0.97);
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        @media (min-width: 900px) {
            .content-grid {
                grid-template-columns: 1fr 300px;
            }
        }
        .main-content {
            min-width: 0;
        }
        .sidebar {
            min-width: 0;
        }
        .featured-image {
            margin: 1.5rem 0 2rem;
            border-radius: 14px;
            overflow: hidden;
            background: #141a24;
            padding: 6px;
            border: 1px solid #252d3a;
        }
        .featured-image figcaption {
            padding: 0.6rem 0.8rem;
            font-size: 0.85rem;
            color: #a0a5b0;
            font-style: italic;
        }
        .link-list {
            list-style: none;
            padding: 0;
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem 0.8rem;
            margin: 1.2rem 0;
        }
        .link-list li a {
            background: #1e2532;
            padding: 2px 12px;
            border-radius: 20px;
            font-size: 0.85rem;
            color: #c8cdd8;
            border: 1px solid #2a3140;
            transition: all 0.2s;
            display: inline-block;
        }
        .link-list li a:hover {
            background: #2a3140;
            border-color: #f0c040;
            color: #f0c040;
            text-decoration: none;
        }
        .info-box {
            background: #141a24;
            border-radius: 12px;
            padding: 1.2rem 1.5rem;
            margin: 1.5rem 0;
            border-left: 4px solid #f0c040;
        }
        .info-box strong {
            color: #f0c040;
        }
        .sidebar-card {
            background: #141a24;
            border-radius: 14px;
            padding: 1.4rem 1.2rem;
            margin-bottom: 1.6rem;
            border: 1px solid #252d3a;
        }
        .sidebar-card h3 {
            margin-top: 0;
            font-size: 1.2rem;
            border-bottom: 1px solid #252d3a;
            padding-bottom: 0.4rem;
        }
        .sidebar-card ul {
            list-style: none;
            padding: 0;
        }
        .sidebar-card ul li {
            padding: 0.35rem 0;
            border-bottom: 1px solid #1a212c;
        }
        .sidebar-card ul li a {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: #c8cdd8;
        }
        .sidebar-card ul li a:hover {
            color: #f0c040;
        }
        .feedback-section {
            background: #141a24;
            border-radius: 14px;
            padding: 1.8rem;
            margin: 2rem 0;
            border: 1px solid #252d3a;
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem 2rem;
        }
        @media (max-width: 640px) {
            .feedback-grid {
                grid-template-columns: 1fr;
            }
        }
        .feedback-section h2 {
            margin-top: 0;
        }
        .form-group {
            margin-bottom: 1rem;
        }
        .form-group label {
            display: block;
            font-weight: 500;
            margin-bottom: 0.3rem;
            color: #d4c9b0;
            font-size: 0.95rem;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 0.6rem 0.9rem;
            border-radius: 8px;
            border: 1px solid #2a3140;
            background: #0b0e14;
            color: #e8edf5;
            font-size: 0.95rem;
            outline: none;
            transition: border 0.2s;
            font-family: inherit;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            border-color: #f0c040;
        }
        .form-group textarea {
            min-height: 80px;
            resize: vertical;
        }
        .form-group .star-rating {
            display: flex;
            gap: 0.3rem;
            font-size: 1.6rem;
            color: #3a4150;
            cursor: pointer;
            flex-direction: row-reverse;
            justify-content: flex-end;
        }
        .form-group .star-rating input {
            display: none;
        }
        .form-group .star-rating label {
            font-size: 1.6rem;
            color: #3a4150;
            cursor: pointer;
            transition: color 0.15s;
            padding: 0 2px;
        }
        .form-group .star-rating label:hover,
        .form-group .star-rating label:hover~label,
        .form-group .star-rating input:checked~label {
            color: #f0c040;
        }
        .btn-submit {
            padding: 0.65rem 2rem;
            border-radius: 8px;
            border: none;
            background: #f0c040;
            color: #0b0e14;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        .btn-submit:hover {
            background: #ffd966;
            transform: scale(1.02);
        }
        .btn-submit:active {
            transform: scale(0.97);
        }
        .site-footer {
            margin-top: 3rem;
            padding: 2rem 0 1.5rem;
            border-top: 2px solid #1e2532;
            text-align: center;
        }
        .site-footer .footer-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1rem 2rem;
            margin-bottom: 1.2rem;
        }
        .site-footer .footer-links a {
            color: #a0a5b0;
            font-size: 0.9rem;
        }
        .site-footer .footer-links a:hover {
            color: #f0c040;
        }
        .site-footer .copyright {
            font-size: 0.82rem;
            color: #6a6f7a;
            margin-top: 0.8rem;
        }
        friend-link {
            display: block;
            padding: 0.8rem 0;
            font-size: 0.9rem;
            color: #a0a5b0;
        }
        friend-link a {
            margin: 0 0.6rem;
            color: #c8cdd8;
        }
        friend-link a:hover {
            color: #f0c040;
        }
        @media (max-width: 768px) {
            .site-header {
                padding: 0.8rem 0 0.4rem;
            }
            .my-logo {
                font-size: 1.5rem;
            }
            .my-logo small {
                font-size: 0.7rem;
            }
            .nav-toggle {
                display: block;
            }
            .main-nav {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #141a24;
                border-radius: 12px;
                padding: 0.8rem 0.6rem;
                margin-top: 0.6rem;
                border: 1px solid #252d3a;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav li a {
                padding: 0.5rem 0.8rem;
                display: block;
                width: 100%;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            h3 {
                font-size: 1.15rem;
            }
            .search-section {
                padding: 1rem 1.2rem;
                flex-direction: column;
                align-items: stretch;
            }
            .search-form {
                flex: 1 1 auto;
            }
            .feedback-section {
                padding: 1.2rem;
            }
            .breadcrumb {
                font-size: 0.75rem;
            }
        }
        @media (max-width: 480px) {
            body {
                padding: 0 8px;
            }
            h1 {
                font-size: 1.5rem;
            }
            h2 {
                font-size: 1.2rem;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form button {
                width: 100%;
            }
            .form-group .star-rating {
                font-size: 1.3rem;
            }
        }
        .last-updated {
            display: inline-block;
            background: #1e2532;
            padding: 0.2rem 1rem;
            border-radius: 20px;
            font-size: 0.8rem;
            color: #8a8f9a;
            margin-bottom: 1rem;
        }
        .emoji-big {
            font-size: 1.4em;
            line-height: 1;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 1.2rem 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.9rem;
        }
        table th,
        table td {
            padding: 0.6rem 0.8rem;
            border: 1px solid #252d3a;
            text-align: left;
        }
        table th {
            background: #1e2532;
            color: #f0d68a;
            font-weight: 600;
        }
        table td {
            background: #0f141e;
        }
        .tag {
            display: inline-block;
            background: #1e2532;
            padding: 2px 10px;
            border-radius: 12px;
            font-size: 0.75rem;
            color: #a0a5b0;
            margin: 2px 4px 2px 0;
        }
        .skip-link {
            position: absolute;
            top: -100px;
            left: 16px;
            background: #f0c040;
            color: #0b0e14;
            padding: 0.5rem 1.2rem;
            border-radius: 0 0 8px 8px;
            font-weight: 700;
            z-index: 100;
        }
        .skip-link:focus {
            top: 0;
        }
