        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, Roboto, 'Helvetica Neue', sans-serif;
            background: #0b0e17;
            color: #e8e6e3;
            line-height: 1.75;
            padding: 0;
            margin: 0;
        }
        a {
            color: #b8d4ff;
            text-decoration: none;
            transition: color 0.25s;
        }
        a:hover,
        a:focus {
            color: #ffd966;
            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;
        }
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #141a26;
        }
        ::-webkit-scrollbar-thumb {
            background: #3b4a6b;
            border-radius: 8px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #5a72a0;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, #0f1622, #1a2438);
            border-bottom: 2px solid #2c3e5a;
            padding: 0 0 0 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 12px 20px;
            max-width: 1200px;
            margin: 0 auto;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: 1px;
            background: linear-gradient(135deg, #f7d875, #d4a34e);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 30px rgba(247, 216, 117, 0.15);
            transition: transform 0.3s;
            display: inline-block;
        }
        .my-logo:hover {
            transform: scale(1.03);
            text-decoration: none;
        }
        .my-logo small {
            font-size: 0.7rem;
            -webkit-text-fill-color: #8899bb;
            color: #8899bb;
            background: none;
            letter-spacing: 2px;
            margin-left: 6px;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #e8e6e3;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 4px 8px;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: rgba(255, 255, 255, 0.06);
        }
        .primary-nav {
            display: flex;
            gap: 6px;
            flex-wrap: wrap;
            align-items: center;
        }
        .primary-nav a {
            padding: 6px 14px;
            border-radius: 30px;
            font-size: 0.9rem;
            font-weight: 500;
            color: #c8d6e8;
            transition: all 0.25s;
            border: 1px solid transparent;
        }
        .primary-nav a:hover {
            background: rgba(255, 215, 0, 0.08);
            border-color: #ffd96655;
            color: #ffd966;
            text-decoration: none;
        }
        .primary-nav a i {
            margin-right: 4px;
        }
        .breadcrumb {
            padding: 12px 20px;
            max-width: 1200px;
            margin: 0 auto;
            font-size: 0.85rem;
            color: #8899bb;
            background: transparent;
            border-bottom: 1px solid #1f2a3e;
        }
        .breadcrumb a {
            color: #7a8fbb;
        }
        .breadcrumb a:hover {
            color: #ffd966;
        }
        .breadcrumb span {
            color: #b8c4dd;
        }
        main {
            padding: 30px 0 60px;
            min-height: 70vh;
        }
        h1 {
            font-size: 2.8rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            line-height: 1.2;
            background: linear-gradient(135deg, #f7d875, #e6b85c, #d4a34e);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin: 0.5rem 0 1.5rem;
        }
        h2 {
            font-size: 2rem;
            font-weight: 700;
            color: #f0e6d0;
            border-left: 5px solid #f7d875;
            padding-left: 18px;
            margin: 2.8rem 0 1.2rem;
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 600;
            color: #dcccaa;
            margin: 2rem 0 0.8rem;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
            color: #c4b896;
            margin: 1.5rem 0 0.6rem;
        }
        p {
            margin-bottom: 1.2rem;
            color: #d8d6d0;
        }
        strong {
            color: #f7e2b0;
            font-weight: 700;
        }
        section {
            margin-bottom: 3rem;
        }
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 24px;
            margin: 1.8rem 0;
        }
        .card {
            background: linear-gradient(145deg, #131c2b, #1a2538);
            border-radius: 16px;
            padding: 24px;
            border: 1px solid #2a3a52;
            transition: all 0.3s ease;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
        }
        .card:hover {
            transform: translateY(-4px);
            border-color: #4a6a8a;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
        }
        .card i {
            font-size: 2rem;
            color: #f7d875;
            margin-bottom: 12px;
        }
        .card h4 {
            margin-top: 0;
        }
        .card p {
            font-size: 0.95rem;
        }
        .feature-image {
            margin: 2rem 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
            background: #1a2538;
        }
        .feature-image img {
            width: 100%;
            max-height: 480px;
            object-fit: cover;
        }
        .feature-image figcaption {
            padding: 12px 20px;
            font-size: 0.85rem;
            color: #8899bb;
            background: #0f1622;
            text-align: center;
        }
        .form-group {
            margin-bottom: 1.2rem;
        }
        label {
            display: block;
            font-weight: 600;
            margin-bottom: 4px;
            color: #dcccaa;
        }
        input,
        textarea,
        select {
            width: 100%;
            padding: 12px 16px;
            border-radius: 10px;
            border: 1px solid #2a3a52;
            background: #0f1622;
            color: #e8e6e3;
            font-size: 1rem;
            transition: border 0.3s, box-shadow 0.3s;
            font-family: inherit;
        }
        input:focus,
        textarea:focus,
        select:focus {
            outline: none;
            border-color: #f7d875;
            box-shadow: 0 0 0 3px #f7d87522;
        }
        textarea {
            min-height: 120px;
            resize: vertical;
        }
        .btn {
            display: inline-block;
            padding: 12px 32px;
            border-radius: 30px;
            border: none;
            background: linear-gradient(135deg, #f7d875, #d4a34e);
            color: #0b0e17;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 4px 16px rgba(247, 216, 117, 0.2);
        }
        .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(247, 216, 117, 0.35);
        }
        .btn i {
            margin-right: 6px;
        }
        .search-form {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            margin: 1.5rem 0;
        }
        .search-form input {
            flex: 1;
            min-width: 200px;
        }
        .star-rating {
            display: flex;
            gap: 6px;
            font-size: 1.8rem;
            cursor: pointer;
            color: #3a4a6a;
            transition: color 0.2s;
        }
        .star-rating i:hover,
        .star-rating i.active {
            color: #f7d875;
        }
        .star-rating i {
            transition: color 0.2s, transform 0.2s;
        }
        .star-rating i:hover {
            transform: scale(1.2);
        }
        .comment-box {
            background: #0f1622;
            border-radius: 16px;
            padding: 24px;
            border: 1px solid #1f2a3e;
            margin: 1.5rem 0;
        }
        .comment-item {
            padding: 16px 0;
            border-bottom: 1px solid #1a2538;
        }
        .comment-item:last-child {
            border-bottom: none;
        }
        .comment-author {
            font-weight: 700;
            color: #f0e6d0;
        }
        .comment-time {
            font-size: 0.8rem;
            color: #6a7f9a;
            margin-left: 12px;
        }
        .comment-text {
            margin-top: 4px;
            color: #c8d6e8;
        }
        .links-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 10px;
            margin: 1.2rem 0;
            padding: 0;
            list-style: none;
        }
        .links-list li a {
            display: block;
            padding: 10px 16px;
            background: #0f1622;
            border-radius: 10px;
            border: 1px solid #1f2a3e;
            transition: all 0.25s;
            font-size: 0.95rem;
        }
        .links-list li a:hover {
            background: #1a2538;
            border-color: #f7d87555;
            text-decoration: none;
            color: #ffd966;
        }
        .links-list li a i {
            margin-right: 8px;
            color: #f7d875;
        }
        .site-footer {
            background: #0a0f18;
            border-top: 2px solid #1f2a3e;
            padding: 40px 20px 20px;
            margin-top: 50px;
        }
        .footer-inner {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
        }
        .footer-inner h4 {
            color: #f0e6d0;
            margin-bottom: 12px;
            font-size: 1.1rem;
        }
        .footer-inner a {
            display: block;
            padding: 4px 0;
            font-size: 0.9rem;
            color: #7a8fbb;
        }
        .footer-inner a:hover {
            color: #ffd966;
        }
        .footer-bottom {
            max-width: 1200px;
            margin: 30px auto 0;
            padding-top: 20px;
            border-top: 1px solid #1a2538;
            text-align: center;
            font-size: 0.85rem;
            color: #5a6f8a;
        }
        .footer-bottom .copyright {
            color: #7a8fbb;
        }
        friend-link {
            display: block;
            background: #0f1622;
            border-radius: 12px;
            padding: 16px 20px;
            border: 1px solid #1f2a3e;
            margin: 12px 0;
        }
        friend-link a {
            display: inline-block;
            margin: 4px 12px 4px 0;
            padding: 4px 12px;
            background: #1a2538;
            border-radius: 20px;
            font-size: 0.9rem;
        }
        friend-link a:hover {
            background: #2a3a52;
            text-decoration: none;
        }
        .last-updated {
            display: inline-block;
            background: #1a2538;
            padding: 6px 18px;
            border-radius: 30px;
            font-size: 0.85rem;
            color: #8899bb;
            border: 1px solid #2a3a52;
            margin-bottom: 1rem;
        }
        .last-updated i {
            margin-right: 6px;
            color: #f7d875;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            h3 {
                font-size: 1.25rem;
            }
            .header-inner {
                padding: 10px 16px;
            }
            .nav-toggle {
                display: block;
            }
            .primary-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: stretch;
                padding: 12px 0 8px;
                gap: 4px;
            }
            .primary-nav.open {
                display: flex;
            }
            .primary-nav a {
                padding: 10px 16px;
                border-radius: 8px;
                border: none;
                border-bottom: 1px solid #1a2538;
            }
            .breadcrumb {
                font-size: 0.75rem;
                padding: 8px 16px;
            }
            .card-grid {
                grid-template-columns: 1fr;
            }
            .links-list {
                grid-template-columns: 1fr;
            }
            .search-form {
                flex-direction: column;
            }
            .star-rating {
                font-size: 1.4rem;
            }
            .footer-inner {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 480px) {
            .my-logo {
                font-size: 1.4rem;
            }
            .my-logo small {
                font-size: 0.6rem;
            }
            h1 {
                font-size: 1.7rem;
            }
            .container {
                padding: 0 14px;
            }
            .footer-inner {
                grid-template-columns: 1fr;
            }
        }
        .text-gold {
            color: #f7d875;
        }
        .text-muted {
            color: #6a7f9a;
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .mt-2 {
            margin-top: 2rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .mb-2 {
            margin-bottom: 2rem;
        }
        .flex {
            display: flex;
        }
        .flex-wrap {
            flex-wrap: wrap;
        }
        .gap-2 {
            gap: 20px;
        }
        .align-center {
            align-items: center;
        }
        .highlight-box {
            background: linear-gradient(135deg, #1a2538, #0f1622);
            border-left: 4px solid #f7d875;
            border-radius: 0 12px 12px 0;
            padding: 20px 24px;
            margin: 1.8rem 0;
        }
        .highlight-box p:last-child {
            margin-bottom: 0;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 1.5rem 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            background: #0f1622;
            border-radius: 12px;
            overflow: hidden;
        }
        th {
            background: #1a2538;
            color: #f0e6d0;
            padding: 12px 16px;
            text-align: left;
            font-weight: 600;
        }
        td {
            padding: 10px 16px;
            border-bottom: 1px solid #1a2538;
            color: #c8d6e8;
        }
        tr:last-child td {
            border-bottom: none;
        }
        tr:hover td {
            background: #141e30;
        }
        .anchor-link {
            scroll-margin-top: 100px;
        }
