* {
            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;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: #f0c94b;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover,
        a:focus-visible {
            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 20px;
            width: 100%;
        }
        .site-header {
            background: #141a24;
            border-bottom: 2px solid #2a3546;
            padding: 16px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(8px);
            background: rgba(20, 26, 36, 0.96);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px 20px;
        }
        .my-logo {
            font-size: 1.6rem;
            font-weight: 800;
            letter-spacing: -0.02em;
            color: #f0c94b;
            text-transform: uppercase;
            transition: opacity 0.2s;
            line-height: 1.2;
        }
        .my-logo:hover {
            opacity: 0.85;
            text-decoration: none;
            color: #f0c94b;
        }
        .my-logo small {
            display: block;
            font-size: 0.5rem;
            font-weight: 400;
            color: #8a9bb5;
            letter-spacing: 0.1em;
            text-transform: none;
        }
        .main-nav {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
        }
        .main-nav a {
            padding: 8px 16px;
            border-radius: 8px;
            font-size: 0.9rem;
            font-weight: 500;
            color: #c8d2e0;
            transition: background 0.25s, color 0.25s;
            white-space: nowrap;
        }
        .main-nav a:hover,
        .main-nav a:focus-visible {
            background: #2a3546;
            color: #f0c94b;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #e8edf5;
            font-size: 1.6rem;
            cursor: pointer;
            padding: 4px 8px;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: #2a3546;
        }
        .nav-overlay {
            display: none;
        }
        .breadcrumb {
            padding: 12px 0 4px;
            font-size: 0.85rem;
            color: #8a9bb5;
            display: flex;
            flex-wrap: wrap;
            gap: 6px 10px;
            align-items: center;
        }
        .breadcrumb a {
            color: #8a9bb5;
        }
        .breadcrumb a:hover {
            color: #f0c94b;
        }
        .breadcrumb span {
            color: #c8d2e0;
        }
        .main-content {
            flex: 1;
            padding: 30px 0 50px;
        }
        h1 {
            font-size: 2.6rem;
            font-weight: 800;
            line-height: 1.2;
            color: #f0c94b;
            margin: 0 0 16px;
            letter-spacing: -0.02em;
        }
        h2 {
            font-size: 1.9rem;
            font-weight: 700;
            color: #f5d97a;
            margin: 48px 0 16px;
            padding-bottom: 8px;
            border-bottom: 2px solid #2a3546;
            letter-spacing: -0.01em;
        }
        h3 {
            font-size: 1.4rem;
            font-weight: 600;
            color: #e0c268;
            margin: 32px 0 12px;
        }
        h4 {
            font-size: 1.15rem;
            font-weight: 600;
            color: #c8d2e0;
            margin: 24px 0 10px;
        }
        p {
            margin: 0 0 16px;
            color: #d0d8e5;
        }
        .lead {
            font-size: 1.15rem;
            color: #e8edf5;
            font-weight: 400;
        }
        strong {
            color: #f0c94b;
            font-weight: 600;
        }
        .highlight-block {
            background: #1a2230;
            border-left: 4px solid #f0c94b;
            padding: 18px 22px;
            border-radius: 0 10px 10px 0;
            margin: 24px 0;
        }
        .highlight-block p {
            margin: 0;
        }
        .emoji-lg {
            font-size: 1.4em;
            display: inline-block;
            margin-right: 4px;
        }
        .featured-image-wrap {
            margin: 32px 0;
            border-radius: 14px;
            overflow: hidden;
            background: #1a2230;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
        }
        .featured-image-wrap img {
            width: 100%;
            max-height: 520px;
            object-fit: cover;
        }
        .featured-image-wrap figcaption {
            padding: 12px 20px;
            font-size: 0.85rem;
            color: #8a9bb5;
            background: #141a24;
            font-style: italic;
        }
        .link-inset {
            background: #1a2230;
            padding: 20px 24px;
            border-radius: 12px;
            margin: 28px 0;
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
            gap: 10px 20px;
        }
        .link-inset a {
            display: inline-block;
            padding: 4px 0;
            font-size: 0.92rem;
        }
        .link-inset a::before {
            content: "🔗 ";
            font-size: 0.8em;
        }
        .search-section {
            background: #141a24;
            border-radius: 14px;
            padding: 28px 30px;
            margin: 40px 0;
            border: 1px solid #2a3546;
        }
        .search-form {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }
        .search-form input[type="text"] {
            flex: 1;
            min-width: 180px;
            padding: 14px 20px;
            border: 1px solid #2a3546;
            border-radius: 10px;
            background: #0b0e14;
            color: #e8edf5;
            font-size: 1rem;
            outline: none;
            transition: border 0.3s;
        }
        .search-form input[type="text"]:focus {
            border-color: #f0c94b;
        }
        .search-form button {
            padding: 14px 32px;
            background: #f0c94b;
            color: #0b0e14;
            border: none;
            border-radius: 10px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.3s, transform 0.1s;
        }
        .search-form button:hover {
            background: #ffde7a;
            transform: scale(1.02);
        }
        .interaction-area {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin: 40px 0;
        }
        .rating-box,
        .comment-box {
            background: #141a24;
            border-radius: 14px;
            padding: 24px 28px;
            border: 1px solid #2a3546;
        }
        .rating-box h3,
        .comment-box h3 {
            margin-top: 0;
            font-size: 1.2rem;
            color: #f0c94b;
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 6px;
            margin: 12px 0 16px;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 2rem;
            color: #3a4556;
            cursor: pointer;
            transition: color 0.2s, transform 0.1s;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #f0c94b;
        }
        .star-rating label:hover {
            transform: scale(1.1);
        }
        .rating-box .score-btn {
            padding: 10px 28px;
            background: #2a3546;
            color: #e8edf5;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s;
            font-size: 0.95rem;
        }
        .rating-box .score-btn:hover {
            background: #f0c94b;
            color: #0b0e14;
        }
        .comment-box textarea {
            width: 100%;
            padding: 14px 18px;
            border: 1px solid #2a3546;
            border-radius: 10px;
            background: #0b0e14;
            color: #e8edf5;
            font-size: 0.95rem;
            resize: vertical;
            min-height: 100px;
            outline: none;
            font-family: inherit;
            transition: border 0.3s;
        }
        .comment-box textarea:focus {
            border-color: #f0c94b;
        }
        .comment-box .comment-btn {
            margin-top: 12px;
            padding: 12px 28px;
            background: #2a3546;
            color: #e8edf5;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s;
            font-size: 0.95rem;
        }
        .comment-box .comment-btn:hover {
            background: #f0c94b;
            color: #0b0e14;
        }
        .last-updated {
            font-size: 0.85rem;
            color: #6a7b95;
            margin-top: 30px;
            padding-top: 16px;
            border-top: 1px solid #1a2230;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .site-footer {
            background: #0f151e;
            border-top: 2px solid #1a2230;
            padding: 36px 0 24px;
            margin-top: 40px;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 30px 40px;
        }
        .footer-copy {
            font-size: 0.88rem;
            color: #6a7b95;
        }
        .footer-copy .copyright {
            margin-top: 12px;
            display: block;
        }
        friend-link {
            display: block;
            margin-top: 8px;
        }
        friend-link a {
            display: inline-block;
            padding: 4px 0;
            color: #8a9bb5;
            font-size: 0.9rem;
        }
        friend-link a:hover {
            color: #f0c94b;
        }
        friend-link a::before {
            content: "› ";
            color: #f0c94b;
        }
        .schema-hidden {
            display: none;
        }
        @media (max-width: 820px) {
            .interaction-area {
                grid-template-columns: 1fr;
            }
            .footer-inner {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.2rem;
            }
            .link-inset {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 640px) {
            .header-inner {
                flex-wrap: wrap;
            }
            .main-nav {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #141a24;
                padding: 16px 0 12px;
                border-top: 1px solid #2a3546;
                margin-top: 8px;
                gap: 4px;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 10px 16px;
                font-size: 1rem;
                width: 100%;
            }
            .hamburger {
                display: block;
            }
            .nav-overlay {
                display: none;
                position: fixed;
                inset: 0;
                background: rgba(0, 0, 0, 0.3);
                z-index: -1;
            }
            .nav-overlay.open {
                display: block;
            }
            .link-inset {
                grid-template-columns: 1fr;
            }
            h1 {
                font-size: 1.7rem;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form button {
                width: 100%;
            }
            .rating-box,
            .comment-box {
                padding: 18px 16px;
            }
            .container {
                padding: 0 14px;
            }
        }
        @media (min-width: 641px) {
            .main-nav {
                display: flex !important;
            }
            .hamburger {
                display: none !important;
            }
        }
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #0b0e14;
        }
        ::-webkit-scrollbar-thumb {
            background: #2a3546;
            border-radius: 4px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #3e4d63;
        }
        :focus-visible {
            outline: 2px solid #f0c94b;
            outline-offset: 2px;
        }
