        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
            background: #0f1a0f;
            color: #e2f0e2;
            line-height: 1.7;
            min-height: 100vh;
        }
        a {
            color: #7ecb7e;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover,
        a:focus {
            color: #b5f0b5;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        ul,
        ol {
            padding-left: 1.4rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.25;
            color: #f5fff5;
            margin-top: 1.6rem;
            margin-bottom: 0.6rem;
        }
        h1 {
            font-size: 2.4rem;
            margin-top: 0.4rem;
            border-bottom: 3px solid #c8a84e;
            padding-bottom: 0.4rem;
            display: inline-block;
        }
        h2 {
            font-size: 1.8rem;
            border-left: 4px solid #c8a84e;
            padding-left: 0.8rem;
        }
        h3 {
            font-size: 1.4rem;
            color: #d4f0d4;
        }
        h4 {
            font-size: 1.15rem;
            color: #b8e0b8;
        }
        p {
            margin-bottom: 1.2rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.2rem;
        }
        .site-header {
            background: #0d1f0d;
            border-bottom: 2px solid #2a4a2a;
            padding: 0.6rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(8px);
            background: rgba(13, 31, 13, 0.96);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.6rem 1.2rem;
        }
        .my-logo {
            font-size: 1.7rem;
            font-weight: 800;
            color: #c8a84e;
            letter-spacing: 1px;
            text-transform: uppercase;
            background: linear-gradient(135deg, #c8a84e, #f5d97a);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            transition: transform 0.2s ease;
        }
        .my-logo:hover {
            transform: scale(1.02);
        }
        .my-logo i {
            margin-right: 0.3rem;
            -webkit-text-fill-color: #c8a84e;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 1px solid #3a6a3a;
            color: #c8f0c8;
            font-size: 1.6rem;
            padding: 0.3rem 0.7rem;
            border-radius: 6px;
            cursor: pointer;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: #1a3a1a;
        }
        .nav-menu {
            display: flex;
            flex-wrap: wrap;
            gap: 0.2rem 0.6rem;
            align-items: center;
        }
        .nav-menu a {
            padding: 0.4rem 0.8rem;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 500;
            color: #c8f0c8;
            background: transparent;
            transition: background 0.2s, color 0.2s;
        }
        .nav-menu a:hover,
        .nav-menu a:focus {
            background: #2a5a2a;
            color: #f5fff5;
            text-decoration: none;
        }
        .nav-menu a i {
            margin-right: 0.3rem;
            font-size: 0.85rem;
        }
        .breadcrumb {
            background: #162816;
            padding: 0.5rem 1.2rem;
            font-size: 0.85rem;
            border-bottom: 1px solid #2a4a2a;
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem 0.6rem;
        }
        .breadcrumb a {
            color: #8abf8a;
        }
        .breadcrumb a:hover {
            color: #c8f0c8;
        }
        .breadcrumb .sep {
            color: #5a7a5a;
            margin: 0 0.2rem;
        }
        .breadcrumb .current {
            color: #c8a84e;
        }
        .hero {
            background: linear-gradient(145deg, #0d1f0d 0%, #1a3a1a 100%);
            padding: 2.5rem 0 2rem;
            text-align: center;
            border-bottom: 2px solid #2a4a2a;
        }
        .hero h1 {
            font-size: 2.6rem;
            border-bottom: none;
            display: block;
        }
        .hero h1 i {
            color: #c8a84e;
            margin-right: 0.5rem;
        }
        .hero .sub-title {
            font-size: 1.2rem;
            color: #b8dab8;
            max-width: 800px;
            margin: 0.8rem auto 0;
        }
        .hero .meta-info {
            font-size: 0.9rem;
            color: #7a9a7a;
            margin-top: 1rem;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 0.5rem 1.5rem;
        }
        .hero .meta-info i {
            margin-right: 0.3rem;
        }
        .main-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2rem;
            padding: 2rem 0;
        }
        @media (max-width: 860px) {
            .main-grid {
                grid-template-columns: 1fr;
            }
            .sidebar {
                order: 2;
            }
            .content-area {
                order: 1;
            }
        }
        .content-area {
            min-width: 0;
        }
        .sidebar {
            min-width: 0;
        }
        .card {
            background: #142114;
            border: 1px solid #2a4a2a;
            border-radius: 12px;
            padding: 1.6rem;
            margin-bottom: 1.8rem;
            transition: box-shadow 0.2s;
        }
        .card:hover {
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
        }
        .card h2 {
            margin-top: 0;
        }
        .card h3 {
            margin-top: 1.2rem;
        }
        .card h4 {
            margin-top: 1rem;
        }
        .highlight-box {
            background: #1a2e1a;
            border-left: 5px solid #c8a84e;
            padding: 1rem 1.4rem;
            border-radius: 0 8px 8px 0;
            margin: 1.4rem 0;
        }
        .highlight-box strong {
            color: #f5d97a;
        }
        .stat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
            gap: 1rem;
            margin: 1.2rem 0;
        }
        .stat-item {
            background: #1a2e1a;
            padding: 0.8rem 1rem;
            border-radius: 10px;
            text-align: center;
            border: 1px solid #2a5a2a;
        }
        .stat-item .num {
            font-size: 1.8rem;
            font-weight: 800;
            color: #c8a84e;
            display: block;
        }
        .stat-item .label {
            font-size: 0.85rem;
            color: #8abf8a;
        }
        .btn {
            display: inline-block;
            padding: 0.5rem 1.2rem;
            border-radius: 30px;
            font-weight: 600;
            font-size: 0.9rem;
            background: #2a5a2a;
            color: #f5fff5;
            border: none;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
        }
        .btn:hover {
            background: #3a7a3a;
            transform: translateY(-1px);
            text-decoration: none;
            color: #fff;
        }
        .btn-gold {
            background: #a8892e;
            color: #0f1a0f;
        }
        .btn-gold:hover {
            background: #c8a84e;
            color: #0f1a0f;
        }
        .featured-image {
            margin: 1.5rem 0;
            border-radius: 12px;
            overflow: hidden;
            border: 2px solid #2a4a2a;
            background: #0a1a0a;
            text-align: center;
        }
        .featured-image img {
            width: 100%;
            max-height: 480px;
            object-fit: cover;
        }
        .featured-image figcaption {
            padding: 0.6rem 1rem;
            font-size: 0.85rem;
            color: #8abf8a;
            background: #0d1f0d;
            text-align: center;
            font-style: italic;
        }
        .record-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.4rem 0;
            font-size: 0.9rem;
        }
        .record-table th,
        .record-table td {
            padding: 0.6rem 0.8rem;
            border: 1px solid #2a4a2a;
            text-align: left;
        }
        .record-table th {
            background: #1a3a1a;
            color: #c8a84e;
            font-weight: 700;
        }
        .record-table tr:nth-child(even) {
            background: #142114;
        }
        .record-table tr:hover {
            background: #1e321e;
        }
        .form-group {
            margin-bottom: 1rem;
        }
        .form-group label {
            display: block;
            font-weight: 600;
            margin-bottom: 0.3rem;
            color: #c8f0c8;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 0.6rem 0.9rem;
            border-radius: 8px;
            border: 1px solid #3a5a3a;
            background: #0d1f0d;
            color: #e2f0e2;
            font-size: 0.95rem;
            transition: border 0.2s;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: #c8a84e;
            box-shadow: 0 0 0 2px rgba(200, 168, 78, 0.25);
        }
        .form-group textarea {
            min-height: 80px;
            resize: vertical;
        }
        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
        }
        @media (max-width: 500px) {
            .form-row {
                grid-template-columns: 1fr;
            }
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 0.2rem;
            font-size: 1.6rem;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            cursor: pointer;
            color: #4a6a4a;
            transition: color 0.2s;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #c8a84e;
        }
        .comment-item {
            padding: 0.8rem 0;
            border-bottom: 1px solid #1e3a1e;
        }
        .comment-item:last-child {
            border-bottom: none;
        }
        .comment-meta {
            font-size: 0.82rem;
            color: #7a9a7a;
            display: flex;
            gap: 0.8rem;
            flex-wrap: wrap;
        }
        .comment-meta strong {
            color: #c8f0c8;
        }
        .comment-body {
            margin-top: 0.3rem;
            font-size: 0.95rem;
        }
        .widget {
            background: #142114;
            border: 1px solid #2a4a2a;
            border-radius: 12px;
            padding: 1.2rem 1.4rem;
            margin-bottom: 1.6rem;
        }
        .widget h3 {
            margin-top: 0;
            font-size: 1.2rem;
            border-bottom: 1px solid #2a4a2a;
            padding-bottom: 0.4rem;
        }
        .widget ul {
            list-style: none;
            padding: 0;
            margin: 0.6rem 0 0;
        }
        .widget ul li {
            padding: 0.3rem 0;
            border-bottom: 1px solid #1a2e1a;
        }
        .widget ul li:last-child {
            border-bottom: none;
        }
        .widget ul li a {
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        .widget ul li a i {
            color: #c8a84e;
            font-size: 0.75rem;
        }
        .site-footer {
            background: #0a140a;
            border-top: 2px solid #1a3a1a;
            padding: 2rem 0 1.2rem;
            margin-top: 2rem;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.6rem;
        }
        .footer-grid h4 {
            color: #c8a84e;
            margin-top: 0;
            font-size: 1.1rem;
        }
        .footer-grid ul {
            list-style: none;
            padding: 0;
        }
        .footer-grid ul li {
            padding: 0.2rem 0;
        }
        .footer-grid ul li a {
            font-size: 0.9rem;
            color: #8abf8a;
        }
        .footer-grid ul li a:hover {
            color: #c8f0c8;
        }
        friend-link {
            display: block;
            padding: 0.8rem 0;
            border-top: 1px solid #1a3a1a;
            margin-top: 1.2rem;
            font-size: 0.9rem;
            color: #7a9a7a;
        }
        friend-link a {
            color: #8abf8a;
            margin: 0 0.4rem;
        }
        friend-link a:hover {
            color: #c8f0c8;
        }
        .copyright {
            text-align: center;
            padding-top: 1.2rem;
            font-size: 0.85rem;
            color: #5a7a5a;
            border-top: 1px solid #1a3a1a;
            margin-top: 0.8rem;
        }
        .copyright i {
            margin: 0 0.3rem;
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            .nav-menu {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: stretch;
                background: #0d1f0d;
                border: 1px solid #2a4a2a;
                border-radius: 10px;
                padding: 0.6rem;
                margin-top: 0.4rem;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu a {
                padding: 0.6rem 0.8rem;
                border-radius: 8px;
            }
            .hero h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            h3 {
                font-size: 1.15rem;
            }
            .container {
                padding: 0 0.8rem;
            }
            .card {
                padding: 1rem;
            }
            .stat-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.5rem;
            }
            .header-inner .my-logo {
                font-size: 1.3rem;
            }
            .record-table {
                font-size: 0.78rem;
            }
            .record-table th,
            .record-table td {
                padding: 0.4rem 0.5rem;
            }
        }
        .text-gold {
            color: #c8a84e;
        }
        .text-muted {
            color: #7a9a7a;
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .flex-between {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            align-items: center;
            gap: 0.6rem;
        }
        .emoji-lg {
            font-size: 1.4rem;
        }
        .tag {
            display: inline-block;
            background: #1a3a1a;
            color: #8abf8a;
            padding: 0.15rem 0.6rem;
            border-radius: 12px;
            font-size: 0.75rem;
            font-weight: 600;
        }
        .tag-gold {
            background: #a8892e;
            color: #0f1a0f;
        }
        .anchor-offset {
            scroll-margin-top: 80px;
        }
