* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', 'Roboto', system-ui, -apple-system, sans-serif;
            background: #0f0f1a;
            color: #e8e8f0;
            line-height: 1.7;
            font-size: 16px;
            scroll-behavior: smooth;
        }
        a {
            color: #58cc02;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover {
            color: #7ae02e;
            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, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
            padding: 16px 0;
            border-bottom: 3px solid #58cc02;
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(8px);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            background: linear-gradient(135deg, #58cc02, #b4e87c);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.5px;
            text-shadow: 0 0 30px rgba(88, 204, 2, 0.2);
            transition: transform 0.3s ease;
        }
        .my-logo:hover {
            transform: scale(1.02);
            text-decoration: none;
        }
        .my-logo small {
            font-size: 0.7rem;
            -webkit-text-fill-color: #aaa;
            display: block;
            font-weight: 300;
            letter-spacing: 1px;
        }
        .nav-toggle {
            display: none;
            background: transparent;
            border: 2px solid #58cc02;
            color: #58cc02;
            font-size: 1.6rem;
            padding: 6px 14px;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.25s ease;
        }
        .nav-toggle:hover {
            background: #58cc02;
            color: #0f0f1a;
        }
        .main-nav {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
        }
        .main-nav a {
            padding: 8px 16px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 0.9rem;
            color: #c8d6e5;
            border: 1px solid transparent;
            transition: all 0.25s ease;
        }
        .main-nav a:hover {
            border-color: #58cc02;
            color: #58cc02;
            background: rgba(88, 204, 2, 0.08);
            text-decoration: none;
        }
        .main-nav a.active {
            background: #58cc02;
            color: #0f0f1a;
            border-color: #58cc02;
        }
        .breadcrumb {
            background: rgba(255, 255, 255, 0.04);
            padding: 10px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
            font-size: 0.85rem;
            color: #8899aa;
        }
        .breadcrumb li+li::before {
            content: "/";
            margin-right: 10px;
            color: #444;
        }
        .breadcrumb a {
            color: #58cc02;
        }
        .breadcrumb .current {
            color: #b4e87c;
            font-weight: 500;
        }
        .hero {
            padding: 50px 0 30px;
            text-align: center;
            background: radial-gradient(ellipse at center, rgba(88, 204, 2, 0.06), transparent 70%);
        }
        .hero h1 {
            font-size: 2.6rem;
            font-weight: 800;
            background: linear-gradient(135deg, #f0fff0, #b4e87c, #58cc02);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
            margin-bottom: 16px;
        }
        .hero .sub-title {
            font-size: 1.1rem;
            color: #a0b0c0;
            max-width: 800px;
            margin: 0 auto 20px;
        }
        .hero .meta-info {
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
            font-size: 0.9rem;
            color: #7890a0;
        }
        .hero .meta-info i {
            color: #58cc02;
            margin-right: 6px;
        }
        .last-updated {
            display: inline-block;
            background: rgba(88, 204, 2, 0.12);
            padding: 4px 18px;
            border-radius: 30px;
            font-size: 0.85rem;
            color: #b4e87c;
            margin-top: 12px;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 40px 0 60px;
        }
        .main-content h2 {
            font-size: 2rem;
            font-weight: 700;
            color: #58cc02;
            margin: 48px 0 16px;
            border-left: 5px solid #58cc02;
            padding-left: 18px;
        }
        .main-content h2:first-of-type {
            margin-top: 0;
        }
        .main-content h3 {
            font-size: 1.5rem;
            font-weight: 600;
            color: #b4e87c;
            margin: 32px 0 12px;
        }
        .main-content h4 {
            font-size: 1.15rem;
            font-weight: 600;
            color: #d0e8b0;
            margin: 24px 0 8px;
        }
        .main-content p {
            margin-bottom: 18px;
            color: #d0d8e0;
            font-size: 1.02rem;
        }
        .main-content strong {
            color: #f0fff0;
            font-weight: 700;
        }
        .main-content ul,
        .main-content ol {
            margin: 12px 0 20px 24px;
            color: #c8d6e5;
        }
        .main-content li {
            margin-bottom: 8px;
        }
        .highlight-box {
            background: linear-gradient(135deg, rgba(88, 204, 2, 0.08), rgba(88, 204, 2, 0.02));
            border: 1px solid rgba(88, 204, 2, 0.25);
            border-radius: 16px;
            padding: 24px 28px;
            margin: 28px 0;
        }
        .highlight-box h4 {
            color: #58cc02;
            margin-top: 0;
        }
        .feature-image {
            margin: 32px 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
        }
        .feature-image img {
            width: 100%;
            object-fit: cover;
        }
        .feature-image figcaption {
            background: rgba(0, 0, 0, 0.5);
            padding: 10px 18px;
            font-size: 0.85rem;
            color: #aab;
            text-align: center;
        }
        .sidebar {
            position: sticky;
            top: 100px;
            align-self: start;
        }
        .sidebar-card {
            background: rgba(255, 255, 255, 0.03);
            border-radius: 16px;
            padding: 24px;
            margin-bottom: 28px;
            border: 1px solid rgba(255, 255, 255, 0.06);
        }
        .sidebar-card h4 {
            font-size: 1.1rem;
            color: #58cc02;
            margin-bottom: 16px;
            border-bottom: 1px solid rgba(88, 204, 2, 0.2);
            padding-bottom: 10px;
        }
        .sidebar-card ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .sidebar-card li {
            margin-bottom: 10px;
        }
        .sidebar-card a {
            display: block;
            padding: 6px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.04);
            font-size: 0.92rem;
        }
        .sidebar-card a i {
            margin-right: 8px;
            color: #58cc02;
            font-size: 0.8rem;
        }
        .search-form {
            display: flex;
            gap: 8px;
            margin: 18px 0;
        }
        .search-form input {
            flex: 1;
            padding: 12px 18px;
            border-radius: 30px;
            border: 2px solid #2a3a4a;
            background: #1a1a2e;
            color: #f0f0f0;
            font-size: 1rem;
            outline: none;
            transition: border 0.3s ease;
        }
        .search-form input:focus {
            border-color: #58cc02;
        }
        .search-form button {
            padding: 12px 28px;
            border-radius: 30px;
            border: none;
            background: #58cc02;
            color: #0f0f1a;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.25s ease;
        }
        .search-form button:hover {
            background: #7ae02e;
            transform: scale(1.02);
        }
        .comment-section,
        .rating-section {
            background: rgba(255, 255, 255, 0.02);
            border-radius: 16px;
            padding: 28px;
            margin: 40px 0;
            border: 1px solid rgba(255, 255, 255, 0.06);
        }
        .comment-section h3,
        .rating-section h3 {
            color: #58cc02;
            font-size: 1.6rem;
            margin-bottom: 20px;
        }
        .comment-form textarea,
        .comment-form input,
        .rating-form select,
        .rating-form input {
            width: 100%;
            padding: 12px 16px;
            border-radius: 10px;
            border: 2px solid #2a3a4a;
            background: #1a1a2e;
            color: #f0f0f0;
            font-size: 1rem;
            margin-bottom: 14px;
            outline: none;
            transition: border 0.3s ease;
        }
        .comment-form textarea:focus,
        .comment-form input:focus,
        .rating-form select:focus {
            border-color: #58cc02;
        }
        .comment-form textarea {
            min-height: 100px;
            resize: vertical;
        }
        .comment-form button,
        .rating-form button {
            padding: 12px 36px;
            border-radius: 30px;
            border: none;
            background: #58cc02;
            color: #0f0f1a;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.25s ease;
        }
        .comment-form button:hover,
        .rating-form button:hover {
            background: #7ae02e;
            transform: scale(1.02);
        }
        .star-rating {
            display: flex;
            gap: 6px;
            font-size: 2rem;
            color: #444;
            margin-bottom: 14px;
        }
        .star-rating i {
            cursor: pointer;
            transition: color 0.2s ease;
        }
        .star-rating i.active,
        .star-rating i:hover {
            color: #ffc107;
        }
        .site-footer {
            background: #0a0a16;
            border-top: 2px solid rgba(88, 204, 2, 0.2);
            padding: 40px 0 20px;
            margin-top: 40px;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 40px;
            padding-bottom: 30px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }
        .footer-inner h5 {
            color: #58cc02;
            font-size: 1.1rem;
            margin-bottom: 14px;
        }
        .footer-inner a {
            display: block;
            padding: 4px 0;
            font-size: 0.9rem;
            color: #8899aa;
        }
        .footer-inner a:hover {
            color: #58cc02;
        }
        friend-link {
            display: block;
            padding: 20px 0;
            font-size: 0.9rem;
            color: #667788;
        }
        friend-link a {
            color: #58cc02;
            margin: 0 6px;
        }
        friend-link a:hover {
            color: #7ae02e;
        }
        .copyright {
            text-align: center;
            padding: 20px 0 0;
            font-size: 0.85rem;
            color: #556677;
        }
        .copyright strong {
            color: #8899aa;
        }
        @media (max-width: 900px) {
            .content-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            .sidebar {
                position: static;
                order: 2;
            }
            .footer-inner {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 700px) {
            .nav-toggle {
                display: block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                padding-top: 16px;
                gap: 4px;
            }
            .main-nav.show {
                display: flex;
            }
            .main-nav a {
                padding: 12px 16px;
                border-radius: 8px;
            }
            .hero h1 {
                font-size: 1.8rem;
            }
            .hero .meta-info {
                gap: 14px;
                font-size: 0.8rem;
            }
            .header-inner {
                align-items: center;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .footer-inner {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            .search-form {
                flex-wrap: wrap;
            }
            .search-form button {
                width: 100%;
            }
            .star-rating {
                font-size: 1.6rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 14px;
            }
            .hero h1 {
                font-size: 1.5rem;
            }
            .main-content h2 {
                font-size: 1.5rem;
            }
            .main-content h3 {
                font-size: 1.2rem;
            }
            .comment-section,
            .rating-section {
                padding: 18px;
            }
        }
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #1a1a2e;
        }
        ::-webkit-scrollbar-thumb {
            background: #58cc02;
            border-radius: 10px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #7ae02e;
        }
        ::selection {
            background: #58cc02;
            color: #0f0f1a;
        }
