        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            background: #f4f7fb;
            color: #1a2634;
            line-height: 1.7;
            padding: 0;
            margin: 0;
        }
        a {
            color: #0a66c2;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover,
        a:focus {
            color: #c8102e;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ul,
        ol {
            padding-left: 1.4rem;
        }
        li {
            margin-bottom: 0.4rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.2rem;
        }
        .site-header {
            background: linear-gradient(135deg, #0a1428 0%, #1a2a4a 100%);
            color: #f0e6d2;
            padding: 0.8rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
            border-bottom: 2px solid #c89b3c;
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 1.6rem;
            font-weight: 800;
            color: #f0e6d2;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            background: linear-gradient(to right, #c89b3c, #f0e6d2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            transition: transform 0.3s ease;
            display: inline-block;
        }
        .my-logo:hover {
            transform: scale(1.03);
            text-decoration: none;
        }
        .my-logo small {
            font-size: 0.65rem;
            display: block;
            -webkit-text-fill-color: #a09b8c;
            color: #a09b8c;
            letter-spacing: 2px;
        }
        .main-nav {
            display: flex;
            align-items: center;
            gap: 0.3rem;
            flex-wrap: wrap;
        }
        .main-nav a {
            color: #cdc6b5;
            padding: 0.5rem 0.9rem;
            border-radius: 6px;
            font-size: 0.9rem;
            font-weight: 500;
            transition: background 0.3s, color 0.3s;
            white-space: nowrap;
        }
        .main-nav a:hover,
        .main-nav a.active {
            background: rgba(200, 155, 60, 0.2);
            color: #f0e6d2;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: 2px solid #c89b3c;
            color: #c89b3c;
            font-size: 1.5rem;
            padding: 0.3rem 0.7rem;
            border-radius: 6px;
            cursor: pointer;
            transition: background 0.3s;
        }
        .hamburger:hover {
            background: rgba(200, 155, 60, 0.15);
        }
        .breadcrumb {
            background: #e8edf3;
            padding: 0.6rem 0;
            font-size: 0.85rem;
            border-bottom: 1px solid #d4dce6;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem 0.6rem;
            padding: 0;
            margin: 0;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 0.6rem;
            color: #8a9bb5;
            font-weight: 700;
        }
        .breadcrumb a {
            color: #0a66c2;
        }
        .breadcrumb .current {
            color: #5a6878;
            font-weight: 600;
        }
        .hero {
            background: linear-gradient(145deg, #0f1e3a, #1b2f55);
            color: #f0e6d2;
            padding: 2.5rem 0 2rem;
            text-align: center;
            border-bottom: 4px solid #c89b3c;
        }
        .hero h1 {
            font-size: 2.6rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            line-height: 1.2;
            max-width: 900px;
            margin: 0 auto 0.6rem;
            text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
        }
        .hero h1 span {
            color: #c89b3c;
        }
        .hero p {
            font-size: 1.15rem;
            max-width: 750px;
            margin: 0.6rem auto 1.2rem;
            color: #b8b0a0;
        }
        .hero .meta-badge {
            display: inline-block;
            background: rgba(200, 155, 60, 0.2);
            padding: 0.3rem 1.2rem;
            border-radius: 30px;
            font-size: 0.85rem;
            color: #c89b3c;
            border: 1px solid rgba(200, 155, 60, 0.3);
        }
        .search-form {
            display: flex;
            max-width: 520px;
            margin: 1.2rem auto 0;
            border-radius: 50px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
        }
        .search-form input {
            flex: 1;
            padding: 0.85rem 1.4rem;
            border: none;
            font-size: 1rem;
            outline: none;
            background: #fff;
            color: #1a2634;
        }
        .search-form button {
            background: #c89b3c;
            border: none;
            padding: 0 1.6rem;
            color: #0a1428;
            font-size: 1.1rem;
            cursor: pointer;
            transition: background 0.3s;
            font-weight: 600;
        }
        .search-form button:hover {
            background: #dbb14e;
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2rem;
            padding: 2.5rem 0;
        }
        .main-content {
            background: #ffffff;
            border-radius: 18px;
            padding: 2.2rem 2rem;
            box-shadow: 0 6px 30px rgba(0, 0, 0, 0.05);
        }
        .sidebar {
            background: #ffffff;
            border-radius: 18px;
            padding: 1.8rem 1.4rem;
            box-shadow: 0 6px 30px rgba(0, 0, 0, 0.05);
            height: fit-content;
            position: sticky;
            top: 90px;
        }
        .main-content h2 {
            font-size: 1.9rem;
            font-weight: 700;
            color: #0a1428;
            margin: 2.2rem 0 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 3px solid #c89b3c;
            display: inline-block;
        }
        .main-content h3 {
            font-size: 1.4rem;
            font-weight: 600;
            color: #1a2a4a;
            margin: 1.8rem 0 0.8rem;
        }
        .main-content h4 {
            font-size: 1.15rem;
            font-weight: 600;
            color: #2a3a5a;
            margin: 1.4rem 0 0.5rem;
        }
        .main-content p {
            margin-bottom: 1.1rem;
            color: #2c3a4a;
        }
        .featured-image {
            margin: 1.8rem 0;
            border-radius: 14px;
            overflow: hidden;
            background: #eef2f7;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
        }
        .featured-image img {
            width: 100%;
            object-fit: cover;
            max-height: 460px;
        }
        .featured-image figcaption {
            padding: 0.6rem 1rem;
            font-size: 0.85rem;
            color: #5a6a7a;
            background: #f8fafc;
            border-top: 1px solid #e2e8f0;
        }
        .builds-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.4rem 0;
            font-size: 0.95rem;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
        }
        .builds-table th {
            background: #0a1428;
            color: #f0e6d2;
            padding: 0.8rem 1rem;
            text-align: left;
            font-weight: 600;
        }
        .builds-table td {
            padding: 0.7rem 1rem;
            border-bottom: 1px solid #e2e8f0;
            background: #fafcff;
        }
        .builds-table tr:hover td {
            background: #f0f4fa;
        }
        .sidebar h3 {
            font-size: 1.2rem;
            color: #0a1428;
            border-bottom: 2px solid #c89b3c;
            padding-bottom: 0.4rem;
            margin-bottom: 1rem;
        }
        .sidebar ul {
            list-style: none;
            padding: 0;
        }
        .sidebar ul li {
            padding: 0.4rem 0;
            border-bottom: 1px solid #edf2f7;
        }
        .sidebar ul li a {
            color: #1a2a4a;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .sidebar ul li a:hover {
            color: #c8102e;
            text-decoration: none;
        }
        .feedback-section {
            margin-top: 2.8rem;
            padding-top: 1.8rem;
            border-top: 2px dashed #d4dce6;
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.6rem;
        }
        .feedback-card {
            background: #f8fafc;
            border-radius: 14px;
            padding: 1.4rem 1.5rem;
            border: 1px solid #e2e8f0;
            transition: box-shadow 0.3s;
        }
        .feedback-card:hover {
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
        }
        .feedback-card h4 {
            font-size: 1.1rem;
            margin-bottom: 0.8rem;
            color: #0a1428;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        .feedback-card textarea,
        .feedback-card input {
            width: 100%;
            padding: 0.7rem 1rem;
            border: 1px solid #d4dce6;
            border-radius: 8px;
            font-size: 0.95rem;
            font-family: inherit;
            background: #fff;
            transition: border 0.3s;
            margin-bottom: 0.6rem;
        }
        .feedback-card textarea:focus,
        .feedback-card input:focus {
            border-color: #c89b3c;
            outline: none;
        }
        .feedback-card textarea {
            min-height: 80px;
            resize: vertical;
        }
        .btn {
            background: #0a1428;
            color: #f0e6d2;
            border: none;
            padding: 0.65rem 1.6rem;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s, transform 0.2s;
            font-size: 0.95rem;
        }
        .btn:hover {
            background: #c89b3c;
            color: #0a1428;
            transform: translateY(-1px);
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 0.2rem;
            margin-bottom: 0.6rem;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 1.6rem;
            color: #d4dce6;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star-rating input:checked~label,
        .star-rating label:hover,
        .star-rating label:hover~label {
            color: #f5b342;
        }
        .link-list-inline {
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem 0.8rem;
            margin: 1rem 0;
            padding: 0.8rem 1rem;
            background: #f0f4fa;
            border-radius: 10px;
            font-size: 0.9rem;
        }
        .link-list-inline a {
            font-weight: 500;
        }
        .site-footer {
            background: #0a1428;
            color: #a09b8c;
            padding: 2.2rem 0 1.2rem;
            border-top: 3px solid #c89b3c;
            margin-top: 2rem;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 2rem;
        }
        .site-footer friend-link {
            display: block;
            font-style: normal;
        }
        .site-footer friend-link a {
            color: #cdc6b5;
            display: inline-block;
            margin-right: 1.2rem;
            margin-bottom: 0.3rem;
        }
        .site-footer friend-link a:hover {
            color: #c89b3c;
            text-decoration: none;
        }
        .copyright {
            text-align: center;
            padding-top: 1.4rem;
            margin-top: 1.4rem;
            border-top: 1px solid #1a2a4a;
            font-size: 0.85rem;
            color: #6a7a8a;
        }
        .copyright strong {
            color: #c89b3c;
        }
        @media (max-width: 992px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
                order: 2;
            }
            .feedback-grid {
                grid-template-columns: 1fr;
            }
            .footer-inner {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 768px) {
            .header-inner {
                flex-wrap: wrap;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                background: #0f1e3a;
                padding: 0.8rem 0;
                border-radius: 0 0 12px 12px;
                margin-top: 0.6rem;
                border-top: 1px solid #c89b3c;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 0.6rem 1.2rem;
                width: 100%;
                text-align: left;
            }
            .hamburger {
                display: block;
            }
            .hero h1 {
                font-size: 1.8rem;
            }
            .main-content {
                padding: 1.4rem 1rem;
            }
            .main-content h2 {
                font-size: 1.5rem;
            }
            .main-content h3 {
                font-size: 1.2rem;
            }
            .builds-table {
                font-size: 0.8rem;
            }
            .builds-table th,
            .builds-table td {
                padding: 0.4rem 0.5rem;
            }
            .search-form {
                max-width: 100%;
            }
            .my-logo {
                font-size: 1.2rem;
            }
        }
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.4rem;
            }
            .hero p {
                font-size: 0.95rem;
            }
            .container {
                padding: 0 0.8rem;
            }
            .breadcrumb {
                font-size: 0.75rem;
            }
        }
        .text-gold {
            color: #c89b3c;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .flex {
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        .gap-1 {
            gap: 1rem;
        }
        .fw-700 {
            font-weight: 700;
        }
        .fs-small {
            font-size: 0.85rem;
        }
        .last-updated {
            display: inline-block;
            background: #eef2f7;
            padding: 0.2rem 1rem;
            border-radius: 30px;
            font-size: 0.8rem;
            color: #4a5a6a;
        }
