        *,
        *::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, sans-serif;
            background: #0b0e14;
            color: #e8edf2;
            line-height: 1.75;
            padding: 0;
            margin: 0;
        }
        a {
            color: #facc15;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover,
        a:focus {
            color: #ffdd57;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        li {
            margin-bottom: 0.4rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.3;
            color: #f5f9ff;
            margin-top: 1.5em;
            margin-bottom: 0.6em;
        }
        h1 {
            font-size: 2.4rem;
            margin-top: 0.4em;
        }
        h2 {
            font-size: 1.8rem;
            border-left: 5px solid #facc15;
            padding-left: 0.8rem;
        }
        h3 {
            font-size: 1.4rem;
            color: #f0f4fa;
        }
        h4 {
            font-size: 1.15rem;
            color: #dce3ed;
        }
        p {
            margin-bottom: 1.2rem;
            text-align: justify;
        }
        .container {
            max-width: 1120px;
            margin: 0 auto;
            padding: 0 1.2rem;
        }
        .site-header {
            background: #131a24;
            border-bottom: 2px solid #2a3a4a;
            padding: 0.8rem 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.8rem;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            background: linear-gradient(135deg, #facc15, #f97316);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: 1px;
            text-transform: uppercase;
            display: flex;
            align-items: center;
            gap: 0.3rem;
        }
        .my-logo i {
            -webkit-text-fill-color: #facc15;
            font-size: 1.6rem;
        }
        .my-logo small {
            font-size: 0.7rem;
            -webkit-text-fill-color: #aabbcc;
            display: block;
            font-weight: 400;
            letter-spacing: 0.5px;
        }
        .my-logo:hover {
            text-decoration: none;
            opacity: 0.92;
        }
        .nav-wrap {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .nav-list {
            display: flex;
            list-style: none;
            gap: 0.3rem;
            flex-wrap: wrap;
        }
        .nav-list li a {
            display: block;
            padding: 0.5rem 1rem;
            border-radius: 30px;
            font-size: 0.9rem;
            font-weight: 500;
            color: #cfddee;
            background: transparent;
            transition: background 0.25s, color 0.25s;
        }
        .nav-list li a:hover {
            background: #facc15;
            color: #0b0e14;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: 2px solid #facc15;
            color: #facc15;
            font-size: 1.5rem;
            padding: 0.3rem 0.7rem;
            border-radius: 8px;
            cursor: pointer;
            transition: 0.2s;
        }
        .hamburger:hover {
            background: #facc15;
            color: #0b0e14;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .nav-list {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #1a2532;
                padding: 1rem 0.5rem;
                border-radius: 12px;
                margin-top: 0.5rem;
                gap: 0.2rem;
            }
            .nav-list.open {
                display: flex;
            }
            .nav-list li a {
                padding: 0.6rem 1rem;
                border-radius: 8px;
            }
            .header-inner {
                flex-wrap: wrap;
            }
            .nav-wrap {
                width: 100%;
                flex-direction: column;
                align-items: stretch;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            h3 {
                font-size: 1.2rem;
            }
            .container {
                padding: 0 0.8rem;
            }
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            padding: 0.8rem 0 0.3rem;
            font-size: 0.85rem;
            color: #9aaec3;
            gap: 0.3rem;
        }
        .breadcrumb li+li::before {
            content: "›";
            padding: 0 0.5rem;
            color: #facc15;
        }
        .breadcrumb a {
            color: #b8ccdd;
        }
        .breadcrumb a:hover {
            color: #facc15;
        }
        .breadcrumb .active {
            color: #facc15;
            font-weight: 600;
        }
        .search-section {
            background: #18222e;
            border-radius: 16px;
            padding: 1.8rem 2rem;
            margin: 1.8rem 0;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 1rem;
            border: 1px solid #2d4055;
        }
        .search-section label {
            font-weight: 600;
            font-size: 1.1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: #facc15;
        }
        .search-form {
            display: flex;
            flex: 1 1 300px;
            gap: 0.5rem;
        }
        .search-form input[type="text"] {
            flex: 1;
            padding: 0.7rem 1.2rem;
            border: none;
            border-radius: 40px;
            background: #0d141e;
            color: #e8edf2;
            font-size: 0.95rem;
            border: 1px solid #2d4055;
            transition: border 0.3s;
        }
        .search-form input[type="text"]:focus {
            outline: none;
            border-color: #facc15;
        }
        .search-form button {
            padding: 0.7rem 1.6rem;
            border: none;
            border-radius: 40px;
            background: #facc15;
            color: #0b0e14;
            font-weight: 700;
            font-size: 0.95rem;
            cursor: pointer;
            transition: background 0.25s, transform 0.1s;
        }
        .search-form button:hover {
            background: #ffdd57;
            transform: scale(1.02);
        }
        .content-wrapper {
            background: #111a24;
            border-radius: 20px;
            padding: 2rem 2.2rem;
            margin: 1.5rem 0 2rem;
            box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
        }
        @media (max-width: 600px) {
            .content-wrapper {
                padding: 1.2rem 1rem;
            }
            .search-section {
                padding: 1.2rem 1rem;
            }
        }
        .feature-image {
            margin: 1.8rem 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 6px 30px rgba(0, 0, 0, 0.6);
        }
        .feature-image img {
            width: 100%;
            max-height: 480px;
            object-fit: cover;
        }
        .feature-image figcaption {
            padding: 0.6rem 1rem;
            font-size: 0.85rem;
            color: #aabcce;
            background: #0d141e;
            border-top: 1px solid #2a3a4a;
        }
        .last-updated {
            display: inline-block;
            font-size: 0.85rem;
            color: #9aafc4;
            background: #0d141e;
            padding: 0.3rem 1rem;
            border-radius: 30px;
            margin-bottom: 0.8rem;
            border: 1px solid #2a3a4a;
        }
        .last-updated i {
            margin-right: 0.4rem;
            color: #facc15;
        }
        .highlight-box {
            background: #1d2a38;
            border-left: 6px solid #facc15;
            padding: 1.2rem 1.8rem;
            border-radius: 0 12px 12px 0;
            margin: 1.5rem 0;
        }
        .highlight-box p:last-child {
            margin-bottom: 0;
        }
        .btn-download {
            display: inline-block;
            background: linear-gradient(135deg, #facc15, #e67e22);
            color: #0b0e14;
            font-weight: 700;
            padding: 0.8rem 2.2rem;
            border-radius: 40px;
            font-size: 1.05rem;
            transition: transform 0.2s, box-shadow 0.3s;
            box-shadow: 0 4px 15px rgba(250, 204, 21, 0.3);
        }
        .btn-download:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(250, 204, 21, 0.5);
            text-decoration: none;
            color: #0b0e14;
        }
        .rating-area {
            background: #18222e;
            border-radius: 16px;
            padding: 1.6rem 2rem;
            margin: 2rem 0;
            border: 1px solid #2d4055;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 1.5rem;
        }
        .rating-area .stars {
            display: flex;
            gap: 0.3rem;
            font-size: 1.6rem;
            color: #facc15;
            cursor: pointer;
        }
        .rating-area .stars i {
            transition: transform 0.15s, color 0.2s;
        }
        .rating-area .stars i:hover {
            transform: scale(1.2);
            color: #ffdd57;
        }
        .rating-area .stars i.active {
            color: #facc15;
            text-shadow: 0 0 10px rgba(250, 204, 21, 0.5);
        }
        .rating-form {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            flex-wrap: wrap;
        }
        .rating-form input[type="number"] {
            width: 70px;
            padding: 0.4rem 0.6rem;
            border-radius: 30px;
            border: 1px solid #2d4055;
            background: #0d141e;
            color: #e8edf2;
            text-align: center;
        }
        .rating-form button {
            padding: 0.4rem 1.4rem;
            border-radius: 30px;
            border: none;
            background: #facc15;
            color: #0b0e14;
            font-weight: 600;
            cursor: pointer;
            transition: 0.2s;
        }
        .rating-form button:hover {
            background: #ffdd57;
        }
        .comments-section {
            background: #18222e;
            border-radius: 16px;
            padding: 1.8rem 2rem;
            margin: 2rem 0;
            border: 1px solid #2d4055;
        }
        .comments-section h3 {
            margin-top: 0;
        }
        .comment-form {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
            margin-top: 1rem;
        }
        .comment-form textarea {
            padding: 0.8rem 1.2rem;
            border-radius: 12px;
            border: 1px solid #2d4055;
            background: #0d141e;
            color: #e8edf2;
            font-size: 0.95rem;
            min-height: 100px;
            resize: vertical;
            font-family: inherit;
        }
        .comment-form textarea:focus {
            outline: none;
            border-color: #facc15;
        }
        .comment-form .row-fields {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem;
        }
        .comment-form .row-fields input {
            flex: 1 1 180px;
            padding: 0.6rem 1rem;
            border-radius: 30px;
            border: 1px solid #2d4055;
            background: #0d141e;
            color: #e8edf2;
        }
        .comment-form .row-fields input:focus {
            outline: none;
            border-color: #facc15;
        }
        .comment-form button {
            align-self: flex-start;
            padding: 0.6rem 2rem;
            border-radius: 30px;
            border: none;
            background: #facc15;
            color: #0b0e14;
            font-weight: 700;
            cursor: pointer;
            transition: 0.25s;
        }
        .comment-form button:hover {
            background: #ffdd57;
        }
        friend-link {
            display: block;
            background: #131a24;
            border-radius: 16px;
            padding: 1.6rem 2rem;
            margin: 2rem 0 1rem;
            border: 1px solid #2a3a4a;
        }
        friend-link h3 {
            margin-top: 0;
            color: #facc15;
            font-size: 1.2rem;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        friend-link ul {
            list-style: none;
            padding: 0;
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem 1.2rem;
            margin-top: 0.6rem;
        }
        friend-link ul li a {
            color: #b8ccdd;
            font-size: 0.9rem;
            border-bottom: 1px solid transparent;
            transition: 0.2s;
        }
        friend-link ul li a:hover {
            color: #facc15;
            border-bottom-color: #facc15;
        }
        .site-footer {
            background: #0a1018;
            border-top: 2px solid #1e2d3a;
            padding: 1.8rem 0;
            margin-top: 2rem;
            text-align: center;
            color: #8fa3b8;
            font-size: 0.88rem;
        }
        .site-footer .copyright {
            margin-top: 0.5rem;
            border-top: 1px solid #1e2d3a;
            padding-top: 1rem;
            font-size: 0.82rem;
            color: #6f8299;
        }
        .site-footer a {
            color: #facc15;
        }
        .styled-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.5rem 0;
            background: #0d141e;
            border-radius: 12px;
            overflow: hidden;
        }
        .styled-table th,
        .styled-table td {
            padding: 0.7rem 1rem;
            text-align: left;
            border-bottom: 1px solid #1e2d3a;
        }
        .styled-table th {
            background: #1a2532;
            color: #facc15;
            font-weight: 600;
        }
        .styled-table tr:hover td {
            background: #18222e;
        }
        .tag {
            display: inline-block;
            background: #1e2d3a;
            padding: 0.2rem 0.8rem;
            border-radius: 20px;
            font-size: 0.75rem;
            color: #b8ccdd;
            margin-right: 0.3rem;
        }
        .emoji-big {
            font-size: 2rem;
            margin-right: 0.4rem;
        }
        .flex-center {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            flex-wrap: wrap;
        }
        .grid-2 {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
            margin: 1.5rem 0;
        }
        @media (max-width: 680px) {
            .grid-2 {
                grid-template-columns: 1fr;
            }
        }
        .card {
            background: #0d141e;
            border-radius: 14px;
            padding: 1.2rem 1.5rem;
            border: 1px solid #1e2d3a;
            transition: border 0.3s, transform 0.2s;
        }
        .card:hover {
            border-color: #facc15;
            transform: translateY(-4px);
        }
        .card h4 {
            margin-top: 0;
        }
        .scroll-top {
            position: fixed;
            bottom: 1.5rem;
            right: 1.5rem;
            background: #facc15;
            color: #0b0e14;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            box-shadow: 0 4px 20px rgba(250, 204, 21, 0.3);
            cursor: pointer;
            transition: 0.25s;
            border: none;
            z-index: 99;
        }
        .scroll-top:hover {
            transform: scale(1.1);
            background: #ffdd57;
        }
