        *,
        *::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: #7ddb7d;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover,
        a:focus {
            color: #b3ffb3;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.25;
            color: #f0fff0;
        }
        h1 {
            font-size: 2.4rem;
            margin-bottom: 1rem;
        }
        h2 {
            font-size: 1.9rem;
            margin: 2.5rem 0 1rem;
            border-bottom: 2px solid #2b5c2b;
            padding-bottom: 0.4rem;
        }
        h3 {
            font-size: 1.4rem;
            margin: 2rem 0 0.6rem;
            color: #b8f0b8;
        }
        h4 {
            font-size: 1.15rem;
            margin: 1.2rem 0 0.4rem;
            color: #9de09d;
        }
        p {
            margin-bottom: 1.1rem;
            color: #d0e8d0;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.2rem;
            width: 100%;
        }
        .site-header {
            background: linear-gradient(135deg, #0f2b0f, #1a3f1a);
            padding: 0.8rem 0;
            border-bottom: 3px solid #2e8b2e;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 4px 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.7rem;
            font-weight: 800;
            color: #8fdb8f;
            letter-spacing: 1px;
            text-shadow: 0 0 12px rgba(100, 220, 100, 0.3);
            display: flex;
            align-items: center;
            gap: 0.4rem;
            transition: transform 0.3s ease;
        }
        .my-logo:hover {
            transform: scale(1.03);
            text-decoration: none;
        }
        .my-logo i {
            font-size: 1.9rem;
            color: #5cb85c;
        }
        .my-logo small {
            font-size: 0.7rem;
            font-weight: 400;
            color: #8ab88a;
            display: block;
            margin-top: -4px;
        }
        .main-nav {
            display: flex;
            align-items: center;
            gap: 0.3rem;
        }
        .main-nav a {
            padding: 0.5rem 0.9rem;
            border-radius: 6px;
            font-weight: 500;
            font-size: 0.9rem;
            color: #c8e8c8;
            transition: background 0.25s, color 0.25s;
        }
        .main-nav a:hover,
        .main-nav a.active {
            background: #2b5c2b;
            color: #f0fff0;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #c8e8c8;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.2rem 0.6rem;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: #1f3f1f;
        }
        .breadcrumbs {
            background: #132613;
            padding: 0.5rem 0;
            border-bottom: 1px solid #2a4a2a;
            font-size: 0.85rem;
        }
        .breadcrumbs ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem 0.6rem;
            padding: 0;
            margin: 0;
        }
        .breadcrumbs li+li::before {
            content: "›";
            margin-right: 0.6rem;
            color: #5a8a5a;
        }
        .breadcrumbs a {
            color: #8fc98f;
        }
        .breadcrumbs .current {
            color: #c0e0c0;
        }
        .search-section {
            background: #162916;
            padding: 1.5rem 0;
            border-bottom: 1px solid #2a4a2a;
        }
        .search-form {
            display: flex;
            gap: 0.6rem;
            max-width: 600px;
            margin: 0 auto;
            flex-wrap: wrap;
        }
        .search-form input[type="text"] {
            flex: 1;
            min-width: 180px;
            padding: 0.7rem 1rem;
            border: 2px solid #2e5e2e;
            border-radius: 8px;
            background: #0f1f0f;
            color: #e0f0e0;
            font-size: 1rem;
            outline: none;
            transition: border-color 0.3s;
        }
        .search-form input[type="text"]:focus {
            border-color: #5cb85c;
        }
        .search-form button {
            padding: 0.7rem 1.6rem;
            background: #2e8b2e;
            border: none;
            border-radius: 8px;
            color: #fff;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.3s, transform 0.2s;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-form button:hover {
            background: #3da83d;
            transform: translateY(-1px);
        }
        .hero-image-wrap {
            margin: 1.5rem 0 2rem;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.7);
            position: relative;
            background: #1a2e1a;
        }
        .hero-image-wrap img {
            width: 100%;
            max-height: 460px;
            object-fit: cover;
            border-radius: 16px;
        }
        .hero-image-wrap .img-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
            padding: 2rem 1.2rem 1rem;
            font-size: 0.9rem;
            color: #c8e8c8;
        }
        .content-area {
            padding: 1.5rem 0 3rem;
            flex: 1;
        }
        .content-area .container {
            max-width: 900px;
        }
        .link-list-inline {
            background: #1a2e1a;
            border-radius: 12px;
            padding: 1.2rem 1.5rem;
            margin: 1.8rem 0;
            border-left: 4px solid #3da83d;
        }
        .link-list-inline h4 {
            margin-top: 0;
            color: #b8f0b8;
        }
        .link-list-inline ul {
            list-style: none;
            padding: 0;
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem 1.2rem;
        }
        .link-list-inline li::before {
            content: "🐍 ";
            font-size: 0.8rem;
        }
        .feedback-section {
            background: #162916;
            border-radius: 14px;
            padding: 1.8rem 1.8rem 2.2rem;
            margin: 2.5rem 0;
            border: 1px solid #2a5a2a;
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
        }
        .feedback-section h3 {
            margin-top: 0;
            color: #b8f0b8;
        }
        .feedback-form label {
            display: block;
            margin: 0.6rem 0 0.3rem;
            font-weight: 500;
            color: #c8e8c8;
        }
        .feedback-form input,
        .feedback-form textarea,
        .feedback-form select {
            width: 100%;
            padding: 0.6rem 0.9rem;
            border: 2px solid #2e5e2e;
            border-radius: 8px;
            background: #0f1f0f;
            color: #e0f0e0;
            font-size: 0.95rem;
            font-family: inherit;
            outline: none;
            transition: border-color 0.3s;
        }
        .feedback-form input:focus,
        .feedback-form textarea:focus,
        .feedback-form select:focus {
            border-color: #5cb85c;
        }
        .feedback-form textarea {
            min-height: 80px;
            resize: vertical;
        }
        .feedback-form button {
            margin-top: 0.8rem;
            padding: 0.6rem 1.8rem;
            background: #2e8b2e;
            border: none;
            border-radius: 8px;
            color: #fff;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s, transform 0.2s;
        }
        .feedback-form button:hover {
            background: #3da83d;
            transform: translateY(-1px);
        }
        .star-rating {
            display: flex;
            gap: 0.3rem;
            font-size: 1.6rem;
            color: #4a7a4a;
            cursor: pointer;
            direction: rtl;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            cursor: pointer;
            transition: color 0.2s, transform 0.2s;
            color: #4a7a4a;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #f5c542;
            transform: scale(1.1);
        }
        .site-footer {
            background: #0a1a0a;
            border-top: 3px solid #1f4a1f;
            padding: 2rem 0 1.2rem;
            margin-top: auto;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
        }
        .site-footer friend-link {
            display: block;
            font-weight: 600;
            color: #b8f0b8;
            margin-bottom: 0.8rem;
            font-size: 1.1rem;
        }
        .site-footer .friend-links ul {
            list-style: none;
            padding: 0;
            columns: 2;
            column-gap: 1.5rem;
        }
        .site-footer .friend-links li {
            break-inside: avoid;
            margin-bottom: 0.3rem;
        }
        .site-footer .friend-links a {
            color: #8fc98f;
            font-size: 0.9rem;
        }
        .site-footer .friend-links a:hover {
            color: #b3ffb3;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            margin-top: 1.5rem;
            border-top: 1px solid #1f3f1f;
            font-size: 0.85rem;
            color: #6a8a6a;
            grid-column: 1 / -1;
        }
        .copyright strong {
            color: #8ab88a;
        }
        .author-box {
            background: #1a2e1a;
            border-radius: 12px;
            padding: 1.2rem 1.5rem;
            margin: 2rem 0;
            display: flex;
            gap: 1.2rem;
            align-items: center;
            border-left: 4px solid #3da83d;
            flex-wrap: wrap;
        }
        .author-box .avatar {
            font-size: 3rem;
            color: #5cb85c;
        }
        .author-box .author-info strong {
            color: #b8f0b8;
        }
        .author-box .author-info small {
            color: #7a9a7a;
        }
        @media (max-width: 820px) {
            .feedback-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            .footer-inner {
                grid-template-columns: 1fr;
                gap: 1.2rem;
            }
            .site-footer .friend-links ul {
                columns: 1;
            }
            h1 {
                font-size: 1.9rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.2rem;
            }
        }
        @media (max-width: 640px) {
            .header-inner {
                flex-wrap: wrap;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                background: #132613;
                border-radius: 10px;
                padding: 0.6rem;
                margin-top: 0.4rem;
                border: 1px solid #2a5a2a;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 0.6rem 0.8rem;
                width: 100%;
                border-radius: 6px;
            }
            .hamburger {
                display: block;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form button {
                width: 100%;
                justify-content: center;
            }
            .hero-image-wrap .img-caption {
                font-size: 0.75rem;
                padding: 1rem 0.8rem 0.6rem;
            }
            .author-box {
                flex-direction: column;
                text-align: center;
            }
            .link-list-inline ul {
                flex-direction: column;
                gap: 0.3rem;
            }
        }
        @media (min-width: 641px) {
            .main-nav {
                display: flex !important;
            }
        }
        .text-accent {
            color: #7ddb7d;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .highlight {
            background: #1f3f1f;
            padding: 0.1rem 0.4rem;
            border-radius: 4px;
            color: #b8f0b8;
        }
        .badge {
            display: inline-block;
            background: #2e5e2e;
            padding: 0.15rem 0.7rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            color: #d0f0d0;
        }
        .last-update {
            font-size: 0.85rem;
            color: #6a9a6a;
            text-align: right;
            margin-top: 2rem;
            padding-top: 0.8rem;
            border-top: 1px solid #1f3f1f;
        }
        .last-update i {
            margin-right: 0.3rem;
        }
        .btn-top {
            display: inline-block;
            background: #2e5e2e;
            color: #fff;
            padding: 0.3rem 1rem;
            border-radius: 6px;
            font-size: 0.85rem;
            transition: background 0.3s;
        }
        .btn-top:hover {
            background: #3da83d;
            text-decoration: none;
        }
        .score-display {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin: 0.6rem 0;
        }
        .score-display .stars {
            color: #f5c542;
            font-size: 1.2rem;
            letter-spacing: 2px;
        }
        .score-display .avg {
            font-weight: 700;
            color: #b8f0b8;
        }
