        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            background: #0b0c10;
            color: #e0e0e0;
            line-height: 1.75;
            padding: 0;
            margin: 0;
            min-height: 100vh;
        }
        a {
            color: #f0c040;
            text-decoration: none;
            transition: color 0.2s ease, border-bottom 0.2s ease;
        }
        a:hover,
        a:focus {
            color: #ffd966;
            border-bottom: 1px solid #f0c040;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.3;
            color: #f5f5f5;
            margin-top: 1.8rem;
            margin-bottom: 0.75rem;
        }
        h1 {
            font-size: 2.4rem;
            border-left: 6px solid #f0c040;
            padding-left: 1rem;
        }
        h2 {
            font-size: 2rem;
            border-bottom: 2px solid #2a2a2a;
            padding-bottom: 0.4rem;
        }
        h3 {
            font-size: 1.5rem;
        }
        h4 {
            font-size: 1.2rem;
            color: #d4d4d4;
        }
        p {
            margin-bottom: 1.2rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.2rem;
        }
        .site-header {
            background: #12141a;
            border-bottom: 3px solid #f0c040;
            padding: 0.6rem 1.2rem;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            max-width: 1200px;
            margin: 0 auto;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 900;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: #f0c040;
            background: linear-gradient(145deg, #f0c040, #ca9e2e);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 8px rgba(240, 192, 64, 0.3);
            transition: transform 0.2s;
            display: inline-block;
        }
        .my-logo:hover {
            transform: scale(1.02);
            border-bottom: none;
        }
        .my-logo small {
            font-size: 0.7rem;
            display: block;
            -webkit-text-fill-color: #bbb;
            color: #bbb;
            letter-spacing: 1px;
            font-weight: 400;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid #f0c040;
            color: #f0c040;
            font-size: 1.4rem;
            padding: 0.3rem 0.8rem;
            border-radius: 6px;
            cursor: pointer;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: #f0c04022;
        }
        .nav-menu {
            display: flex;
            gap: 0.2rem;
            flex-wrap: wrap;
            align-items: center;
        }
        .nav-menu a {
            padding: 0.5rem 1rem;
            font-weight: 600;
            font-size: 0.9rem;
            color: #ccc;
            border-radius: 30px;
            transition: background 0.2s, color 0.2s;
            border-bottom: none;
        }
        .nav-menu a:hover {
            background: #f0c04018;
            color: #f0c040;
            border-bottom: none;
        }
        .nav-menu a.active {
            color: #f0c040;
            background: #f0c04012;
        }
        .breadcrumb {
            background: #1a1d26;
            padding: 0.6rem 1.2rem;
            font-size: 0.85rem;
            border-bottom: 1px solid #2a2a2a;
        }
        .breadcrumb ol {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            padding: 0;
            margin: 0;
            max-width: 1200px;
            margin: 0 auto;
        }
        .breadcrumb li+li::before {
            content: "›";
            padding: 0 0.6rem;
            color: #888;
        }
        .breadcrumb a {
            color: #b0b0b0;
            border-bottom: none;
        }
        .breadcrumb a:hover {
            color: #f0c040;
            border-bottom: none;
        }
        .breadcrumb .current {
            color: #f0c040;
            font-weight: 600;
        }
        .hero-img-wrap {
            margin: 2rem 0 1.5rem;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.7);
            background: #1a1d26;
            position: relative;
        }
        .hero-img-wrap img {
            width: 100%;
            height: auto;
            max-height: 460px;
            object-fit: cover;
            display: block;
        }
        .hero-img-wrap .img-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, #000000cc);
            padding: 2rem 1.2rem 0.8rem;
            color: #fff;
            font-size: 0.9rem;
            font-style: italic;
        }
        .grid-2,
        .grid-3 {
            display: grid;
            gap: 1.8rem;
            margin: 2rem 0;
        }
        .grid-2 {
            grid-template-columns: 1fr 1fr;
        }
        .grid-3 {
            grid-template-columns: 1fr 1fr 1fr;
        }
        .card {
            background: #181b24;
            border-radius: 14px;
            padding: 1.6rem;
            border: 1px solid #2a2d3a;
            transition: transform 0.25s, box-shadow 0.25s;
        }
        .card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 28px rgba(240, 192, 64, 0.08);
        }
        .card h3 {
            margin-top: 0;
        }
        .card p {
            font-size: 0.95rem;
            color: #c5c5c5;
        }
        .form-block {
            background: #181b24;
            border-radius: 16px;
            padding: 2rem;
            border: 1px solid #2a2d3a;
            margin: 2.5rem 0;
        }
        .form-block h3 {
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        .form-group {
            margin-bottom: 1.2rem;
        }
        .form-group label {
            display: block;
            font-weight: 600;
            font-size: 0.9rem;
            margin-bottom: 0.3rem;
            color: #ccc;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 0.7rem 1rem;
            border-radius: 8px;
            border: 1px solid #3a3d4a;
            background: #0f1118;
            color: #e8e8e8;
            font-size: 1rem;
            transition: border 0.2s;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: #f0c040;
            box-shadow: 0 0 0 3px #f0c04022;
        }
        .form-group textarea {
            min-height: 100px;
            resize: vertical;
        }
        .btn {
            background: #f0c040;
            color: #0b0c10;
            font-weight: 700;
            padding: 0.7rem 2rem;
            border: none;
            border-radius: 30px;
            cursor: pointer;
            font-size: 1rem;
            transition: background 0.2s, transform 0.1s;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        .btn:hover {
            background: #ffd966;
            transform: scale(1.02);
            border-bottom: none;
        }
        .btn-outline {
            background: transparent;
            border: 2px solid #f0c040;
            color: #f0c040;
        }
        .btn-outline:hover {
            background: #f0c040;
            color: #0b0c10;
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 0.2rem;
            font-size: 2rem;
            margin: 0.5rem 0;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            cursor: pointer;
            color: #444;
            transition: color 0.2s;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #f0c040;
        }
        .link-list-inline {
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem 1rem;
            list-style: none;
            padding: 0;
            margin: 1.2rem 0;
        }
        .link-list-inline li::before {
            content: "🦇 ";
            font-size: 0.8rem;
        }
        .site-footer {
            background: #0d0f15;
            border-top: 3px solid #1f2230;
            padding: 2.5rem 1.2rem 1.2rem;
            margin-top: 3rem;
        }
        .footer-inner {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 2rem;
        }
        .footer-inner h4 {
            color: #f0c040;
            margin-top: 0;
            font-size: 1.1rem;
        }
        .footer-inner a {
            color: #b0b0b0;
            display: block;
            padding: 0.2rem 0;
            font-size: 0.9rem;
            border-bottom: none;
        }
        .footer-inner a:hover {
            color: #f0c040;
            border-bottom: none;
        }
        .footer-bottom {
            text-align: center;
            padding-top: 1.8rem;
            margin-top: 1.8rem;
            border-top: 1px solid #1f2230;
            font-size: 0.85rem;
            color: #888;
        }
        friend-link {
            display: block;
            margin: 1rem 0;
        }
        friend-link a {
            display: inline-block;
            margin: 0.2rem 0.6rem 0.2rem 0;
        }
        @media(max-width:820px) {
            .grid-2,
            .grid-3 {
                grid-template-columns: 1fr;
            }
            .footer-inner {
                grid-template-columns: 1fr 1fr;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            .nav-menu {
                display: none;
                width: 100%;
                flex-direction: column;
                background: #12141a;
                padding: 1rem 0;
                border-top: 1px solid #2a2d3a;
                margin-top: 0.6rem;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-toggle {
                display: block;
            }
            .hero-img-wrap .img-caption {
                font-size: 0.75rem;
                padding: 1.2rem 0.8rem 0.5rem;
            }
        }
        @media(max-width:480px) {
            .footer-inner {
                grid-template-columns: 1fr;
            }
            .form-block {
                padding: 1.2rem;
            }
            .star-rating {
                font-size: 1.6rem;
            }
            .my-logo {
                font-size: 1.5rem;
            }
        }
        .mt-0 {
            margin-top: 0;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .mb-2 {
            margin-bottom: 2rem;
        }
        .text-gold {
            color: #f0c040;
        }
        .text-muted {
            color: #999;
        }
        .flex-between {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 0.6rem;
        }
        .update-badge {
            background: #1f2230;
            padding: 0.3rem 1rem;
            border-radius: 30px;
            font-size: 0.8rem;
            color: #f0c040;
            display: inline-block;
        }
        .divider {
            height: 2px;
            background: linear-gradient(90deg, #f0c04022, #f0c04088, #f0c04022);
            margin: 2.5rem 0;
            border: none;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 1.5rem 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            background: #181b24;
            border-radius: 12px;
            overflow: hidden;
        }
        th,
        td {
            padding: 0.8rem 1rem;
            text-align: left;
            border-bottom: 1px solid #2a2d3a;
        }
        th {
            background: #1f2230;
            color: #f0c040;
            font-weight: 700;
        }
        tr:last-child td {
            border-bottom: none;
        }
