* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #f0f2f5;
            color: #1e2a3a;
            line-height: 1.7;
            font-size: 16px;
        }
        a {
            color: #b8860b;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover {
            color: #8b6508;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, #0b1a2e 0%, #1a3a5c 100%);
            color: #fff;
            padding: 18px 0;
            border-bottom: 4px solid #d4a843;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #f5d97e, #d4a843);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-decoration: none !important;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .my-logo i {
            -webkit-text-fill-color: #d4a843;
            font-size: 1.7rem;
        }
        .my-logo:hover {
            opacity: 0.9;
            text-decoration: none !important;
        }
        .my-logo small {
            font-size: 0.7rem;
            font-weight: 400;
            -webkit-text-fill-color: rgba(255, 255, 255, 0.5);
            display: block;
            letter-spacing: 1px;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 6px 12px;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        .main-nav {
            display: flex;
            gap: 6px;
            flex-wrap: wrap;
            align-items: center;
        }
        .main-nav a {
            color: #e8eef5;
            padding: 8px 16px;
            border-radius: 30px;
            font-size: 0.9rem;
            font-weight: 500;
            transition: all 0.25s ease;
            white-space: nowrap;
        }
        .main-nav a:hover,
        .main-nav a.active {
            background: rgba(212, 168, 67, 0.25);
            color: #f5d97e;
            text-decoration: none;
        }
        .main-nav a i {
            margin-right: 5px;
            font-size: 0.8rem;
        }
        .breadcrumb-wrap {
            background: #fff;
            padding: 12px 0;
            border-bottom: 1px solid #e2e8f0;
            font-size: 0.85rem;
        }
        .breadcrumb-wrap nav ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
            align-items: center;
        }
        .breadcrumb-wrap nav ol li {
            display: flex;
            align-items: center;
            gap: 6px;
            color: #4a5a6a;
        }
        .breadcrumb-wrap nav ol li+li::before {
            content: "›";
            color: #b0b8c4;
            font-size: 1.2rem;
            margin-right: 4px;
        }
        .breadcrumb-wrap nav ol li a {
            color: #b8860b;
        }
        .breadcrumb-wrap nav ol li strong {
            color: #1e2a3a;
        }
        .hero-section {
            background: linear-gradient(135deg, #0f1f2f, #1e3a5a);
            border-radius: 20px;
            padding: 40px 36px;
            margin: 30px 0 40px;
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            align-items: center;
            color: #fff;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
        }
        .hero-text {
            flex: 1 1 350px;
        }
        .hero-text h1 {
            font-size: 2.6rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 16px;
            background: linear-gradient(135deg, #f5d97e, #e8b830);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .hero-text p {
            font-size: 1.1rem;
            opacity: 0.9;
            margin-bottom: 12px;
        }
        .hero-text .meta-badge {
            display: inline-block;
            background: rgba(212, 168, 67, 0.2);
            border: 1px solid rgba(212, 168, 67, 0.4);
            padding: 4px 16px;
            border-radius: 30px;
            font-size: 0.85rem;
            color: #f5d97e;
        }
        .hero-image {
            flex: 1 1 300px;
        }
        .hero-image img {
            border-radius: 16px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
            width: 100%;
            max-height: 340px;
            object-fit: cover;
        }
        .main-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            margin: 40px 0;
        }
        @media (max-width: 900px) {
            .main-grid {
                grid-template-columns: 1fr;
            }
        }
        .content-area {
            background: #fff;
            border-radius: 20px;
            padding: 36px 32px;
            box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
        }
        .content-area h2 {
            font-size: 1.9rem;
            font-weight: 700;
            margin: 48px 0 18px;
            padding-bottom: 10px;
            border-bottom: 3px solid #d4a843;
            color: #0b1a2e;
        }
        .content-area h2:first-of-type {
            margin-top: 0;
        }
        .content-area h3 {
            font-size: 1.4rem;
            font-weight: 600;
            margin: 32px 0 12px;
            color: #1a3a5c;
        }
        .content-area h4 {
            font-size: 1.15rem;
            font-weight: 600;
            margin: 24px 0 10px;
            color: #2a4a6a;
        }
        .content-area p {
            margin-bottom: 18px;
            color: #2d3a4a;
        }
        .content-area ul,
        .content-area ol {
            margin: 16px 0 20px 28px;
        }
        .content-area li {
            margin-bottom: 8px;
        }
        .content-area .highlight-box {
            background: #f7f3ea;
            border-left: 5px solid #d4a843;
            padding: 20px 24px;
            border-radius: 0 12px 12px 0;
            margin: 24px 0;
        }
        .content-area .highlight-box p:last-child {
            margin-bottom: 0;
        }
        .content-area img.content-img {
            width: 100%;
            max-height: 420px;
            object-fit: cover;
            border-radius: 14px;
            margin: 24px 0;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        }
        .content-area .stat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
            gap: 16px;
            margin: 24px 0;
        }
        .content-area .stat-card {
            background: #f0f4f8;
            padding: 20px 16px;
            border-radius: 14px;
            text-align: center;
            border: 1px solid #e2e8f0;
        }
        .content-area .stat-card .num {
            font-size: 2rem;
            font-weight: 800;
            color: #d4a843;
        }
        .content-area .stat-card .label {
            font-size: 0.9rem;
            color: #4a5a6a;
            margin-top: 4px;
        }
        .content-area .table-wrap {
            overflow-x: auto;
            margin: 24px 0;
        }
        .content-area table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.95rem;
        }
        .content-area table th {
            background: #0b1a2e;
            color: #f5d97e;
            padding: 12px 16px;
            text-align: left;
            font-weight: 600;
        }
        .content-area table td {
            padding: 10px 16px;
            border-bottom: 1px solid #e2e8f0;
        }
        .content-area table tr:nth-child(even) td {
            background: #f8fafc;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 28px;
        }
        .sidebar-card {
            background: #fff;
            border-radius: 16px;
            padding: 24px 20px;
            box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
        }
        .sidebar-card h3 {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 16px;
            padding-bottom: 8px;
            border-bottom: 2px solid #d4a843;
            color: #0b1a2e;
        }
        .sidebar-card ul {
            list-style: none;
            padding: 0;
        }
        .sidebar-card ul li {
            margin-bottom: 10px;
            padding: 6px 0;
            border-bottom: 1px dashed #e2e8f0;
        }
        .sidebar-card ul li a {
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .sidebar-card ul li a i {
            width: 18px;
            color: #d4a843;
        }
        .search-form {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
        }
        .search-form input {
            flex: 1;
            min-width: 140px;
            padding: 10px 16px;
            border: 2px solid #dce2ea;
            border-radius: 30px;
            font-size: 0.95rem;
            outline: none;
            transition: border 0.25s;
        }
        .search-form input:focus {
            border-color: #d4a843;
        }
        .search-form button {
            background: #d4a843;
            border: none;
            color: #0b1a2e;
            padding: 10px 22px;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.25s;
            font-size: 0.95rem;
        }
        .search-form button:hover {
            background: #e8b830;
        }
        .comment-section,
        .rating-section {
            margin-top: 40px;
            padding-top: 30px;
            border-top: 2px solid #e2e8f0;
        }
        .comment-section h3,
        .rating-section h3 {
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 16px;
        }
        .comment-form textarea,
        .comment-form input {
            width: 100%;
            padding: 12px 18px;
            border: 2px solid #dce2ea;
            border-radius: 12px;
            font-size: 0.95rem;
            font-family: inherit;
            outline: none;
            transition: border 0.25s;
            margin-bottom: 12px;
            resize: vertical;
        }
        .comment-form textarea:focus,
        .comment-form input:focus {
            border-color: #d4a843;
        }
        .comment-form .form-row {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }
        .comment-form .form-row input {
            flex: 1;
            min-width: 140px;
        }
        .comment-form button,
        .rating-form button {
            background: #0b1a2e;
            color: #f5d97e;
            border: none;
            padding: 12px 32px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            transition: background 0.25s;
        }
        .comment-form button:hover,
        .rating-form button:hover {
            background: #1a3a5c;
        }
        .rating-form {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 16px;
        }
        .rating-form select {
            padding: 10px 18px;
            border: 2px solid #dce2ea;
            border-radius: 30px;
            font-size: 0.95rem;
            outline: none;
            background: #fff;
        }
        .rating-stars {
            display: flex;
            gap: 4px;
            font-size: 1.6rem;
            color: #d4a843;
        }
        .site-footer {
            background: #0b1a2e;
            color: #c8d6e5;
            padding: 48px 0 30px;
            margin-top: 60px;
            border-top: 4px solid #d4a843;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        .footer-grid h4 {
            color: #f5d97e;
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 14px;
        }
        .footer-grid ul {
            list-style: none;
            padding: 0;
        }
        .footer-grid ul li {
            margin-bottom: 8px;
        }
        .footer-grid ul li a {
            color: #b0c4d8;
            font-size: 0.9rem;
        }
        .footer-grid ul li a:hover {
            color: #f5d97e;
        }
        .footer-bottom {
            border-top: 1px solid #1a3a5c;
            padding-top: 24px;
            text-align: center;
            font-size: 0.9rem;
            color: #7a8a9a;
        }
        .footer-bottom .copyright {
            margin-top: 8px;
        }
        friend-link {
            display: block;
            margin: 12px 0;
            font-style: normal;
        }
        friend-link a {
            color: #b0c4d8;
            padding: 4px 0;
            display: inline-block;
        }
        friend-link a:hover {
            color: #f5d97e;
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: stretch;
                padding-top: 16px;
                gap: 4px;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 12px 18px;
                border-radius: 10px;
                background: rgba(255, 255, 255, 0.05);
            }
            .header-inner {
                gap: 10px;
            }
            .hero-text h1 {
                font-size: 1.8rem;
            }
            .content-area {
                padding: 24px 18px;
            }
            .content-area h2 {
                font-size: 1.5rem;
            }
            .content-area h3 {
                font-size: 1.2rem;
            }
            .sidebar {
                order: 2;
            }
            .hero-section {
                padding: 24px 18px;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 480px) {
            .footer-grid {
                grid-template-columns: 1fr;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .hero-text h1 {
                font-size: 1.5rem;
            }
            .stat-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        .scroll-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: #d4a843;
            color: #0b1a2e;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
            cursor: pointer;
            transition: all 0.3s;
            border: none;
            z-index: 999;
            opacity: 0;
            visibility: hidden;
        }
        .scroll-top.visible {
            opacity: 1;
            visibility: visible;
        }
        .scroll-top:hover {
            background: #e8b830;
            transform: translateY(-3px);
        }
        .last-update {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.85rem;
            color: #6a7a8a;
            margin: 20px 0 0;
            padding: 10px 0;
            border-top: 1px solid #e2e8f0;
        }
        .last-update i {
            color: #d4a843;
        }
