        *,
        *::before,
        *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            background: #0f0f12;
            color: #e8e6e3;
            line-height: 1.7;
            font-size: 16px;
            padding: 0 16px;
        }
        a {
            color: #f5c542;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover,
        a:focus {
            color: #ffd966;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 16px;
        }
        .site-header {
            padding: 20px 0 10px;
            border-bottom: 2px solid #2a2a32;
            position: relative;
            background: #0f0f12;
        }
        .header-top {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #f5c542, #f09b22);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 12px rgba(245, 197, 66, 0.15);
            font-style: italic;
            display: inline-block;
        }
        .my-logo:hover {
            text-decoration: none;
            opacity: 0.9;
        }
        .logo-sub {
            font-size: 0.75rem;
            color: #888;
            display: block;
            letter-spacing: 2px;
            font-weight: 300;
            -webkit-text-fill-color: #888;
        }
        .main-nav {
            display: flex;
            gap: 24px;
            flex-wrap: wrap;
            align-items: center;
        }
        .main-nav a {
            color: #ccc;
            font-weight: 500;
            font-size: 0.95rem;
            padding: 4px 0;
            border-bottom: 2px solid transparent;
            transition: 0.2s;
        }
        .main-nav a:hover,
        .main-nav a.active {
            color: #f5c542;
            border-bottom-color: #f5c542;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #f5c542;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 4px 8px;
        }
        #nav-toggle {
            display: none;
        }
        .nav-overlay {
            display: none;
        }
        .breadcrumb {
            padding: 14px 0 6px;
            font-size: 0.85rem;
            color: #999;
            display: flex;
            flex-wrap: wrap;
            gap: 6px 10px;
            list-style: none;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 8px;
            color: #666;
        }
        .breadcrumb a {
            color: #bbb;
        }
        .breadcrumb a:hover {
            color: #f5c542;
        }
        .breadcrumb .current {
            color: #f5c542;
            font-weight: 500;
        }
        main {
            padding: 30px 0 50px;
        }
        h1 {
            font-size: 2.8rem;
            font-weight: 800;
            line-height: 1.2;
            margin: 0 0 16px;
            background: linear-gradient(135deg, #f5c542, #e07c1f);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.5px;
        }
        h2 {
            font-size: 2rem;
            font-weight: 700;
            margin: 48px 0 16px;
            color: #f0c850;
            border-left: 5px solid #f5c542;
            padding-left: 18px;
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin: 32px 0 12px;
            color: #e8d5a0;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
            margin: 24px 0 10px;
            color: #d4c088;
        }
        p {
            margin: 0 0 18px;
            font-size: 1.05rem;
            color: #d5d3d0;
        }
        .content-block {
            background: #1a1a24;
            border-radius: 14px;
            padding: 28px 30px;
            margin: 30px 0;
            border: 1px solid #2c2c3a;
        }
        .feature-image {
            margin: 28px 0;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
        }
        .feature-image img {
            width: 100%;
            object-fit: cover;
        }
        .feature-image figcaption {
            padding: 10px 16px;
            font-size: 0.9rem;
            color: #aaa;
            background: #1a1a24;
            text-align: center;
            font-style: italic;
        }
        .game-item {
            padding: 20px 0;
            border-bottom: 1px solid #2a2a36;
        }
        .game-item:last-child {
            border-bottom: none;
        }
        .game-item h3 {
            margin-top: 0;
        }
        .game-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 16px 30px;
            font-size: 0.95rem;
            color: #aaa;
            margin-bottom: 10px;
        }
        .game-meta span {
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .game-meta i {
            color: #f5c542;
            width: 18px;
        }
        .search-box {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            max-width: 580px;
            margin: 20px 0 30px;
        }
        .search-box input {
            flex: 1;
            min-width: 200px;
            padding: 14px 20px;
            border: 2px solid #333;
            border-radius: 40px;
            background: #1a1a24;
            color: #eee;
            font-size: 1rem;
            outline: none;
            transition: 0.3s;
        }
        .search-box input:focus {
            border-color: #f5c542;
            background: #22222e;
        }
        .search-box button {
            padding: 14px 32px;
            border: none;
            border-radius: 40px;
            background: linear-gradient(135deg, #f5c542, #e07c1f);
            color: #0f0f12;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: 0.25s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-box button:hover {
            transform: scale(1.03);
            box-shadow: 0 4px 20px rgba(245, 197, 66, 0.3);
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 28px;
            margin: 36px 0;
        }
        .feedback-card {
            background: #1a1a24;
            border-radius: 14px;
            padding: 24px 26px;
            border: 1px solid #2c2c3a;
        }
        .feedback-card h3 {
            margin-top: 0;
            font-size: 1.3rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .feedback-card textarea,
        .feedback-card input {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid #333;
            border-radius: 10px;
            background: #101018;
            color: #eee;
            font-size: 0.95rem;
            resize: vertical;
            outline: none;
            transition: 0.3s;
            font-family: inherit;
            margin: 6px 0 12px;
        }
        .feedback-card textarea:focus,
        .feedback-card input:focus {
            border-color: #f5c542;
        }
        .feedback-card textarea {
            min-height: 90px;
        }
        .feedback-card button {
            padding: 12px 28px;
            border: none;
            border-radius: 30px;
            background: #f5c542;
            color: #0f0f12;
            font-weight: 700;
            font-size: 0.95rem;
            cursor: pointer;
            transition: 0.25s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .feedback-card button:hover {
            background: #ffd966;
            transform: scale(1.02);
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 4px;
            margin: 8px 0 14px;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 1.8rem;
            color: #444;
            cursor: pointer;
            transition: 0.2s;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #f5c542;
        }
        .star-rating label i {
            pointer-events: none;
        }
        .site-footer {
            border-top: 2px solid #2a2a32;
            padding: 36px 0 30px;
            margin-top: 40px;
            font-size: 0.95rem;
            color: #999;
        }
        .footer-inner {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 24px;
        }
        friend-link {
            display: block;
            margin: 16px 0 8px;
            font-weight: 600;
            color: #ccc;
        }
        friend-link a {
            display: inline-block;
            margin-right: 20px;
            margin-bottom: 6px;
            color: #bbb;
            font-weight: 400;
        }
        friend-link a:hover {
            color: #f5c542;
        }
        .copyright {
            width: 100%;
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #2a2a32;
            margin-top: 16px;
            font-size: 0.85rem;
            color: #777;
        }
        .copyright i {
            color: #f5c542;
        }
        @media (max-width: 768px) {
            body {
                padding: 0 10px;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            h3 {
                font-size: 1.25rem;
            }
            .header-top {
                flex-wrap: wrap;
            }
            .main-nav {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #181822;
                padding: 16px 20px;
                border-radius: 12px;
                margin-top: 10px;
                gap: 12px;
                border: 1px solid #2c2c3a;
            }
            .main-nav a {
                font-size: 1rem;
                padding: 8px 0;
                border-bottom: 1px solid #2a2a32;
            }
            .hamburger {
                display: block;
            }
            #nav-toggle:checked+.hamburger+.main-nav {
                display: flex;
            }
            .feedback-grid {
                grid-template-columns: 1fr;
            }
            .content-block {
                padding: 18px 16px;
            }
            .game-meta {
                flex-direction: column;
                gap: 4px;
            }
            .search-box {
                flex-direction: column;
            }
            .search-box button {
                justify-content: center;
            }
            .footer-inner {
                flex-direction: column;
                text-align: center;
            }
            friend-link a {
                margin: 0 10px 8px;
            }
        }
        @media (max-width: 480px) {
            h1 {
                font-size: 1.6rem;
            }
            .my-logo {
                font-size: 1.5rem;
            }
            .container {
                padding: 0 6px;
            }
        }
        .highlight {
            color: #f5c542;
            font-weight: 600;
        }
        .badge {
            display: inline-block;
            padding: 2px 14px;
            border-radius: 30px;
            background: #2a2a36;
            color: #f5c542;
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 0.5px;
        }
        .last-updated {
            text-align: right;
            font-size: 0.85rem;
            color: #888;
            margin: 20px 0 0;
            padding-top: 12px;
            border-top: 1px solid #2a2a32;
        }
        .last-updated i {
            margin-right: 6px;
        }
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #0f0f12;
        }
        ::-webkit-scrollbar-thumb {
            background: #3a3a4a;
            border-radius: 10px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #f5c542;
        }
