* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            background: #0d0d0d;
            color: #e8e8e8;
            line-height: 1.8;
            min-height: 100vh;
        }
        a {
            color: #ff8c00;
            text-decoration: none;
            transition: color .25s;
        }
        a:hover,
        a:focus-visible {
            color: #ffb347;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(145deg, #1a1a2e 0%, #16213e 100%);
            padding: 16px 0;
            border-bottom: 3px solid #ff8c00;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 30px rgba(0, 0, 0, .6);
        }
        .header-inner {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #ff8c00, #ffb347);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: none;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .my-logo i {
            -webkit-text-fill-color: #ff8c00;
            font-size: 2rem;
        }
        .my-logo:hover {
            opacity: .85;
            text-decoration: none;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.6rem;
            cursor: pointer;
            padding: 4px 12px;
            border-radius: 6px;
            transition: background .2s;
        }
        .nav-toggle:hover {
            background: rgba(255, 140, 0, .2);
        }
        .primary-nav {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 8px 20px;
        }
        .primary-nav a {
            color: #ddd;
            font-weight: 500;
            font-size: .95rem;
            padding: 6px 0;
            border-bottom: 2px solid transparent;
            transition: all .25s;
        }
        .primary-nav a:hover,
        .primary-nav a.active {
            color: #ff8c00;
            border-bottom-color: #ff8c00;
            text-decoration: none;
        }
        .breadcrumb {
            padding: 12px 0 6px;
            font-size: .85rem;
            color: #aaa;
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
        }
        .breadcrumb a {
            color: #ff8c00;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb span {
            color: #ccc;
        }
        main {
            padding: 30px 0 60px;
        }
        h1 {
            font-size: 2.6rem;
            font-weight: 800;
            color: #ff8c00;
            margin: 20px 0 16px;
            line-height: 1.2;
            letter-spacing: -0.5px;
        }
        h2 {
            font-size: 1.9rem;
            font-weight: 700;
            color: #ffb347;
            margin: 48px 0 18px;
            padding-bottom: 8px;
            border-bottom: 2px solid #333;
            line-height: 1.3;
        }
        h3 {
            font-size: 1.4rem;
            font-weight: 600;
            color: #ffcc80;
            margin: 32px 0 14px;
            line-height: 1.3;
        }
        h4 {
            font-size: 1.15rem;
            font-weight: 600;
            color: #ffe0b2;
            margin: 24px 0 10px;
            line-height: 1.4;
        }
        p {
            margin-bottom: 18px;
            font-size: 1.05rem;
            color: #d4d4d4;
        }
        .content-card {
            background: #1a1a2e;
            border-radius: 16px;
            padding: 30px 28px;
            margin-bottom: 32px;
            border-left: 4px solid #ff8c00;
            box-shadow: 0 8px 32px rgba(0, 0, 0, .4);
        }
        .content-card p:last-child {
            margin-bottom: 0;
        }
        .highlight {
            background: rgba(255, 140, 0, .12);
            padding: 2px 8px;
            border-radius: 4px;
            font-weight: 600;
            color: #ffb347;
        }
        .badge {
            display: inline-block;
            background: #ff8c00;
            color: #0d0d0d;
            padding: 2px 14px;
            border-radius: 20px;
            font-size: .75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: .5px;
        }
        .emoji-big {
            font-size: 1.4rem;
            margin-right: 6px;
        }
        .last-updated {
            font-size: .85rem;
            color: #999;
            margin: 8px 0 20px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .last-updated i {
            color: #ff8c00;
        }
        .featured-img-wrapper {
            margin: 30px 0 24px;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 40px rgba(0, 0, 0, .5);
        }
        .featured-img-wrapper img {
            width: 100%;
            height: auto;
            max-height: 500px;
            object-fit: cover;
        }
        .img-caption {
            font-size: .85rem;
            color: #999;
            text-align: center;
            margin-top: 8px;
            font-style: italic;
        }
        .search-section {
            background: #1a1a2e;
            border-radius: 16px;
            padding: 28px 24px;
            margin: 32px 0;
            border: 1px solid #333;
        }
        .search-section form {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            align-items: center;
        }
        .search-section input[type="text"] {
            flex: 1;
            min-width: 200px;
            padding: 14px 18px;
            border-radius: 30px;
            border: 1px solid #444;
            background: #0d0d0d;
            color: #fff;
            font-size: 1rem;
            outline: none;
            transition: border .3s;
        }
        .search-section input[type="text"]:focus {
            border-color: #ff8c00;
        }
        .search-section button {
            padding: 14px 32px;
            border-radius: 30px;
            border: none;
            background: linear-gradient(135deg, #ff8c00, #e67e00);
            color: #fff;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: transform .2s, box-shadow .2s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-section button:hover {
            transform: scale(1.02);
            box-shadow: 0 6px 24px rgba(255, 140, 0, .35);
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 28px;
            margin: 36px 0;
        }
        @media(max-width:768px) {
            .feedback-grid {
                grid-template-columns: 1fr;
            }
        }
        .comment-box,
        .rating-box {
            background: #1a1a2e;
            border-radius: 16px;
            padding: 24px 22px;
            border: 1px solid #2a2a3e;
        }
        .comment-box h3,
        .rating-box h3 {
            margin-top: 0;
            font-size: 1.3rem;
        }
        .comment-box textarea {
            width: 100%;
            padding: 14px;
            border-radius: 12px;
            border: 1px solid #444;
            background: #0d0d0d;
            color: #fff;
            font-size: .95rem;
            resize: vertical;
            min-height: 110px;
            font-family: inherit;
            outline: none;
            transition: border .3s;
        }
        .comment-box textarea:focus {
            border-color: #ff8c00;
        }
        .comment-box input[type="text"] {
            width: 100%;
            padding: 12px 14px;
            border-radius: 12px;
            border: 1px solid #444;
            background: #0d0d0d;
            color: #fff;
            font-size: .95rem;
            outline: none;
            transition: border .3s;
            margin: 8px 0;
        }
        .comment-box input[type="text"]:focus {
            border-color: #ff8c00;
        }
        .comment-box button,
        .rating-box button {
            padding: 12px 28px;
            border-radius: 30px;
            border: none;
            background: linear-gradient(135deg, #ff8c00, #e67e00);
            color: #fff;
            font-weight: 600;
            font-size: .95rem;
            cursor: pointer;
            transition: transform .2s, box-shadow .2s;
            margin-top: 10px;
            width: 100%;
        }
        .comment-box button:hover,
        .rating-box button:hover {
            transform: scale(1.01);
            box-shadow: 0 6px 24px rgba(255, 140, 0, .3);
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 6px;
            margin: 12px 0;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 2rem;
            color: #555;
            cursor: pointer;
            transition: color .2s, transform .15s;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #ff8c00;
            transform: scale(1.05);
        }
        .rating-value {
            font-size: .9rem;
            color: #aaa;
            margin-top: 4px;
        }
        .link-group {
            background: #1a1a2e;
            border-radius: 12px;
            padding: 20px 22px;
            margin: 24px 0;
            border: 1px solid #2a2a3e;
        }
        .link-group h4 {
            margin-top: 0;
            color: #ffcc80;
        }
        .link-group ul {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 10px 18px;
            padding: 0;
        }
        .link-group li::before {
            content: "🎮 ";
            font-size: .8rem;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 24px 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            background: #1a1a2e;
            border-radius: 12px;
            overflow: hidden;
            font-size: .95rem;
        }
        th {
            background: #ff8c00;
            color: #0d0d0d;
            padding: 14px 16px;
            text-align: left;
            font-weight: 700;
        }
        td {
            padding: 12px 16px;
            border-bottom: 1px solid #2a2a3e;
            color: #ccc;
        }
        tr:hover td {
            background: rgba(255, 140, 0, .06);
        }
        .site-footer {
            background: linear-gradient(145deg, #0d0d0d, #1a1a2e);
            border-top: 3px solid #ff8c00;
            padding: 40px 0 24px;
            margin-top: 40px;
        }
        .footer-inner {
            display: flex;
            flex-wrap: wrap;
            gap: 32px;
            justify-content: space-between;
        }
        .footer-col {
            flex: 1 1 220px;
        }
        .footer-col h4 {
            color: #ffb347;
            margin-bottom: 12px;
            font-size: 1.1rem;
        }
        .footer-col a {
            display: block;
            padding: 4px 0;
            font-size: .9rem;
        }
        friend-link {
            display: block;
            margin: 16px 0 8px;
            padding: 16px 20px;
            background: #1a1a2e;
            border-radius: 12px;
            border-left: 4px solid #ff8c00;
        }
        friend-link a {
            display: inline-block;
            margin: 4px 16px 4px 0;
            font-size: .9rem;
        }
        .copyright {
            text-align: center;
            padding-top: 24px;
            border-top: 1px solid #222;
            margin-top: 24px;
            font-size: .85rem;
            color: #888;
        }
        .copyright strong {
            color: #ffb347;
        }
        @media(max-width:768px) {
            .nav-toggle {
                display: block;
            }
            .primary-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: flex-start;
                padding: 12px 0 4px;
                gap: 4px;
            }
            .primary-nav.open {
                display: flex;
            }
            .primary-nav a {
                padding: 10px 0;
                width: 100%;
                border-bottom: 1px solid #222;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            h3 {
                font-size: 1.15rem;
            }
            .content-card {
                padding: 18px 16px;
            }
            .site-header .header-inner {
                align-items: center;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .search-section form {
                flex-direction: column;
            }
            .search-section input[type="text"] {
                min-width: auto;
                width: 100%;
            }
            .search-section button {
                width: 100%;
                justify-content: center;
            }
        }
        @media(max-width:480px) {
            .container {
                padding: 0 12px;
            }
            .content-card {
                padding: 14px 12px;
            }
            .star-rating label {
                font-size: 1.6rem;
            }
        }
        .content-card,
        .search-section,
        .comment-box,
        .rating-box,
        .link-group {
            animation: fadeUp .6s ease-out both;
        }
        @keyframes fadeUp {
            0% {
                opacity: 0;
                transform: translateY(20px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }
        .no-animation {
            animation: none;
        }
