        *,
        *::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, Roboto, 'Helvetica Neue', sans-serif;
            background: #0b0e1a;
            color: #e8edf5;
            line-height: 1.75;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: #f0c75e;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover,
        a:focus-visible {
            color: #ffde8a;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ul,
        ol {
            padding-left: 1.6rem;
        }
        li {
            margin-bottom: 0.3rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.3;
            color: #f5f3ff;
            letter-spacing: 0.01em;
        }
        h1 {
            font-size: 2.4rem;
            margin-bottom: 1.2rem;
            background: linear-gradient(135deg, #f0c75e, #f5a623);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        h2 {
            font-size: 1.9rem;
            margin: 2.4rem 0 1rem;
            border-left: 5px solid #f0c75e;
            padding-left: 1rem;
            color: #f0c75e;
        }
        h3 {
            font-size: 1.5rem;
            margin: 2rem 0 0.8rem;
            color: #e2d9ff;
        }
        h4 {
            font-size: 1.2rem;
            margin: 1.4rem 0 0.5rem;
            color: #cdc4f0;
        }
        p {
            margin-bottom: 1.2rem;
            color: #d5d9e6;
        }
        strong,
        b {
            color: #ffde8a;
            font-weight: 600;
        }
        em {
            color: #b8c7ff;
        }
        blockquote {
            border-left: 4px solid #f0c75e;
            padding: 0.8rem 1.2rem;
            margin: 1.5rem 0;
            background: rgba(240, 199, 94, 0.07);
            border-radius: 0 12px 12px 0;
            font-style: italic;
            color: #d0d4e3;
        }
        hr {
            border: none;
            height: 2px;
            background: linear-gradient(90deg, transparent, #f0c75e, transparent);
            margin: 2.5rem 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.5rem 0;
            background: #141a2b;
            border-radius: 12px;
            overflow: hidden;
        }
        th,
        td {
            padding: 0.8rem 1rem;
            text-align: left;
            border-bottom: 1px solid #2a3250;
        }
        th {
            background: #1e2640;
            color: #f0c75e;
            font-weight: 600;
        }
        td {
            color: #d5d9e6;
        }
        tr:last-child td {
            border-bottom: none;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.2rem;
        }
        .site-header {
            background: #0f1423;
            border-bottom: 2px solid #1f2a44;
            padding: 0.8rem 0;
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(8px);
            background: rgba(11, 14, 26, 0.96);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.8rem;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            background: linear-gradient(135deg, #f0c75e, #f5a623);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.5px;
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        .my-logo i {
            -webkit-text-fill-color: #f0c75e;
            font-size: 1.6rem;
        }
        .my-logo:hover {
            opacity: 0.9;
            text-decoration: none;
        }
        .my-logo small {
            font-size: 0.7rem;
            -webkit-text-fill-color: #8892b0;
            font-weight: 400;
            letter-spacing: 1px;
        }
        .nav-list {
            display: flex;
            gap: 0.2rem;
            list-style: none;
            padding: 0;
            margin: 0;
            flex-wrap: wrap;
        }
        .nav-list li a {
            display: block;
            padding: 0.5rem 1rem;
            border-radius: 8px;
            font-size: 0.9rem;
            font-weight: 500;
            color: #c8cddf;
            transition: background 0.25s ease, color 0.25s ease;
        }
        .nav-list li a:hover,
        .nav-list li a:focus-visible {
            background: #1f2a44;
            color: #f0c75e;
            text-decoration: none;
        }
        .nav-list li a i {
            margin-right: 0.4rem;
            font-size: 0.85rem;
            color: #f0c75e;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #f0c75e;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.2rem 0.6rem;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: #1f2a44;
        }
        .nav-checkbox {
            display: none;
        }
        .breadcrumb {
            padding: 1rem 0 0.4rem;
            font-size: 0.9rem;
            color: #8892b0;
        }
        .breadcrumb ol {
            list-style: none;
            padding: 0;
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem 0.6rem;
        }
        .breadcrumb ol li+li::before {
            content: "›";
            margin-right: 0.6rem;
            color: #556;
            font-size: 1.1rem;
        }
        .breadcrumb a {
            color: #b8c7ff;
        }
        .breadcrumb a:hover {
            color: #f0c75e;
        }
        .breadcrumb .current {
            color: #f0c75e;
            font-weight: 500;
        }
        .hero-figure {
            margin: 1.6rem 0 2rem;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
            position: relative;
        }
        .hero-figure img {
            width: 100%;
            max-height: 480px;
            object-fit: cover;
        }
        .hero-figure figcaption {
            background: rgba(11, 14, 26, 0.85);
            padding: 0.8rem 1.2rem;
            font-size: 0.9rem;
            color: #b8c7ff;
            text-align: center;
            border-top: 2px solid #f0c75e33;
        }
        .search-section {
            background: #141a2b;
            border-radius: 16px;
            padding: 1.6rem 2rem;
            margin: 2rem 0;
            border: 1px solid #2a3250;
        }
        .search-section form {
            display: flex;
            gap: 0.8rem;
            flex-wrap: wrap;
            align-items: center;
        }
        .search-section input[type="text"] {
            flex: 1;
            min-width: 180px;
            padding: 0.8rem 1.2rem;
            border-radius: 10px;
            border: 2px solid #2a3250;
            background: #0b0e1a;
            color: #e8edf5;
            font-size: 1rem;
            transition: border-color 0.3s;
        }
        .search-section input[type="text"]:focus {
            border-color: #f0c75e;
            outline: none;
        }
        .search-section button {
            padding: 0.8rem 1.8rem;
            border-radius: 10px;
            border: none;
            background: #f0c75e;
            color: #0b0e1a;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.25s, transform 0.15s;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-section button:hover {
            background: #ffde8a;
            transform: scale(1.02);
        }
        .rating-section {
            background: #141a2b;
            border-radius: 16px;
            padding: 1.6rem 2rem;
            margin: 2rem 0;
            border: 1px solid #2a3250;
        }
        .rating-stars {
            display: flex;
            gap: 0.4rem;
            font-size: 2rem;
            direction: rtl;
            justify-content: center;
        }
        .rating-stars input {
            display: none;
        }
        .rating-stars label {
            cursor: pointer;
            color: #3a4060;
            transition: color 0.2s;
        }
        .rating-stars label:hover,
        .rating-stars label:hover~label,
        .rating-stars input:checked~label {
            color: #f0c75e;
        }
        .rating-section .submit-row {
            display: flex;
            justify-content: center;
            margin-top: 1rem;
        }
        .rating-section button {
            padding: 0.6rem 2rem;
            border-radius: 10px;
            border: none;
            background: #f0c75e;
            color: #0b0e1a;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.25s;
        }
        .rating-section button:hover {
            background: #ffde8a;
        }
        .comment-section {
            background: #141a2b;
            border-radius: 16px;
            padding: 1.6rem 2rem;
            margin: 2rem 0;
            border: 1px solid #2a3250;
        }
        .comment-section textarea {
            width: 100%;
            padding: 0.8rem 1.2rem;
            border-radius: 10px;
            border: 2px solid #2a3250;
            background: #0b0e1a;
            color: #e8edf5;
            font-size: 1rem;
            min-height: 100px;
            resize: vertical;
            font-family: inherit;
            transition: border-color 0.3s;
        }
        .comment-section textarea:focus {
            border-color: #f0c75e;
            outline: none;
        }
        .comment-section .form-group {
            display: flex;
            gap: 0.8rem;
            flex-wrap: wrap;
            margin-top: 0.8rem;
            align-items: center;
        }
        .comment-section input[type="text"] {
            flex: 1;
            min-width: 160px;
            padding: 0.6rem 1rem;
            border-radius: 10px;
            border: 2px solid #2a3250;
            background: #0b0e1a;
            color: #e8edf5;
        }
        .comment-section input[type="text"]:focus {
            border-color: #f0c75e;
            outline: none;
        }
        .comment-section button {
            padding: 0.6rem 1.8rem;
            border-radius: 10px;
            border: none;
            background: #f0c75e;
            color: #0b0e1a;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.25s;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .comment-section button:hover {
            background: #ffde8a;
        }
        .last-updated {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            font-size: 0.95rem;
            color: #8892b0;
            margin: 1.5rem 0;
            padding: 0.6rem 1.2rem;
            background: #141a2b;
            border-radius: 30px;
            width: fit-content;
            border: 1px solid #2a3250;
        }
        .last-updated i {
            color: #f0c75e;
        }
        friend-link {
            display: block;
            background: #141a2b;
            border-radius: 16px;
            padding: 1.6rem 2rem;
            margin: 1.5rem 0;
            border: 1px solid #2a3250;
        }
        friend-link h3 {
            font-size: 1.2rem;
            color: #f0c75e;
            margin: 0 0 0.8rem 0;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        friend-link ul {
            list-style: none;
            padding: 0;
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem 1.2rem;
        }
        friend-link ul li a {
            color: #b8c7ff;
            font-size: 0.95rem;
            padding: 0.2rem 0;
        }
        friend-link ul li a:hover {
            color: #f0c75e;
        }
        .site-footer {
            background: #0a0e1a;
            border-top: 2px solid #1f2a44;
            padding: 2rem 0 1.5rem;
            margin-top: auto;
            text-align: center;
        }
        .site-footer p {
            color: #6a7290;
            font-size: 0.9rem;
            margin-bottom: 0.4rem;
        }
        .site-footer a {
            color: #b8c7ff;
        }
        .site-footer a:hover {
            color: #f0c75e;
        }
        .site-footer .copyright {
            margin-top: 0.8rem;
            font-size: 0.85rem;
            color: #4a5270;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.25rem;
            }
            .header-inner {
                flex-wrap: nowrap;
            }
            .hamburger {
                display: block;
            }
            .nav-wrapper {
                display: none;
                width: 100%;
                order: 3;
                margin-top: 0.6rem;
            }
            .nav-checkbox:checked~.nav-wrapper {
                display: block;
            }
            .nav-list {
                flex-direction: column;
                gap: 0.2rem;
                background: #141a2b;
                border-radius: 12px;
                padding: 0.6rem;
                border: 1px solid #2a3250;
            }
            .nav-list li a {
                padding: 0.6rem 1rem;
                border-radius: 6px;
            }
            .search-section form {
                flex-direction: column;
            }
            .search-section input[type="text"] {
                min-width: auto;
                width: 100%;
            }
            .rating-stars {
                font-size: 1.6rem;
            }
            .comment-section .form-group {
                flex-direction: column;
            }
            .comment-section input[type="text"] {
                min-width: auto;
                width: 100%;
            }
            .hero-figure img {
                max-height: 220px;
            }
            .container {
                padding: 0 0.9rem;
            }
            .breadcrumb ol {
                font-size: 0.8rem;
                gap: 0.2rem 0.4rem;
            }
            .last-updated {
                font-size: 0.8rem;
                padding: 0.4rem 1rem;
            }
            friend-link ul {
                flex-direction: column;
                gap: 0.3rem;
            }
        }
        @media (max-width: 480px) {
            html {
                font-size: 15px;
            }
            h1 {
                font-size: 1.6rem;
            }
            h2 {
                font-size: 1.35rem;
            }
            h3 {
                font-size: 1.15rem;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .my-logo small {
                font-size: 0.6rem;
            }
        }
        .text-glow {
            text-shadow: 0 0 20px rgba(240, 199, 94, 0.15);
        }
        .flex-icon-list {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem 1.6rem;
            list-style: none;
            padding: 0;
        }
        .flex-icon-list li {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .flex-icon-list li i {
            color: #f0c75e;
            width: 1.2rem;
        }
        .highlight-card {
            background: linear-gradient(145deg, #1a2240, #0f1423);
            border-radius: 16px;
            padding: 1.6rem 2rem;
            margin: 1.6rem 0;
            border: 1px solid #2a3250;
            transition: transform 0.2s;
        }
        .highlight-card:hover {
            transform: translateY(-2px);
        }
        .tag {
            display: inline-block;
            background: #1f2a44;
            padding: 0.2rem 0.8rem;
            border-radius: 20px;
            font-size: 0.8rem;
            color: #f0c75e;
            margin-right: 0.4rem;
        }
        .emoji-big {
            font-size: 1.8rem;
            margin-right: 0.4rem;
        }
        .skip-link {
            position: absolute;
            top: -100%;
            left: 1rem;
            background: #f0c75e;
            color: #0b0e1a;
            padding: 0.5rem 1.2rem;
            border-radius: 0 0 8px 8px;
            font-weight: 600;
            z-index: 200;
            transition: top 0.25s;
        }
        .skip-link:focus {
            top: 0;
        }
