*,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, sans-serif;
            background: #0b0d11;
            color: #e8eaed;
            line-height: 1.7;
            font-size: 1.05rem;
            padding: 0 1rem;
        }
        a {
            color: #f5c542;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover,
        a:focus {
            color: #ffde7a;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }
        .site-header {
            padding: 1.2rem 0;
            border-bottom: 1px solid #2a2e35;
            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.5px;
            background: linear-gradient(135deg, #f5c542, #e63946);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-decoration: none;
        }
        .my-logo:hover {
            text-decoration: none;
            filter: brightness(1.2);
        }
        .my-logo small {
            font-size: 0.7rem;
            display: block;
            -webkit-text-fill-color: #9aa0a6;
            color: #9aa0a6;
            font-weight: 400;
            letter-spacing: 0.5px;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid #f5c542;
            color: #f5c542;
            font-size: 1.5rem;
            padding: 0.4rem 0.8rem;
            border-radius: 8px;
            cursor: pointer;
        }
        .nav-toggle:focus {
            outline: 2px solid #f5c542;
        }
        .main-nav {
            display: flex;
            flex-wrap: wrap;
            gap: 0.2rem 1.2rem;
            align-items: center;
        }
        .main-nav a {
            padding: 0.3rem 0;
            font-weight: 500;
            color: #c8ccd0;
            border-bottom: 2px solid transparent;
        }
        .main-nav a:hover,
        .main-nav a.active {
            color: #f5c542;
            border-bottom-color: #f5c542;
            text-decoration: none;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem 0.6rem;
            font-size: 0.9rem;
            padding: 0.8rem 0 0.2rem;
            color: #9aa0a6;
        }
        .breadcrumb a {
            color: #9aa0a6;
        }
        .breadcrumb a:hover {
            color: #f5c542;
        }
        .breadcrumb span {
            color: #f5c542;
        }
        h1 {
            font-size: 2.8rem;
            font-weight: 800;
            line-height: 1.2;
            margin: 2rem 0 1rem;
            background: linear-gradient(135deg, #f5c542, #e63946);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        h2 {
            font-size: 2rem;
            font-weight: 700;
            margin: 2.5rem 0 1rem;
            border-left: 5px solid #f5c542;
            padding-left: 1rem;
            color: #f0f2f5;
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin: 1.8rem 0 0.8rem;
            color: #f5c542;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
            margin: 1.2rem 0 0.5rem;
            color: #e0e3e7;
        }
        p {
            margin-bottom: 1.2rem;
            color: #d0d3d8;
        }
        .lead {
            font-size: 1.2rem;
            font-weight: 400;
            color: #e8eaed;
            border-left: 3px solid #e63946;
            padding-left: 1.2rem;
            margin-bottom: 2rem;
        }
        .highlight {
            background: rgba(245, 197, 66, 0.12);
            padding: 0.1rem 0.4rem;
            border-radius: 4px;
            font-weight: 600;
            color: #f5c542;
        }
        .emoji-big {
            font-size: 1.4rem;
        }
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }
        .card {
            background: #161a21;
            border-radius: 16px;
            padding: 1.6rem;
            border: 1px solid #2a2e35;
            transition: transform 0.25s, box-shadow 0.25s;
        }
        .card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
            border-color: #f5c542;
        }
        .card i {
            font-size: 2rem;
            color: #f5c542;
            margin-bottom: 0.8rem;
        }
        .card h3 {
            margin-top: 0;
        }
        .card p {
            font-size: 0.98rem;
        }
        .featured-image {
            margin: 2.5rem 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.7);
        }
        .featured-image figcaption {
            padding: 0.8rem 1rem;
            background: #161a21;
            font-size: 0.9rem;
            color: #9aa0a6;
            border-bottom-left-radius: 16px;
            border-bottom-right-radius: 16px;
            border: 1px solid #2a2e35;
            border-top: none;
        }
        .tier-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.5rem 0;
            background: #161a21;
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid #2a2e35;
        }
        .tier-table th {
            background: #1f252e;
            color: #f5c542;
            font-weight: 700;
            padding: 0.9rem 1rem;
            text-align: left;
        }
        .tier-table td {
            padding: 0.8rem 1rem;
            border-bottom: 1px solid #2a2e35;
        }
        .tier-table tr:last-child td {
            border-bottom: none;
        }
        .tier-table tr:hover td {
            background: #1d232b;
        }
        .tier-s {
            color: #e63946;
            font-weight: 700;
        }
        .tier-a {
            color: #f5c542;
            font-weight: 600;
        }
        .tier-b {
            color: #76b900;
            font-weight: 600;
        }
        .tier-c {
            color: #6c8ebf;
        }
        .search-section {
            background: #161a21;
            border-radius: 16px;
            padding: 2rem;
            margin: 2.5rem 0;
            border: 1px solid #2a2e35;
        }
        .search-form {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem;
            margin-top: 1rem;
        }
        .search-form input[type="search"] {
            flex: 1 1 240px;
            padding: 0.8rem 1.2rem;
            border-radius: 40px;
            border: 1px solid #3a3f4a;
            background: #0b0d11;
            color: #e8eaed;
            font-size: 1rem;
            outline: none;
            transition: border 0.2s;
        }
        .search-form input[type="search"]:focus {
            border-color: #f5c542;
        }
        .search-form button {
            padding: 0.8rem 2rem;
            border-radius: 40px;
            border: none;
            background: #f5c542;
            color: #0b0d11;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
        }
        .search-form button:hover {
            background: #ffde7a;
            transform: scale(1.02);
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            margin: 2.5rem 0;
        }
        @media (max-width:700px) {
            .feedback-grid {
                grid-template-columns: 1fr;
            }
        }
        .comment-section,
        .score-section {
            background: #161a21;
            border-radius: 16px;
            padding: 1.8rem;
            border: 1px solid #2a2e35;
        }
        .comment-section h3,
        .score-section h3 {
            margin-top: 0;
        }
        .comment-section textarea,
        .score-section select,
        .score-section input[type="text"] {
            width: 100%;
            padding: 0.7rem 1rem;
            border-radius: 8px;
            border: 1px solid #3a3f4a;
            background: #0b0d11;
            color: #e8eaed;
            font-size: 1rem;
            margin-top: 0.5rem;
            font-family: inherit;
        }
        .comment-section textarea {
            min-height: 100px;
            resize: vertical;
        }
        .comment-section textarea:focus,
        .score-section select:focus,
        .score-section input:focus {
            border-color: #f5c542;
            outline: none;
        }
        .btn-submit {
            padding: 0.7rem 2rem;
            border-radius: 40px;
            border: none;
            background: #f5c542;
            color: #0b0d11;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            margin-top: 1rem;
            transition: background 0.2s;
            display: inline-block;
        }
        .btn-submit:hover {
            background: #ffde7a;
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 0.2rem;
            margin: 0.8rem 0;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 2rem;
            color: #4a4e57;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star-rating input:checked~label,
        .star-rating label:hover,
        .star-rating label:hover~label {
            color: #f5c542;
        }
        friend-link {
            display: block;
            padding: 1.5rem 0;
            border-top: 1px solid #2a2e35;
            margin-top: 2rem;
        }
        friend-link a {
            display: inline-block;
            margin: 0.2rem 1.2rem 0.2rem 0;
            color: #9aa0a6;
        }
        friend-link a:hover {
            color: #f5c542;
        }
        .site-footer {
            padding: 2rem 0 1.5rem;
            border-top: 1px solid #2a2e35;
            text-align: center;
            color: #6c727c;
            font-size: 0.9rem;
        }
        .site-footer a {
            color: #9aa0a6;
        }
        .site-footer a:hover {
            color: #f5c542;
        }
        .last-updated {
            display: inline-block;
            background: #1f252e;
            padding: 0.3rem 1rem;
            border-radius: 40px;
            font-size: 0.85rem;
            color: #9aa0a6;
            margin-bottom: 1.5rem;
        }
        @media (max-width:768px) {
            .nav-toggle {
                display: block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                padding: 1rem 0 0.5rem;
                gap: 0.5rem;
            }
            .main-nav.open {
                display: flex;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.3rem;
            }
            .site-header {
                padding: 0.8rem 0;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .tier-table {
                font-size: 0.85rem;
            }
            .tier-table th,
            .tier-table td {
                padding: 0.5rem 0.6rem;
            }
        }
        @media (max-width:480px) {
            body {
                padding: 0 0.5rem;
                font-size: 0.98rem;
            }
            .container {
                padding: 0 0.3rem;
            }
            h1 {
                font-size: 1.7rem;
            }
            .card-grid {
                grid-template-columns: 1fr;
            }
        }
        ul,
        ol {
            padding-left: 1.6rem;
            margin-bottom: 1.2rem;
            color: #d0d3d8;
        }
        li {
            margin-bottom: 0.4rem;
        }
        .inline-link-list {
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem 1.2rem;
            padding: 1rem 0;
            list-style: none;
        }
        .inline-link-list li {
            margin-bottom: 0;
        }
        .inline-link-list a {
            font-weight: 500;
        }
        blockquote {
            border-left: 4px solid #f5c542;
            padding: 1rem 1.5rem;
            margin: 1.5rem 0;
            background: #161a21;
            border-radius: 0 12px 12px 0;
            font-style: italic;
            color: #c8ccd0;
        }
        blockquote cite {
            display: block;
            margin-top: 0.5rem;
            font-style: normal;
            font-weight: 600;
            color: #f5c542;
        }
        .text-gold {
            color: #f5c542;
        }
        .text-muted {
            color: #9aa0a6;
        }
        .mt-2 {
            margin-top: 2rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .flex-wrap {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem;
        }
        .gap-1 {
            gap: 1rem;
        }
