        *,
        *::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, sans-serif;
            line-height: 1.7;
            color: #1e1e2a;
            background: #f8f7fc;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px 40px;
            background-image: radial-gradient(circle at 10% 20%, rgba(255, 215, 0, 0.03) 0%, transparent 50%);
        }
        a {
            color: #b8860b;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #daa520;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 16px;
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
        }
        ul,
        ol {
            padding-left: 1.8rem;
        }
        li {
            margin-bottom: 0.5rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            line-height: 1.25;
            color: #1a1a2e;
            font-weight: 700;
            letter-spacing: -0.01em;
        }
        h1 {
            font-size: 2.4rem;
            margin-bottom: 1.2rem;
            border-left: 6px solid #f5c842;
            padding-left: 1rem;
            background: linear-gradient(135deg, #1a1a2e 0%, #3a3a5e 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        h2 {
            font-size: 1.8rem;
            margin: 2.2rem 0 1rem;
            padding-bottom: 0.4rem;
            border-bottom: 3px solid #f0d68a;
            display: inline-block;
        }
        h3 {
            font-size: 1.35rem;
            margin: 1.8rem 0 0.8rem;
            color: #2d2d44;
        }
        h4 {
            font-size: 1.1rem;
            margin: 1.2rem 0 0.5rem;
            color: #4a4a6a;
            font-weight: 600;
        }
        p {
            margin-bottom: 1.2rem;
            color: #2e2e3e;
        }
        .container {
            background: #ffffff;
            border-radius: 28px;
            padding: 30px 35px 40px;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.04);
            margin-top: 20px;
        }
        .site-header {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding: 18px 0 10px;
            border-bottom: 2px solid #f0ecf6;
            position: relative;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            background: linear-gradient(145deg, #b8860b, #f5c842);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.5px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .my-logo i {
            -webkit-text-fill-color: #f5c842;
            font-size: 1.6rem;
        }
        .my-logo:hover {
            opacity: 0.85;
            text-decoration: none;
        }
        .nav-wrapper {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .nav-list {
            display: flex;
            list-style: none;
            gap: 6px 18px;
            flex-wrap: wrap;
            padding: 0;
            margin: 0;
        }
        .nav-list li a {
            font-weight: 500;
            padding: 6px 10px;
            border-radius: 40px;
            font-size: 0.95rem;
            color: #2e2e4a;
            transition: all 0.2s;
        }
        .nav-list li a:hover {
            background: #f5f0e8;
            color: #b8860b;
            text-decoration: none;
        }
        .nav-list li a i {
            margin-right: 6px;
            font-size: 0.9rem;
            color: #b8860b;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #1a1a2e;
            padding: 4px 10px;
            border-radius: 10px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: #f0ecf6;
        }
        #nav-toggle {
            display: none;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            padding: 12px 0 8px;
            margin: 0 0 10px;
            font-size: 0.9rem;
            color: #6a6a82;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin: 0 10px;
            color: #b8860b;
            font-weight: 700;
        }
        .breadcrumb a {
            color: #6a6a82;
        }
        .breadcrumb a:hover {
            color: #b8860b;
        }
        .breadcrumb .active {
            color: #b8860b;
            font-weight: 600;
        }
        .search-section {
            background: #f5f2fc;
            border-radius: 60px;
            padding: 14px 24px;
            margin: 20px 0 30px;
            display: flex;
            align-items: center;
            gap: 12px;
            flex-wrap: wrap;
            border: 1px solid #e8e2f0;
        }
        .search-section i {
            font-size: 1.3rem;
            color: #b8860b;
        }
        .search-section form {
            display: flex;
            flex: 1;
            gap: 10px;
            flex-wrap: wrap;
        }
        .search-section input[type="text"] {
            flex: 1;
            min-width: 160px;
            padding: 12px 18px;
            border: none;
            border-radius: 40px;
            background: white;
            font-size: 1rem;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
            outline: none;
            transition: box-shadow 0.2s;
        }
        .search-section input[type="text"]:focus {
            box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.25);
        }
        .search-section button {
            background: #b8860b;
            border: none;
            color: white;
            padding: 12px 28px;
            border-radius: 40px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.95rem;
        }
        .search-section button:hover {
            background: #daa520;
            transform: scale(1.02);
        }
        .featured-img-wrap {
            margin: 30px 0 30px;
            text-align: center;
        }
        .featured-img-wrap img {
            width: 100%;
            max-width: 820px;
            border-radius: 20px;
            margin: 0 auto;
        }
        .featured-img-wrap figcaption {
            font-size: 0.85rem;
            color: #6a6a82;
            margin-top: 8px;
            font-style: italic;
        }
        .game-links-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
            gap: 12px;
            margin: 28px 0 20px;
            padding: 0;
        }
        .game-links-grid a {
            display: flex;
            align-items: center;
            gap: 10px;
            background: #faf8ff;
            padding: 12px 16px;
            border-radius: 40px;
            border: 1px solid #ede8f4;
            font-weight: 500;
            font-size: 0.92rem;
            transition: all 0.2s;
            color: #2d2d44;
        }
        .game-links-grid a i {
            color: #b8860b;
            font-size: 1rem;
            width: 22px;
            text-align: center;
        }
        .game-links-grid a:hover {
            background: #b8860b;
            color: white;
            border-color: #b8860b;
            text-decoration: none;
            transform: translateY(-2px);
            box-shadow: 0 6px 18px rgba(184, 134, 11, 0.2);
        }
        .game-links-grid a:hover i {
            color: white;
        }
        .form-card {
            background: #faf8ff;
            border-radius: 24px;
            padding: 24px 28px;
            margin: 30px 0 20px;
            border: 1px solid #ece6f4;
        }
        .form-card h3 {
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .form-card form {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }
        .form-card input,
        .form-card textarea,
        .form-card select {
            padding: 14px 18px;
            border: 1px solid #ddd8e8;
            border-radius: 16px;
            font-size: 1rem;
            background: white;
            outline: none;
            transition: border 0.2s;
            font-family: inherit;
        }
        .form-card input:focus,
        .form-card textarea:focus,
        .form-card select:focus {
            border-color: #b8860b;
            box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.12);
        }
        .form-card textarea {
            min-height: 110px;
            resize: vertical;
        }
        .form-card .btn-submit {
            background: #b8860b;
            color: white;
            border: none;
            padding: 14px 30px;
            border-radius: 40px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            align-self: flex-start;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .form-card .btn-submit:hover {
            background: #daa520;
            transform: scale(1.02);
        }
        .rating-stars {
            display: flex;
            gap: 6px;
            font-size: 1.6rem;
            color: #ddd8e8;
            cursor: pointer;
            direction: rtl;
        }
        .rating-stars input {
            display: none;
        }
        .rating-stars label {
            cursor: pointer;
            transition: color 0.15s;
            color: #ddd8e8;
        }
        .rating-stars label:hover,
        .rating-stars label:hover~label,
        .rating-stars input:checked~label {
            color: #f5c842;
        }
        .site-footer {
            margin-top: 50px;
            padding-top: 30px;
            border-top: 2px solid #f0ecf6;
        }
        friend-link {
            display: block;
            background: #f5f2fc;
            border-radius: 20px;
            padding: 20px 24px;
            margin-bottom: 24px;
        }
        friend-link::before {
            content: "🔗 Friendly Links";
            display: block;
            font-weight: 700;
            font-size: 1.1rem;
            margin-bottom: 12px;
            color: #1a1a2e;
        }
        friend-link a {
            display: inline-block;
            margin: 4px 14px 4px 0;
            padding: 6px 14px;
            background: white;
            border-radius: 30px;
            font-size: 0.9rem;
            border: 1px solid #e8e2f0;
            transition: all 0.2s;
        }
        friend-link a:hover {
            background: #b8860b;
            color: white;
            border-color: #b8860b;
            text-decoration: none;
        }
        .copyright {
            text-align: center;
            color: #6a6a82;
            font-size: 0.9rem;
            padding: 18px 0 8px;
            border-top: 1px solid #f0ecf6;
            margin-top: 20px;
        }
        .copyright strong {
            color: #2e2e4a;
        }
        @media (max-width: 820px) {
            body {
                padding: 0 12px 30px;
            }
            .container {
                padding: 18px 16px 30px;
                border-radius: 20px;
            }
            h1 {
                font-size: 1.8rem;
                padding-left: 0.7rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            h3 {
                font-size: 1.15rem;
            }
            .my-logo {
                font-size: 1.5rem;
            }
            .hamburger {
                display: block;
            }
            .nav-list {
                display: none;
                flex-direction: column;
                width: 100%;
                background: white;
                border-radius: 20px;
                padding: 12px 8px;
                box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
                margin-top: 10px;
                border: 1px solid #f0ecf6;
            }
            .nav-list li a {
                display: block;
                padding: 12px 16px;
                border-radius: 12px;
            }
            #nav-toggle:checked+.hamburger+.nav-list {
                display: flex;
            }
            #nav-toggle:checked+.hamburger .fa-bars::before {
                content: "\f00d";
            }
            .nav-wrapper {
                flex-wrap: wrap;
                width: 100%;
            }
            .search-section {
                padding: 12px 16px;
                border-radius: 30px;
            }
            .search-section form {
                flex-direction: column;
            }
            .search-section button {
                justify-content: center;
                width: 100%;
            }
            .game-links-grid {
                grid-template-columns: 1fr 1fr;
            }
            .form-card {
                padding: 18px 16px;
            }
            .rating-stars {
                font-size: 1.4rem;
            }
        }
        @media (max-width: 480px) {
            .game-links-grid {
                grid-template-columns: 1fr;
            }
            h1 {
                font-size: 1.5rem;
            }
            .breadcrumb {
                font-size: 0.8rem;
            }
            .my-logo {
                font-size: 1.2rem;
            }
            .my-logo i {
                font-size: 1.2rem;
            }
        }
        .last-update {
            display: inline-block;
            background: #f5f2fc;
            padding: 4px 16px;
            border-radius: 40px;
            font-size: 0.85rem;
            color: #6a6a82;
            margin-bottom: 18px;
        }
        .last-update i {
            margin-right: 6px;
            color: #b8860b;
        }
        .highlight-box {
            background: #fdf9ed;
            border-left: 5px solid #f5c842;
            padding: 18px 22px;
            border-radius: 16px;
            margin: 24px 0;
        }
        .pro-tip {
            background: #eef4ff;
            border-radius: 16px;
            padding: 16px 20px;
            margin: 18px 0;
            border: 1px solid #dde6f5;
        }
        .pro-tip i {
            color: #b8860b;
            margin-right: 8px;
        }
        .emoji-big {
            font-size: 1.4rem;
            margin-right: 6px;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 20px 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            background: #faf8ff;
            border-radius: 16px;
            overflow: hidden;
            font-size: 0.95rem;
        }
        th,
        td {
            padding: 12px 16px;
            text-align: left;
            border-bottom: 1px solid #ede8f4;
        }
        th {
            background: #f0ecf6;
            font-weight: 700;
            color: #1a1a2e;
        }
        tr:last-child td {
            border-bottom: none;
        }
        .schema-hidden {
            display: none;
        }
