        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: #333;
            background-color: #f8f9fa;
            background-image: linear-gradient(to bottom, #e9f5db 0%, #f8f9fa 100px);
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 15px;
        }
        img { max-width: 100%; height: auto; display: block; }
        .site-header {
            background: linear-gradient(135deg, #1a472a 0%, #2a623d 100%);
            color: white;
            padding: 1.5rem 0;
            border-bottom: 5px solid #ffde00;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            padding: 0 1rem;
        }
        .my-logo {
            font-family: 'Impact', 'Arial Black', sans-serif;
            font-size: 2.8rem;
            font-weight: bold;
            text-decoration: none;
            color: #ffde00;
            text-shadow: 3px 3px 0 #000, 6px 6px 8px rgba(0,0,0,0.5);
            letter-spacing: 1.5px;
            transition: transform 0.3s ease, text-shadow 0.3s ease;
        }
        .my-logo:hover {
            transform: scale(1.05);
            text-shadow: 3px 3px 0 #000, 8px 8px 12px rgba(0,0,0,0.7);
        }
        .main-nav {
            display: flex;
            gap: 2rem;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 1.8rem;
        }
        .nav-links a {
            color: #fff;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 0.5rem 0.8rem;
            border-radius: 4px;
            transition: all 0.3s ease;
            position: relative;
        }
        .nav-links a:hover,
        .nav-links a:focus {
            background-color: rgba(255, 222, 0, 0.2);
            color: #ffde00;
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 3px;
            background: #ffde00;
            left: 50%;
            bottom: -5px;
            transition: all 0.3s ease;
        }
        .nav-links a:hover::after {
            width: 80%;
            left: 10%;
        }
        .search-form {
            display: flex;
            margin-left: 1rem;
        }
        .search-input {
            padding: 0.7rem 1rem;
            border: none;
            border-radius: 25px 0 0 25px;
            width: 250px;
            font-size: 1rem;
            background: rgba(255,255,255,0.9);
        }
        .search-btn {
            background: #ffde00;
            border: none;
            border-radius: 0 25px 25px 0;
            padding: 0.7rem 1.2rem;
            cursor: pointer;
            color: #1a472a;
            font-weight: bold;
            transition: background 0.3s ease;
        }
        .search-btn:hover {
            background: #ffed4e;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
            padding: 0.5rem;
        }
        .breadcrumb {
            padding: 1rem 1.5rem;
            background: #e9ecef;
            border-radius: 0 0 8px 8px;
            margin-bottom: 2rem;
            font-size: 0.95rem;
        }
        .breadcrumb a {
            color: #1a472a;
            text-decoration: none;
            font-weight: 500;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb span {
            color: #6c757d;
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            margin: 2rem 0;
        }
        .main-article {
            background: white;
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: 0 6px 20px rgba(0,0,0,0.08);
            border-left: 8px solid #2a623d;
        }
        .article-meta {
            color: #6c757d;
            font-size: 0.95rem;
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid #dee2e6;
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        h1 {
            color: #1a472a;
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
        }
        h2 {
            color: #2a623d;
            font-size: 2.1rem;
            margin: 2.5rem 0 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 3px solid #ffde00;
        }
        h3 {
            color: #3e7d4f;
            font-size: 1.7rem;
            margin: 2rem 0 1rem;
        }
        h4 {
            color: #4d9361;
            font-size: 1.4rem;
            margin: 1.5rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
            hyphens: auto;
        }
        .lead {
            font-size: 1.3rem;
            font-weight: 500;
            color: #2a623d;
            background: #f1f8e9;
            padding: 1.2rem;
            border-radius: 8px;
            border-left: 5px solid #ffde00;
        }
        .highlight {
            background: linear-gradient(120deg, #ffde0077 0%, #ffde0077 100%);
            padding: 0.2rem 0.5rem;
            border-radius: 3px;
            font-weight: 600;
        }
        .stats-box {
            background: #e7f3ff;
            border: 2px solid #4d9361;
            border-radius: 10px;
            padding: 1.5rem;
            margin: 2rem 0;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
        }
        .stat-item {
            text-align: center;
        }
        .stat-value {
            font-size: 2.5rem;
            font-weight: 800;
            color: #1a472a;
            line-height: 1;
        }
        .stat-label {
            font-size: 1rem;
            color: #6c757d;
            margin-top: 0.5rem;
        }
        a {
            color: #2a623d;
            font-weight: 600;
            text-decoration: none;
            transition: color 0.2s ease, background 0.2s ease;
            padding: 0.1rem 0.2rem;
            border-radius: 2px;
        }
        a:hover {
            color: #ffde00;
            background-color: #1a472a;
        }
        .link-list {
            background: #f8f9fa;
            padding: 1.5rem;
            border-radius: 8px;
            margin: 2rem 0;
            border-left: 5px solid #1a472a;
        }
        .link-list h3 {
            margin-top: 0;
        }
        .link-list ul {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 0.8rem;
            list-style: none;
        }
        .link-list li::before {
            content: '🦖';
            margin-right: 0.8rem;
        }
        .article-img {
            margin: 2.5rem auto;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
            border: 5px solid #fff;
            max-width: 800px;
        }
        .img-caption {
            text-align: center;
            font-style: italic;
            color: #6c757d;
            padding: 0.8rem;
            background: #f8f9fa;
            font-size: 0.95rem;
        }
        .sidebar {
            background: white;
            padding: 2rem;
            border-radius: 12px;
            box-shadow: 0 6px 15px rgba(0,0,0,0.05);
            align-self: start;
            position: sticky;
            top: 140px;
        }
        .widget {
            margin-bottom: 2.5rem;
        }
        .widget-title {
            font-size: 1.5rem;
            color: #1a472a;
            padding-bottom: 0.7rem;
            margin-bottom: 1.2rem;
            border-bottom: 2px solid #ffde00;
        }
        .interaction-form {
            background: #f8f9fa;
            padding: 1.8rem;
            border-radius: 10px;
            border: 1px solid #dee2e6;
        }
        .form-group {
            margin-bottom: 1.2rem;
        }
        label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: #495057;
        }
        input, textarea, select {
            width: 100%;
            padding: 0.8rem;
            border: 1px solid #ced4da;
            border-radius: 6px;
            font-size: 1rem;
            font-family: inherit;
            transition: border 0.3s ease;
        }
        input:focus, textarea:focus, select:focus {
            border-color: #2a623d;
            outline: none;
            box-shadow: 0 0 0 0.2rem rgba(42, 98, 61, 0.25);
        }
        .rating-stars {
            display: flex;
            gap: 0.5rem;
            font-size: 1.8rem;
            color: #ffc107;
            margin: 0.5rem 0;
        }
        .star {
            cursor: pointer;
            transition: transform 0.2s ease;
        }
        .star:hover {
            transform: scale(1.2);
        }
        .submit-btn {
            background: linear-gradient(to right, #2a623d, #3e7d4f);
            color: white;
            border: none;
            padding: 1rem 2rem;
            font-size: 1.1rem;
            border-radius: 30px;
            cursor: pointer;
            font-weight: bold;
            transition: all 0.3s ease;
            display: block;
            width: 100%;
        }
        .submit-btn:hover {
            background: linear-gradient(to right, #1a472a, #2a623d);
            box-shadow: 0 5px 15px rgba(42, 98, 61, 0.4);
        }
        .comment {
            background: white;
            padding: 1.5rem;
            border-radius: 8px;
            margin-bottom: 1.5rem;
            border-left: 4px solid #dee2e6;
            box-shadow: 0 3px 8px rgba(0,0,0,0.05);
        }
        .comment-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 0.8rem;
            color: #6c757d;
            font-size: 0.9rem;
        }
        .comment-author {
            font-weight: bold;
            color: #1a472a;
        }
        .site-footer {
            background: #1a472a;
            color: #e9ecef;
            padding: 3rem 2rem;
            margin-top: 4rem;
            border-top: 8px solid #ffde00;
            border-radius: 12px 12px 0 0;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 2rem;
        }
        .footer-logo {
            font-size: 2.2rem;
            color: #ffde00;
            font-weight: bold;
            margin-bottom: 1rem;
        }
        .footer-links h3 {
            color: #ffde00;
            font-size: 1.3rem;
            margin-bottom: 1.2rem;
        }
        .footer-links ul {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 0.7rem;
        }
        .footer-links a {
            color: #adb5bd;
            text-decoration: none;
            transition: color 0.3s ease;
            font-weight: normal;
        }
        .footer-links a:hover {
            color: #ffde00;
            background: none;
        }
        friend-link {
            display: block;
            padding: 1rem;
            background: rgba(255,255,255,0.05);
            border-radius: 6px;
            margin-bottom: 0.8rem;
            border-left: 3px solid #ffde00;
        }
        friend-link a {
            color: #ffde00;
            font-weight: bold;
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 0.9rem;
            color: #adb5bd;
        }
        @media (max-width: 1100px) {
            .content-wrapper { grid-template-columns: 1fr; }
            .sidebar { position: static; }
        }
        @media (max-width: 768px) {
            .header-container { flex-direction: column; align-items: stretch; gap: 1.5rem; }
            .main-nav { flex-direction: column; }
            .nav-links {
                flex-direction: column;
                display: none;
                width: 100%;
                background: #2a623d;
                padding: 1rem;
                border-radius: 8px;
            }
            .nav-links.active { display: flex; }
            .search-form { width: 100%; margin-left: 0; }
            .search-input { width: 100%; }
            .hamburger { display: block; align-self: flex-end; margin-top: -3.5rem; }
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            .main-article { padding: 1.5rem; }
            .stats-box { grid-template-columns: 1fr; }
        }
