        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #0d1b0e;
            color: #e0f0e0;
            line-height: 1.7;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: #7ddf7d;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover {
            color: #b5ffb5;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        h1,
        h2,
        h3,
        h4 {
            font-weight: 700;
            line-height: 1.3;
            color: #f0fff0;
        }
        h1 {
            font-size: 2.4rem;
            margin-bottom: 0.75rem;
        }
        h2 {
            font-size: 1.8rem;
            margin: 2.5rem 0 1rem 0;
            border-left: 5px solid #4caf50;
            padding-left: 1rem;
        }
        h3 {
            font-size: 1.35rem;
            margin: 1.8rem 0 0.8rem 0;
            color: #c8e6c9;
        }
        h4 {
            font-size: 1.1rem;
            margin: 1.2rem 0 0.5rem 0;
            color: #a5d6a7;
        }
        p {
            margin-bottom: 1.2rem;
            color: #d0e0d0;
        }
        ul,
        ol {
            margin: 0.8rem 0 1.4rem 2rem;
            color: #d0e0d0;
        }
        li {
            margin-bottom: 0.4rem;
        }
        strong {
            color: #a5d6a7;
            font-weight: 700;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.2rem;
        }
        header {
            background: linear-gradient(135deg, #0a1f0b 0%, #1a3a1a 100%);
            padding: 0.8rem 0;
            border-bottom: 3px solid #2e7d32;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.6);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.8rem;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: #81c784;
            text-shadow: 0 0 20px rgba(76, 175, 80, 0.3);
            letter-spacing: 1px;
            transition: transform 0.2s;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .my-logo:hover {
            transform: scale(1.02);
            text-decoration: none;
            color: #a5d6a7;
        }
        .my-logo i {
            font-size: 2rem;
            color: #66bb6a;
        }
        .nav-wrapper {
            display: flex;
            align-items: center;
            gap: 1.2rem;
        }
        nav.main-nav {
            display: flex;
            gap: 0.4rem;
            flex-wrap: wrap;
        }
        nav.main-nav a {
            padding: 0.5rem 1rem;
            border-radius: 30px;
            font-weight: 600;
            font-size: 0.9rem;
            color: #c8e6c9;
            background: rgba(255, 255, 255, 0.06);
            transition: all 0.25s ease;
            border: 1px solid transparent;
        }
        nav.main-nav a:hover {
            background: rgba(76, 175, 80, 0.25);
            border-color: #4caf50;
            color: #fff;
            text-decoration: none;
            transform: translateY(-1px);
        }
        nav.main-nav a i {
            margin-right: 0.4rem;
            font-size: 0.85rem;
        }
        .hamburger {
            display: none;
            background: transparent;
            border: none;
            color: #81c784;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.2rem 0.4rem;
            transition: color 0.2s;
        }
        .hamburger:hover {
            color: #b5ffb5;
        }
        .nav-mobile {
            display: none;
            width: 100%;
            flex-direction: column;
            gap: 0.3rem;
            padding: 0.8rem 0 0.2rem 0;
            border-top: 1px solid rgba(76, 175, 80, 0.2);
            margin-top: 0.6rem;
        }
        .nav-mobile a {
            padding: 0.6rem 1rem;
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.04);
            color: #c8e6c9;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        .nav-mobile a:hover {
            background: rgba(76, 175, 80, 0.2);
            text-decoration: none;
            color: #fff;
        }
        .nav-mobile a i {
            width: 1.2rem;
        }
        .breadcrumb {
            background: rgba(0, 0, 0, 0.3);
            padding: 0.6rem 0;
            font-size: 0.85rem;
            border-bottom: 1px solid rgba(76, 175, 80, 0.15);
        }
        .breadcrumb ol {
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem 0.6rem;
            list-style: none;
            margin: 0;
            padding: 0;
            color: #a0c0a0;
        }
        .breadcrumb ol li+li::before {
            content: "›";
            margin-right: 0.6rem;
            color: #4caf50;
            font-weight: 700;
        }
        .breadcrumb a {
            color: #81c784;
        }
        .breadcrumb a:hover {
            color: #b5ffb5;
        }
        .breadcrumb .current {
            color: #c8e6c9;
        }
        main {
            flex: 1;
            padding: 2rem 0 3rem 0;
        }
        .hero-img {
            border-radius: 16px;
            overflow: hidden;
            margin: 1.5rem 0 2rem 0;
            box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
            border: 2px solid rgba(76, 175, 80, 0.2);
            background: #1a2a1a;
        }
        .hero-img img {
            width: 100%;
            aspect-ratio: 1200/630;
            object-fit: cover;
        }
        .hero-img figcaption {
            padding: 0.8rem 1.2rem;
            font-size: 0.9rem;
            color: #a0c0a0;
            background: rgba(0, 0, 0, 0.4);
            font-style: italic;
        }
        .last-updated {
            display: inline-block;
            background: rgba(76, 175, 80, 0.15);
            padding: 0.3rem 1rem;
            border-radius: 30px;
            font-size: 0.85rem;
            color: #a5d6a7;
            border: 1px solid rgba(76, 175, 80, 0.2);
            margin-bottom: 1.5rem;
        }
        .last-updated i {
            margin-right: 0.4rem;
        }
        .search-section {
            background: linear-gradient(135deg, #112211, #1a3a1a);
            padding: 2rem 1.5rem;
            border-radius: 16px;
            margin: 2.5rem 0;
            border: 1px solid rgba(76, 175, 80, 0.2);
        }
        .search-section h3 {
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        .search-form {
            display: flex;
            gap: 0.8rem;
            flex-wrap: wrap;
            margin-top: 1rem;
        }
        .search-form input {
            flex: 1;
            min-width: 180px;
            padding: 0.8rem 1.2rem;
            border-radius: 30px;
            border: 2px solid rgba(76, 175, 80, 0.3);
            background: rgba(0, 0, 0, 0.4);
            color: #e0f0e0;
            font-size: 1rem;
            outline: none;
            transition: border-color 0.3s;
        }
        .search-form input:focus {
            border-color: #4caf50;
            background: rgba(0, 0, 0, 0.6);
        }
        .search-form button {
            padding: 0.8rem 1.8rem;
            border-radius: 30px;
            border: none;
            background: linear-gradient(135deg, #2e7d32, #4caf50);
            color: #fff;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.25s ease;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-form button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 25px rgba(76, 175, 80, 0.4);
            background: linear-gradient(135deg, #388e3c, #66bb6a);
        }
        .interaction-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
            margin: 2.5rem 0;
        }
        @media (max-width:768px) {
            .interaction-grid {
                grid-template-columns: 1fr;
            }
        }
        .card {
            background: linear-gradient(145deg, #112211, #0d1b0e);
            border-radius: 16px;
            padding: 1.6rem 1.8rem;
            border: 1px solid rgba(76, 175, 80, 0.15);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }
        .card h3 {
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 0.6rem;
            font-size: 1.2rem;
        }
        .card label {
            display: block;
            margin: 0.8rem 0 0.3rem 0;
            font-weight: 600;
            font-size: 0.95rem;
            color: #c8e6c9;
        }
        .card input,
        .card textarea {
            width: 100%;
            padding: 0.7rem 1rem;
            border-radius: 10px;
            border: 2px solid rgba(76, 175, 80, 0.2);
            background: rgba(0, 0, 0, 0.3);
            color: #e0f0e0;
            font-size: 0.95rem;
            outline: none;
            transition: border-color 0.3s;
            font-family: inherit;
        }
        .card input:focus,
        .card textarea:focus {
            border-color: #4caf50;
        }
        .card textarea {
            min-height: 80px;
            resize: vertical;
        }
        .card button {
            margin-top: 1rem;
            padding: 0.7rem 1.6rem;
            border-radius: 30px;
            border: none;
            background: linear-gradient(135deg, #2e7d32, #4caf50);
            color: #fff;
            font-weight: 700;
            font-size: 0.95rem;
            cursor: pointer;
            transition: all 0.25s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        .card button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 25px rgba(76, 175, 80, 0.3);
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 0.2rem;
            margin: 0.6rem 0 0.2rem 0;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 2rem;
            color: #3a5a3a;
            cursor: pointer;
            transition: color 0.2s, transform 0.15s;
            margin: 0;
            padding: 0 0.1rem;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #ffb300;
            transform: scale(1.1);
        }
        .star-rating label i {
            pointer-events: none;
        }
        .links-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
            gap: 0.6rem;
            margin: 1.5rem 0;
        }
        .links-list a {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 0.8rem;
            background: rgba(255, 255, 255, 0.04);
            border-radius: 8px;
            border: 1px solid rgba(76, 175, 80, 0.1);
            transition: all 0.2s;
            font-size: 0.9rem;
        }
        .links-list a:hover {
            background: rgba(76, 175, 80, 0.15);
            border-color: #4caf50;
            text-decoration: none;
            transform: translateX(4px);
        }
        .links-list a i {
            color: #4caf50;
            font-size: 0.85rem;
        }
        footer {
            background: linear-gradient(135deg, #0a1f0b, #0d1b0e);
            border-top: 3px solid #2e7d32;
            padding: 2.5rem 0 1.5rem 0;
            margin-top: 2rem;
        }
        footer .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 1.5rem;
            margin-bottom: 1.5rem;
        }
        footer h4 {
            color: #81c784;
            margin-top: 0;
            font-size: 1.05rem;
            border-bottom: 2px solid rgba(76, 175, 80, 0.2);
            padding-bottom: 0.5rem;
        }
        friend-link {
            display: block;
        }
        friend-link a {
            display: block;
            padding: 0.3rem 0;
            color: #a0c0a0;
            font-size: 0.9rem;
            transition: color 0.2s;
        }
        friend-link a:hover {
            color: #b5ffb5;
        }
        friend-link a i {
            margin-right: 0.4rem;
            color: #4caf50;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(76, 175, 80, 0.15);
            color: #6a8a6a;
            font-size: 0.85rem;
        }
        .copyright a {
            color: #81c784;
        }
        @media (max-width:900px) {
            h1 {
                font-size: 1.9rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            h3 {
                font-size: 1.15rem;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .my-logo i {
                font-size: 1.5rem;
            }
        }
        @media (max-width:768px) {
            .hamburger {
                display: block;
            }
            nav.main-nav {
                display: none;
            }
            .nav-mobile.open {
                display: flex;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form input {
                min-width: auto;
            }
            .breadcrumb ol {
                font-size: 0.78rem;
            }
            .card {
                padding: 1.2rem;
            }
            .star-rating label {
                font-size: 1.6rem;
            }
        }
        @media (max-width:480px) {
            .container {
                padding: 0 0.8rem;
            }
            h1 {
                font-size: 1.5rem;
            }
            h2 {
                font-size: 1.2rem;
                padding-left: 0.6rem;
            }
            .my-logo {
                font-size: 1.1rem;
            }
            .my-logo i {
                font-size: 1.2rem;
            }
            .links-list {
                grid-template-columns: 1fr;
            }
            footer .footer-grid {
                grid-template-columns: 1fr;
            }
        }
        .emoji {
            font-style: normal;
        }
        .highlight {
            background: rgba(76, 175, 80, 0.12);
            padding: 0.1rem 0.4rem;
            border-radius: 4px;
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .text-center {
            text-align: center;
        }
        .flex-center {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .skeleton {
            background: linear-gradient(90deg, #1a2a1a 25%, #2a3a2a 50%, #1a2a1a 75%);
            background-size: 200% 100%;
            animation: shimmer 1.5s infinite;
            border-radius: 8px;
        }
        @keyframes shimmer {
            0% {
                background-position: 200% 0;
            }
            100% {
                background-position: -200% 0;
            }
        }
        ::-webkit-scrollbar {
            width: 8px;
            height: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #0d1b0e;
        }
        ::-webkit-scrollbar-thumb {
            background: #2e7d32;
            border-radius: 10px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #4caf50;
        }
