        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f9f7f2;
            background-image: radial-gradient(#e0d6c2 1px, transparent 1px);
            background-size: 20px 20px;
        }
        a {
            color: #4a7c59;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #2d5a3d;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .main-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 30px;
        }
        @media (min-width: 992px) {
            .main-grid {
                grid-template-columns: 3fr 1fr;
            }
        }
        .site-header {
            background: linear-gradient(135deg, #6a994e, #386641);
            color: white;
            padding: 1rem 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-family: 'Comic Sans MS', cursive, sans-serif;
            font-size: 2.2rem;
            font-weight: bold;
            color: #f2e8cf;
            text-shadow: 2px 2px 0 #bc4749;
            letter-spacing: 1px;
        }
        .my-logo:hover {
            color: #fff;
            text-decoration: none;
        }
        .nav-desktop {
            display: none;
        }
        @media (min-width: 768px) {
            .nav-desktop {
                display: flex;
                gap: 1.5rem;
            }
        }
        .nav-desktop a {
            color: #f2e8cf;
            font-weight: 500;
            padding: 0.5rem 1rem;
            border-radius: 20px;
        }
        .nav-desktop a:hover {
            background-color: rgba(242, 232, 207, 0.2);
            text-decoration: none;
        }
        .hamburger {
            background: none;
            border: none;
            color: #f2e8cf;
            font-size: 1.8rem;
            cursor: pointer;
            display: block;
        }
        @media (min-width: 768px) {
            .hamburger {
                display: none;
            }
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background-color: #386641;
            padding: 1rem;
            border-radius: 0 0 10px 10px;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            z-index: 999;
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            color: #f2e8cf;
            padding: 0.8rem;
            border-bottom: 1px solid #4a7c59;
        }
        .nav-mobile a:last-child {
            border-bottom: none;
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.9rem;
            color: #666;
        }
        .breadcrumb a {
            color: #4a7c59;
        }
        .breadcrumb span {
            margin: 0 5px;
        }
        .content-area {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            margin-bottom: 2rem;
        }
        .article-header {
            margin-bottom: 2rem;
            border-bottom: 3px dashed #6a994e;
            padding-bottom: 1rem;
        }
        h1 {
            font-size: 2.8rem;
            color: #386641;
            margin-bottom: 0.5rem;
            line-height: 1.2;
        }
        .meta-info {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            font-size: 0.9rem;
            color: #777;
        }
        .meta-info i {
            margin-right: 0.3rem;
        }
        h2 {
            font-size: 2rem;
            color: #4a7c59;
            margin: 2rem 0 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #e0d6c2;
        }
        h3 {
            font-size: 1.5rem;
            color: #6a994e;
            margin: 1.5rem 0 0.8rem;
        }
        h4 {
            font-size: 1.2rem;
            color: #8a9d6d;
            margin: 1.2rem 0 0.5rem;
        }
        p {
            margin-bottom: 1.2rem;
            text-align: justify;
        }
        .highlight {
            background-color: #f2e8cf;
            padding: 1.5rem;
            border-left: 5px solid #bc4749;
            border-radius: 0 10px 10px 0;
            margin: 1.5rem 0;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 0.3rem;
        }
        .fish-image {
            float: right;
            margin: 0 0 1rem 2rem;
            width: 300px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        @media (max-width: 768px) {
            .fish-image {
                float: none;
                margin: 1rem auto;
                width: 100%;
                max-width: 400px;
            }
        }
        .related-links {
            background: #e9f5db;
            padding: 1.5rem;
            border-radius: 10px;
            margin: 2rem 0;
        }
        .related-links ul {
            list-style: none;
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1rem;
        }
        .related-links li {
            padding: 0.5rem 0;
        }
        .sidebar {
            background: white;
            padding: 1.5rem;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .widget {
            margin-bottom: 2rem;
        }
        .widget h3 {
            font-size: 1.3rem;
            color: #386641;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid #e0d6c2;
        }
        .search-form, .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        input, textarea, select {
            padding: 0.8rem;
            border: 1px solid #ccc;
            border-radius: 8px;
            font-family: inherit;
            font-size: 1rem;
        }
        button {
            background: #4a7c59;
            color: white;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 8px;
            cursor: pointer;
            font-weight: bold;
            transition: background 0.3s ease;
        }
        button:hover {
            background: #386641;
        }
        .stars {
            display: flex;
            gap: 0.5rem;
            font-size: 1.5rem;
            color: #ffd700;
            cursor: pointer;
        }
        .stars i:hover {
            transform: scale(1.2);
        }
        .site-footer {
            background: #2d3e2d;
            color: #f2e8cf;
            padding: 2rem 0;
            margin-top: 3rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }
        friend-link {
            display: block;
            margin: 1rem 0;
            font-style: italic;
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid #4a7c59;
            font-size: 0.9rem;
            color: #b0b0b0;
        }
        .text-bold {
            font-weight: bold;
            color: #386641;
        }
        .text-center {
            text-align: center;
        }
        .mb-2 {
            margin-bottom: 2rem;
        }
