        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background: linear-gradient(135deg, #0a2e0a 0%, #1a5c1a 100%);
            color: #f0f0f0;
            line-height: 1.8;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: #4ade80;
            text-decoration: none;
            transition: color 0.3s, transform 0.2s;
        }
        a:hover {
            color: #86efac;
            transform: translateY(-2px);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .btn {
            display: inline-block;
            background: linear-gradient(90deg, #22c55e, #16a34a);
            color: white;
            padding: 12px 28px;
            border-radius: 50px;
            border: none;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
        }
        .btn:hover {
            background: linear-gradient(90deg, #4ade80, #22c55e);
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(34, 197, 94, 0.5);
        }
        header {
            background: rgba(10, 46, 10, 0.95);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 2px solid #22c55e;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 900;
            background: linear-gradient(90deg, #22c55e, #86efac);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 2px 5px rgba(0,0,0,0.2);
        }
        .my-logo a {
            background: none;
            -webkit-text-fill-color: inherit;
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        nav a {
            color: #d1fae5;
            font-weight: 600;
            font-size: 1.05rem;
            padding: 5px 10px;
            border-radius: 8px;
        }
        nav a:hover {
            background: rgba(34, 197, 94, 0.2);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #22c55e;
        }
        .breadcrumb {
            padding: 15px 20px;
            background: rgba(26, 92, 26, 0.5);
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: #bbf7d0;
        }
        .breadcrumb span {
            color: #d1fae5;
            margin: 0 8px;
        }
        main {
            flex: 1;
            padding: 40px 0;
        }
        article {
            background: rgba(13, 42, 13, 0.85);
            border-radius: 20px;
            padding: 40px;
            margin-bottom: 40px;
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(34, 197, 94, 0.2);
        }
        h1 {
            font-size: 3.2rem;
            color: #86efac;
            margin-bottom: 30px;
            text-align: center;
            line-height: 1.2;
            text-shadow: 0 2px 10px rgba(0,0,0,0.5);
        }
        h2 {
            font-size: 2.4rem;
            color: #4ade80;
            margin-top: 50px;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px dashed #22c55e;
        }
        h3 {
            font-size: 1.8rem;
            color: #bbf7d0;
            margin-top: 35px;
            margin-bottom: 15px;
        }
        h4 {
            font-size: 1.4rem;
            color: #d1fae5;
            margin-top: 25px;
            margin-bottom: 10px;
        }
        p {
            margin-bottom: 25px;
            font-size: 1.15rem;
            color: #e5e7eb;
        }
        .intro {
            font-size: 1.3rem;
            background: rgba(34, 197, 94, 0.08);
            padding: 25px;
            border-radius: 15px;
            border-left: 6px solid #22c55e;
            margin-bottom: 40px;
        }
        strong {
            color: #86efac;
            font-weight: 700;
        }
        em {
            color: #bbf7d0;
            font-style: italic;
        }
        .highlight-box {
            background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(21, 128, 61, 0.1));
            border: 2px solid #22c55e;
            border-radius: 15px;
            padding: 25px;
            margin: 30px 0;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
            margin: 40px 0;
        }
        .stat-card {
            background: rgba(26, 92, 26, 0.6);
            border-radius: 15px;
            padding: 25px;
            text-align: center;
            border-top: 5px solid #4ade80;
            transition: transform 0.3s;
        }
        .stat-card:hover {
            transform: translateY(-10px);
        }
        .stat-number {
            font-size: 3rem;
            font-weight: bold;
            color: #22c55e;
            display: block;
        }
        .quote {
            font-style: italic;
            font-size: 1.4rem;
            color: #bbf7d0;
            text-align: center;
            padding: 30px;
            border-left: 6px solid #4ade80;
            background: rgba(26, 92, 26, 0.4);
            margin: 40px 0;
            border-radius: 0 15px 15px 0;
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: #9ca3af;
            margin-top: 10px;
            font-size: 0.95rem;
        }
        .search-section {
            background: rgba(21, 128, 61, 0.2);
            padding: 30px;
            border-radius: 15px;
            text-align: center;
            margin: 50px 0;
        }
        .search-form {
            display: flex;
            max-width: 600px;
            margin: 25px auto 0;
        }
        .search-input {
            flex: 1;
            padding: 18px 25px;
            border: 2px solid #22c55e;
            border-radius: 50px 0 0 50px;
            background: #0a2e0a;
            color: white;
            font-size: 1.1rem;
            outline: none;
        }
        .search-btn {
            background: linear-gradient(90deg, #22c55e, #16a34a);
            color: white;
            border: none;
            border-radius: 0 50px 50px 0;
            padding: 0 35px;
            cursor: pointer;
            font-size: 1.1rem;
            font-weight: bold;
            transition: background 0.3s;
        }
        .search-btn:hover {
            background: linear-gradient(90deg, #4ade80, #22c55e);
        }
        .interactive-section {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
            margin: 60px 0;
        }
        .comment-box, .rating-box {
            background: rgba(13, 42, 13, 0.9);
            border-radius: 20px;
            padding: 30px;
            border: 1px solid rgba(34, 197, 94, 0.3);
        }
        .form-group {
            margin-bottom: 25px;
        }
        .form-label {
            display: block;
            margin-bottom: 10px;
            color: #bbf7d0;
            font-weight: 600;
        }
        .form-input, .form-textarea {
            width: 100%;
            padding: 15px;
            border-radius: 12px;
            border: 1px solid #4ade80;
            background: rgba(10, 46, 10, 0.7);
            color: white;
            font-size: 1rem;
            resize: vertical;
        }
        .form-textarea {
            min-height: 150px;
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin: 20px 0;
        }
        .star {
            font-size: 2.5rem;
            color: #4b5563;
            cursor: pointer;
            transition: color 0.3s;
        }
        .star.active, .star:hover {
            color: #fbbf24;
        }
        .update-time {
            text-align: right;
            font-size: 0.95rem;
            color: #9ca3af;
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px dashed #4b5563;
        }
        footer {
            background: #0a2e0a;
            padding: 50px 0 30px;
            margin-top: 60px;
            border-top: 3px solid #22c55e;
        }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-column h4 {
            color: #4ade80;
            margin-bottom: 25px;
            font-size: 1.3rem;
        }
        .footer-column ul {
            list-style: none;
        }
        .footer-column li {
            margin-bottom: 12px;
        }
        .friend-links {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: center;
            margin: 40px 0;
        }
        friend-link {
            background: rgba(34, 197, 94, 0.1);
            padding: 12px 25px;
            border-radius: 50px;
            border: 1px solid rgba(34, 197, 94, 0.3);
            transition: all 0.3s;
        }
        friend-link:hover {
            background: rgba(34, 197, 94, 0.2);
            transform: scale(1.05);
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #1a5c1a;
            color: #9ca3af;
            font-size: 0.9rem;
        }
        @media (max-width: 1024px) {
            h1 { font-size: 2.8rem; }
            h2 { font-size: 2.1rem; }
            article { padding: 30px; }
        }
        @media (max-width: 768px) {
            .header-container { flex-wrap: wrap; }
            nav ul {
                display: none;
                flex-direction: column;
                width: 100%;
                background: rgba(10, 46, 10, 0.98);
                position: absolute;
                top: 100%;
                left: 0;
                padding: 20px;
                border-top: 2px solid #22c55e;
            }
            nav ul.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .search-form {
                flex-direction: column;
            }
            .search-input {
                border-radius: 50px;
                margin-bottom: 15px;
            }
            .search-btn {
                border-radius: 50px;
                padding: 18px;
            }
            .interactive-section {
                grid-template-columns: 1fr;
            }
            h1 { font-size: 2.4rem; }
            h2 { font-size: 1.9rem; }
            h3 { font-size: 1.6rem; }
            .intro { font-size: 1.2rem; }
        }
        @media (max-width: 480px) {
            .container { padding: 0 15px; }
            article { padding: 25px 20px; }
            h1 { font-size: 2rem; }
            .stat-card { padding: 20px; }
            .friend-links { flex-direction: column; align-items: center; }
        }
