        *,
        *::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, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
            background: #0d0f14;
            color: #e8edf5;
            line-height: 1.7;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: #8ab4ff;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover,
        a:focus-visible {
            color: #ffd866;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 600;
            line-height: 1.3;
            color: #f0f4ff;
        }
        h1 {
            font-size: 2.4rem;
            margin-bottom: 1rem;
            letter-spacing: -0.02em;
        }
        h2 {
            font-size: 1.8rem;
            margin-top: 2.5rem;
            margin-bottom: 0.75rem;
            border-bottom: 2px solid #2a3040;
            padding-bottom: 0.4rem;
        }
        h3 {
            font-size: 1.4rem;
            margin-top: 1.8rem;
            margin-bottom: 0.5rem;
        }
        h4 {
            font-size: 1.15rem;
            margin-top: 1.2rem;
            margin-bottom: 0.3rem;
            color: #c8d0e0;
        }
        p {
            margin-bottom: 1rem;
        }
        strong,
        b {
            color: #ffd866;
            font-weight: 600;
        }
        .container {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 1.2rem;
        }
        .site-header {
            background: #141820;
            border-bottom: 1px solid #2a3040;
            padding: 0.6rem 0;
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(8px);
            background-color: rgba(20, 24, 32, 0.96);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 1.6rem;
            font-weight: 700;
            background: linear-gradient(135deg, #f0c060, #d9a840);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.02em;
            text-shadow: 0 0 12px rgba(240, 192, 96, 0.15);
        }
        .my-logo a {
            color: inherit;
            text-decoration: none;
        }
        .my-logo a:hover {
            text-decoration: none;
            opacity: 0.9;
        }
        .my-logo small {
            font-size: 0.55rem;
            display: block;
            -webkit-text-fill-color: #8899bb;
            color: #8899bb;
            font-weight: 400;
            letter-spacing: 0.2px;
        }
        .main-nav {
            display: flex;
            align-items: center;
            gap: 0.3rem;
        }
        .main-nav a {
            padding: 0.5rem 1rem;
            border-radius: 6px;
            font-size: 0.9rem;
            font-weight: 500;
            color: #bcc8e0;
            transition: background 0.2s, color 0.2s;
        }
        .main-nav a:hover {
            background: #2a3345;
            color: #ffd866;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #e8edf5;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.2rem 0.6rem;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: #2a3345;
        }
        #nav-toggle {
            display: none;
        }
        .breadcrumbs {
            background: #181e28;
            padding: 0.6rem 0;
            border-bottom: 1px solid #232a38;
            font-size: 0.85rem;
        }
        .breadcrumbs ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 0.3rem 0.6rem;
            padding: 0;
        }
        .breadcrumbs li+li::before {
            content: "›";
            margin-right: 0.6rem;
            color: #607080;
        }
        .breadcrumbs a {
            color: #8ab4ff;
        }
        .breadcrumbs .current {
            color: #c8d0e0;
            font-weight: 500;
        }
        .main-content {
            flex: 1;
            padding: 2rem 0 3rem;
        }
        .post-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem 2rem;
            font-size: 0.9rem;
            color: #8899b0;
            margin-bottom: 1.8rem;
            padding: 0.6rem 1rem;
            background: #181e28;
            border-radius: 10px;
            border: 1px solid #232a38;
        }
        .post-meta .updated {
            color: #8ab4ff;
            font-weight: 500;
        }
        .featured-figure {
            margin: 1.8rem 0 2.2rem;
            border-radius: 14px;
            overflow: hidden;
            background: #181e28;
            border: 1px solid #2a3040;
        }
        .featured-figure img {
            width: 100%;
            max-height: 520px;
            object-fit: cover;
        }
        .featured-figure figcaption {
            padding: 0.6rem 1.2rem;
            font-size: 0.85rem;
            color: #8899b0;
            font-style: italic;
        }
        .info-box {
            background: #1a2230;
            border-left: 4px solid #ffd866;
            padding: 1.2rem 1.6rem;
            border-radius: 0 10px 10px 0;
            margin: 1.5rem 0;
        }
        .info-box strong {
            color: #ffd866;
        }
        .related-links {
            background: #181e28;
            border: 1px solid #2a3345;
            border-radius: 12px;
            padding: 1.2rem 1.6rem;
            margin: 1.8rem 0;
        }
        .related-links ul {
            list-style: none;
            padding: 0;
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 0.5rem 1rem;
        }
        .related-links li a {
            display: inline-block;
            padding: 0.3rem 0.2rem;
            font-size: 0.92rem;
        }
        .related-links li a::before {
            content: "🎮 ";
            font-size: 0.85rem;
        }
        .form-card {
            background: #181e28;
            border: 1px solid #2a3345;
            border-radius: 14px;
            padding: 1.6rem 2rem;
            margin: 2rem 0;
        }
        .form-card h3 {
            margin-top: 0;
            border-bottom: none;
        }
        .form-group {
            margin-bottom: 1rem;
        }
        .form-group label {
            display: block;
            font-weight: 500;
            margin-bottom: 0.3rem;
            font-size: 0.92rem;
            color: #bcc8e0;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 0.7rem 1rem;
            border-radius: 8px;
            border: 1px solid #2a3345;
            background: #0f131c;
            color: #e8edf5;
            font-size: 0.95rem;
            transition: border 0.2s, box-shadow 0.2s;
            font-family: inherit;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            border-color: #ffd866;
            outline: none;
            box-shadow: 0 0 0 3px rgba(255, 216, 102, 0.15);
        }
        .form-group textarea {
            min-height: 100px;
            resize: vertical;
        }
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.7rem 1.8rem;
            border-radius: 8px;
            border: none;
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            background: #2a4050;
            color: #e8edf5;
        }
        .btn-primary {
            background: #d9a840;
            color: #0d0f14;
        }
        .btn-primary:hover {
            background: #f0c060;
            transform: translateY(-1px);
        }
        .btn-primary:active {
            transform: scale(0.98);
        }
        .btn-outline {
            background: transparent;
            border: 1px solid #2a3345;
            color: #bcc8e0;
        }
        .btn-outline:hover {
            background: #2a3345;
            color: #ffd866;
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 0.2rem;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 1.8rem;
            color: #3a4050;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star-rating label::before {
            content: "★";
        }
        .star-rating input:checked~label {
            color: #ffd866;
        }
        .star-rating label:hover,
        .star-rating label:hover~label {
            color: #f0c060;
        }
        .site-footer {
            background: #10141c;
            border-top: 1px solid #232a38;
            padding: 2rem 0 1.5rem;
            margin-top: 2rem;
        }
        .footer-inner {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 1.5rem 2rem;
        }
        .footer-col {
            flex: 1 1 200px;
        }
        .footer-col h4 {
            color: #ffd866;
            margin-top: 0;
            margin-bottom: 0.6rem;
            font-size: 1rem;
        }
        friend-link {
            display: block;
            margin-bottom: 0.3rem;
        }
        friend-link a {
            color: #8ab4ff;
            font-size: 0.9rem;
        }
        friend-link a:hover {
            color: #ffd866;
        }
        .copyright {
            width: 100%;
            text-align: center;
            padding-top: 1.5rem;
            margin-top: 1.5rem;
            border-top: 1px solid #1e2532;
            font-size: 0.85rem;
            color: #607080;
        }
        @media (max-width: 820px) {
            .hamburger {
                display: block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                background: #141820;
                padding: 0.8rem 0 1.2rem;
                border-top: 1px solid #2a3040;
                margin-top: 0.6rem;
            }
            #nav-toggle:checked~.main-nav {
                display: flex;
            }
            .main-nav a {
                padding: 0.6rem 1rem;
                width: 100%;
                border-radius: 0;
            }
            h1 {
                font-size: 1.9rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.2rem;
            }
            .related-links ul {
                grid-template-columns: 1fr;
            }
            .form-card {
                padding: 1.2rem 1.2rem;
            }
            .post-meta {
                flex-direction: column;
                gap: 0.3rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 0.8rem;
            }
            .my-logo {
                font-size: 1.2rem;
            }
            h1 {
                font-size: 1.6rem;
            }
            .btn {
                width: 100%;
                justify-content: center;
            }
        }
        .text-center {
            text-align: center;
        }
        .mt-1 {
            margin-top: 0.8rem;
        }
        .mt-2 {
            margin-top: 1.6rem;
        }
        .mb-1 {
            margin-bottom: 0.8rem;
        }
        .flex-wrap {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem;
            align-items: center;
        }
        .gap-1 {
            gap: 0.8rem;
        }
        .badge {
            display: inline-block;
            background: #2a4050;
            padding: 0.15rem 0.7rem;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
            color: #bcc8e0;
            letter-spacing: 0.3px;
        }
        ::selection {
            background: #d9a840;
            color: #0d0f14;
        }
        :focus-visible {
            outline: 2px solid #ffd866;
            outline-offset: 2px;
        }
        a,
        button,
        .btn,
        input,
        textarea,
        select {
            transition: all 0.2s ease;
        }
