        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #f8f9fa;
            color: #333;
            line-height: 1.6;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }
        a {
            text-decoration: none;
            color: #2c5e1a;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #1e3d12;
            text-decoration: underline;
        }
        ul, ol {
            list-style-position: inside;
            margin-left: 20px;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .btn {
            display: inline-block;
            background-color: #2c5e1a;
            color: white;
            padding: 10px 20px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            transition: background-color 0.3s ease, transform 0.2s ease;
        }
        .btn:hover {
            background-color: #1e3d12;
            transform: translateY(-2px);
        }
        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0,0,0,0);
            border: 0;
        }
        .site-header {
            background-color: #1e3d12;
            color: white;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: bold;
            color: #8bc34a;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        .my-logo:hover {
            color: #aed581;
            text-decoration: none;
        }
        .nav-desktop ul {
            display: flex;
            gap: 25px;
            list-style: none;
        }
        .nav-desktop a {
            color: white;
            font-weight: 500;
            padding: 8px 12px;
            border-radius: 4px;
        }
        .nav-desktop a:hover {
            background-color: #2c5e1a;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
        }
        .nav-mobile {
            display: none;
            background-color: #2c5e1a;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 20px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        }
        .nav-mobile.active {
            display: block;
        }
        .nav-mobile ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .nav-mobile a {
            color: white;
            display: block;
            padding: 10px;
            border-bottom: 1px solid #3e7c23;
        }
        .nav-mobile a:hover {
            background-color: #3e7c23;
            text-decoration: none;
        }
        .breadcrumb {
            background-color: #e9f5e9;
            padding: 10px 0;
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            margin: 0;
            padding: 0;
        }
        .breadcrumb li {
            margin-right: 5px;
        }
        .breadcrumb li:not(:last-child)::after {
            content: "›";
            margin-left: 5px;
            color: #666;
        }
        .main-content {
            flex: 1;
            padding: 30px 0;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        .article-section {
            background-color: white;
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 6px 15px rgba(0,0,0,0.08);
        }
        .sidebar {
            background-color: white;
            padding: 25px;
            border-radius: 12px;
            box-shadow: 0 6px 15px rgba(0,0,0,0.08);
            height: fit-content;
        }
        .sidebar h3 {
            color: #1e3d12;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #8bc34a;
        }
        h1 {
            font-size: 2.8rem;
            color: #1e3d12;
            margin-bottom: 20px;
            line-height: 1.3;
            text-align: center;
        }
        h2 {
            font-size: 2rem;
            color: #2c5e1a;
            margin: 30px 0 15px;
            padding-bottom: 10px;
            border-bottom: 2px solid #d4edda;
        }
        h3 {
            font-size: 1.6rem;
            color: #3e7c23;
            margin: 25px 0 10px;
        }
        h4 {
            font-size: 1.3rem;
            color: #4caf50;
            margin: 20px 0 10px;
        }
        p {
            margin-bottom: 20px;
            text-align: justify;
            hyphens: auto;
        }
        .highlight {
            background-color: #fff3cd;
            padding: 15px;
            border-left: 4px solid #ffc107;
            margin: 20px 0;
            border-radius: 0 8px 8px 0;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .search-box, .comment-form, .score-form {
            background-color: #f1f8e9;
            padding: 25px;
            border-radius: 10px;
            margin-bottom: 30px;
        }
        .form-group {
            margin-bottom: 20px;
        }
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: bold;
            color: #2c5e1a;
        }
        .form-group input, .form-group textarea, .form-group select {
            width: 100%;
            padding: 12px;
            border: 1px solid #c8e6c9;
            border-radius: 5px;
            font-size: 1rem;
            transition: border-color 0.3s ease;
        }
        .form-group input:focus, .form-group textarea:focus, .form-group select:focus {
            outline: none;
            border-color: #2c5e1a;
            box-shadow: 0 0 0 3px rgba(44, 94, 26, 0.2);
        }
        .stars {
            display: flex;
            gap: 10px;
            font-size: 1.8rem;
            color: #ffc107;
            cursor: pointer;
        }
        .stars i:hover {
            color: #ff9800;
        }
        .featured-image {
            margin: 30px 0;
            text-align: center;
        }
        .featured-image figcaption {
            font-style: italic;
            color: #666;
            margin-top: 10px;
            font-size: 0.9rem;
        }
        .internal-links {
            background-color: #e8f5e8;
            padding: 20px;
            border-radius: 10px;
            margin: 25px 0;
        }
        .internal-links ul {
            list-style: none;
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 15px;
        }
        .internal-links li a {
            display: block;
            padding: 10px;
            background-color: white;
            border-radius: 5px;
            border-left: 4px solid #2c5e1a;
            transition: transform 0.3s ease;
        }
        .internal-links li a:hover {
            transform: translateX(5px);
            text-decoration: none;
        }
        .site-footer {
            background-color: #1e3d12;
            color: white;
            padding: 40px 0 20px;
            margin-top: 50px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        .footer-section h3 {
            color: #8bc34a;
            margin-bottom: 20px;
            font-size: 1.4rem;
        }
        .footer-section ul {
            list-style: none;
        }
        .footer-section ul li {
            margin-bottom: 12px;
        }
        .footer-section ul li a {
            color: #c8e6c9;
        }
        .footer-section ul li a:hover {
            color: white;
        }
        friend-link {
            display: block;
            background-color: #2c5e1a;
            color: white;
            padding: 15px;
            border-radius: 8px;
            margin: 20px 0;
            text-align: center;
            font-weight: bold;
        }
        friend-link a {
            color: #aed581;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #2c5e1a;
            font-size: 0.9rem;
            color: #aed581;
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
            .hamburger {
                display: block;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.4rem;
            }
            .header-content, .main-content, .footer-content {
                padding: 0 15px;
            }
            .article-section, .sidebar {
                padding: 20px;
            }
        }
