        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
            background: #f6f4f0;
            color: #1e1e1e;
            line-height: 1.7;
            font-size: 1.05rem;
            padding: 0;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        a {
            color: #b3452b;
            text-decoration: none;
            transition: color 0.2s, background 0.2s;
        }
        a:hover {
            color: #7a2b1a;
            text-decoration: underline;
        }
        ul,
        ol {
            padding-left: 1.4rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.25;
            margin-top: 1.8rem;
            margin-bottom: 0.6rem;
            color: #1f2a3a;
        }
        h1 {
            font-size: 2.6rem;
            margin-top: 0.4rem;
        }
        h2 {
            font-size: 2rem;
            border-bottom: 3px solid #e4dcd2;
            padding-bottom: 0.3rem;
        }
        h3 {
            font-size: 1.5rem;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
        }
        p {
            margin-bottom: 1.1rem;
        }
        .container {
            max-width: 1160px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: #1f2a3a;
            color: #fff;
            padding: 0.6rem 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 4px 18px rgba(0, 0, 0, 0.12);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            max-width: 1160px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: -0.02em;
            color: #f5d742;
            text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
            transition: transform 0.2s;
            display: inline-block;
        }
        .my-logo:hover {
            transform: scale(1.03);
            color: #ffe066;
            text-decoration: none;
        }
        .my-logo small {
            font-size: 0.75rem;
            font-weight: 400;
            color: #cbd5e1;
            display: block;
            letter-spacing: 0.4px;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid rgba(255, 255, 255, 0.3);
            color: #fff;
            font-size: 1.6rem;
            padding: 6px 14px;
            border-radius: 8px;
            cursor: pointer;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        .main-nav {
            display: flex;
            gap: 1.2rem;
            flex-wrap: wrap;
            align-items: center;
        }
        .main-nav a {
            color: #e9edf2;
            font-weight: 500;
            font-size: 0.98rem;
            padding: 0.3rem 0.1rem;
            border-bottom: 2px solid transparent;
            transition: border-color 0.2s, color 0.2s;
        }
        .main-nav a:hover {
            border-bottom-color: #f5d742;
            color: #f5d742;
            text-decoration: none;
        }
        .main-nav a i {
            margin-right: 5px;
        }
        .breadcrumb {
            background: #ece8e1;
            padding: 0.6rem 0;
            font-size: 0.92rem;
            color: #4a4a4a;
        }
        .breadcrumb .container {
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem 0.6rem;
        }
        .breadcrumb a {
            color: #b3452b;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb span {
            color: #6b6b6b;
        }
        .hero {
            background: linear-gradient(145deg, #f0ebe3 0%, #e4dcd2 100%);
            padding: 2.8rem 0 2.2rem;
            border-bottom: 1px solid #d6ccc1;
        }
        .hero .container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2.5rem;
            align-items: center;
        }
        .hero h1 {
            font-size: 2.8rem;
            margin-top: 0;
        }
        .hero h1 i {
            color: #b3452b;
        }
        .hero p {
            font-size: 1.15rem;
            color: #2e2e2e;
            max-width: 600px;
        }
        .hero-img {
            border-radius: 18px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            background: #d9cfc3;
            min-height: 220px;
            object-fit: cover;
            width: 100%;
        }
        .section {
            padding: 2.8rem 0;
        }
        .section-alt {
            background: #faf8f6;
        }
        .section-dark {
            background: #1f2a3a;
            color: #e9edf2;
        }
        .section-dark h2,
        .section-dark h3,
        .section-dark h4 {
            color: #f5d742;
        }
        .section-dark a {
            color: #f5d742;
        }
        .section-dark a:hover {
            color: #ffe680;
        }
        .grid-2 {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
        }
        .grid-3 {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.8rem;
        }
        .flex-center {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 1.2rem;
        }
        .card {
            background: #fff;
            border-radius: 16px;
            padding: 1.6rem 1.8rem;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
            transition: transform 0.2s, box-shadow 0.2s;
            border: 1px solid #ede8e1;
        }
        .card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 28px rgba(0, 0, 0, 0.09);
        }
        .card h3 {
            margin-top: 0;
        }
        .card i {
            color: #b3452b;
            margin-right: 6px;
        }
        .search-box {
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem;
            max-width: 580px;
            margin: 0.6rem 0 1.2rem;
        }
        .search-box input {
            flex: 1;
            min-width: 180px;
            padding: 0.8rem 1.2rem;
            border: 2px solid #d6ccc1;
            border-radius: 40px;
            font-size: 1rem;
            background: #fff;
            transition: border-color 0.2s;
        }
        .search-box input:focus {
            border-color: #b3452b;
            outline: none;
            box-shadow: 0 0 0 4px rgba(179, 69, 43, 0.15);
        }
        .search-box button {
            padding: 0.8rem 2rem;
            background: #b3452b;
            color: #fff;
            border: none;
            border-radius: 40px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
        }
        .search-box button:hover {
            background: #7a2b1a;
            transform: scale(1.02);
        }
        .comment-area,
        .score-area {
            background: #fff;
            border-radius: 18px;
            padding: 1.8rem 2rem;
            margin-top: 1.2rem;
            border: 1px solid #e4dcd2;
        }
        .comment-area textarea,
        .score-area select,
        .score-area input {
            width: 100%;
            padding: 0.8rem 1rem;
            border: 2px solid #d6ccc1;
            border-radius: 12px;
            font-size: 1rem;
            font-family: inherit;
            transition: border-color 0.2s;
        }
        .comment-area textarea:focus,
        .score-area select:focus,
        .score-area input:focus {
            border-color: #b3452b;
            outline: none;
        }
        .comment-area textarea {
            min-height: 110px;
            resize: vertical;
        }
        .btn-primary {
            background: #b3452b;
            color: #fff;
            border: none;
            padding: 0.7rem 2rem;
            border-radius: 40px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            display: inline-block;
        }
        .btn-primary:hover {
            background: #7a2b1a;
            transform: scale(1.02);
            text-decoration: none;
        }
        .btn-primary i {
            margin-right: 6px;
        }
        .site-footer {
            background: #141c28;
            color: #cbd5e1;
            padding: 2.8rem 0 1.8rem;
            font-size: 0.95rem;
        }
        .site-footer .container {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 2rem;
        }
        .site-footer a {
            color: #f5d742;
        }
        .site-footer a:hover {
            color: #ffe680;
            text-decoration: underline;
        }
        .site-footer h4 {
            color: #f5d742;
            margin-top: 0;
            font-size: 1.1rem;
        }
        .footer-bottom {
            grid-column: 1 / -1;
            border-top: 1px solid #2a3648;
            padding-top: 1.5rem;
            margin-top: 1rem;
            text-align: center;
            font-size: 0.88rem;
            color: #8a9bb0;
        }
        .friend-list {
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem 1.4rem;
            list-style: none;
            padding: 0;
        }
        .friend-list li::before {
            content: "🔗 ";
            font-size: 0.85rem;
        }
        @media (max-width: 860px) {
            .hero .container {
                grid-template-columns: 1fr;
                text-align: center;
            }
            .hero p {
                max-width: 100%;
            }
            .grid-2,
            .grid-3 {
                grid-template-columns: 1fr;
            }
            .site-footer .container {
                grid-template-columns: 1fr;
                text-align: center;
            }
            .friend-list {
                justify-content: center;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                padding: 1rem 0 0.4rem;
                gap: 0.6rem;
            }
            .main-nav.open {
                display: flex;
            }
            .nav-toggle {
                display: inline-block;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            .search-box button {
                width: 100%;
            }
            .comment-area,
            .score-area {
                padding: 1.2rem;
            }
        }
        @media (max-width: 480px) {
            .my-logo {
                font-size: 1.4rem;
            }
            .container {
                padding: 0 14px;
            }
            .card {
                padding: 1.2rem;
            }
        }
        .tag {
            display: inline-block;
            background: #e4dcd2;
            padding: 0.15rem 0.9rem;
            border-radius: 20px;
            font-size: 0.82rem;
            font-weight: 600;
            color: #1f2a3a;
        }
        .emoji-lg {
            font-size: 1.8rem;
        }
        .last-updated {
            font-size: 0.9rem;
            color: #6b6b6b;
            margin-top: 0.2rem;
            display: block;
        }
        .interview-block {
            border-left: 5px solid #b3452b;
            padding-left: 1.4rem;
            margin: 1.4rem 0;
            background: #f9f6f2;
            border-radius: 0 12px 12px 0;
            padding: 1rem 1.4rem;
        }
        .data-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
            gap: 1rem;
            margin: 1.2rem 0;
        }
        .data-item {
            background: #f0ebe3;
            border-radius: 12px;
            padding: 0.9rem 1.2rem;
            text-align: center;
            font-weight: 600;
        }
        .data-item span {
            display: block;
            font-size: 1.8rem;
            color: #b3452b;
            font-weight: 800;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 1.2rem 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            background: #fff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
        }
        th,
        td {
            padding: 0.7rem 1rem;
            border-bottom: 1px solid #e4dcd2;
            text-align: left;
        }
        th {
            background: #1f2a3a;
            color: #f5d742;
            font-weight: 600;
        }
        tr:last-child td {
            border-bottom: none;
        }
        .tip-box {
            background: #eef6f0;
            border-radius: 16px;
            padding: 1.2rem 1.6rem;
            border-left: 6px solid #2d8f5c;
            margin: 1.2rem 0;
        }
        .tip-box i {
            color: #2d8f5c;
        }
        .inline-link-list {
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem 1.2rem;
            padding: 0.4rem 0 0.8rem;
            list-style: none;
        }
        .inline-link-list li::before {
            content: "🎮 ";
            font-size: 0.8rem;
        }
        .star-rating {
            display: flex;
            gap: 4px;
            font-size: 1.4rem;
            color: #e4a722;
        }
        .star-rating i {
            cursor: pointer;
            transition: transform 0.1s;
        }
        .star-rating i:hover {
            transform: scale(1.2);
        }
