        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
            line-height: 1.65;
            color: #333;
            background: #f8f5f0;
            max-width: 120rem;
            margin: 0 auto;
            padding: 0 1rem;
        }
        img { max-width: 100%; height: auto; display: block; }
        h1, h2, h3, h4 { font-family: Georgia, 'Times New Roman', Times, serif; color: #2c5530; margin-bottom: 1rem; line-height: 1.2; }
        h1 { font-size: clamp(2.5rem, 5vw, 3.75rem); margin-top: 1.5rem; }
        h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); margin-top: 2.5rem; padding-bottom: 0.5rem; border-bottom: 2px solid #e0d6c2; }
        h3 { font-size: clamp(1.5rem, 3vw, 1.9rem); margin-top: 2rem; color: #5a7d5a; }
        h4 { font-size: 1.25rem; margin-top: 1.5rem; color: #7a997a; }
        p { margin-bottom: 1.5rem; text-align: justify; hyphens: auto; }
        a { color: #4a6fa5; text-decoration: none; transition: color 0.2s ease; }
        a:hover { color: #2c5530; text-decoration: underline; }
        strong { font-weight: 700; color: #2c5530; }
        em { font-style: italic; }
        blockquote {
            border-left: 4px solid #d4b483;
            padding-left: 1.5rem;
            margin: 2rem 0;
            font-style: italic;
            color: #555;
            background: #fefcf8;
            padding-top: 1rem;
            padding-bottom: 1rem;
        }
        ul, ol { margin-bottom: 1.5rem; padding-left: 2rem; }
        li { margin-bottom: 0.5rem; }
        hr { border: none; height: 1px; background: #e0d6c2; margin: 3rem 0; }
        .container {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        @media (min-width: 992px) {
            .container {
                grid-template-columns: 1fr 300px;
            }
            main { order: 1; }
            aside { order: 2; }
        }
        header { background: #2c5530; color: #fff; padding: 1rem 0; margin-bottom: 2rem; border-radius: 0 0 8px 8px; }
        .header-top { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; padding: 0 1rem; }
        .my-logo a {
            font-size: 2.2rem;
            font-weight: 800;
            color: #f8f5f0;
            text-decoration: none;
            font-family: Georgia, serif;
            letter-spacing: 1px;
        }
        .my-logo a:hover { color: #d4b483; }
        .search-form { display: flex; margin: 1rem 0; }
        .search-form input[type="search"] {
            flex-grow: 1;
            padding: 0.75rem;
            border: none;
            border-radius: 4px 0 0 4px;
            font-size: 1rem;
        }
        .search-form button {
            background: #d4b483;
            color: #2c5530;
            border: none;
            padding: 0 1.5rem;
            border-radius: 0 4px 4px 0;
            cursor: pointer;
            font-weight: bold;
            transition: background 0.2s;
        }
        .search-form button:hover { background: #f8f5f0; }
        nav { background: #5a7d5a; border-radius: 4px; margin-top: 1rem; }
        .nav-desktop { display: none; }
        @media (min-width: 768px) {
            .nav-desktop { display: flex; flex-wrap: wrap; list-style: none; }
            .nav-desktop li { flex: 1 0 auto; }
            .nav-desktop a {
                display: block;
                padding: 1rem 1.5rem;
                color: #f8f5f0;
                text-align: center;
                text-decoration: none;
                font-weight: 600;
                border-right: 1px solid #7a997a;
            }
            .nav-desktop li:last-child a { border-right: none; }
            .nav-desktop a:hover { background: #4a6d4a; }
            .hamburger { display: none; }
        }
        .hamburger {
            background: none;
            border: none;
            color: #f8f5f0;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.5rem;
        }
        .nav-mobile {
            list-style: none;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out;
            background: #4a6d4a;
            border-radius: 0 0 4px 4px;
        }
        .nav-mobile.active { max-height: 500px; }
        .nav-mobile a {
            display: block;
            padding: 1rem 1.5rem;
            color: #f8f5f0;
            text-decoration: none;
            border-top: 1px solid #5a7d5a;
        }
        .nav-mobile a:hover { background: #3d5c3d; }
        .breadcrumb {
            padding: 1rem;
            background: #f0ede5;
            border-radius: 4px;
            margin: 1rem 0;
            font-size: 0.9rem;
        }
        .breadcrumb a { color: #5a7d5a; }
        article { background: #fff; padding: 2rem; border-radius: 8px; box-shadow: 0 4px 12px rgba(0,0,0,0.05); margin-bottom: 2rem; }
        .article-meta {
            color: #777;
            font-size: 0.9rem;
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid #eee;
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .featured-image {
            width: 100%;
            margin: 2rem 0;
            border-radius: 8px;
            overflow: hidden;
            border: 5px solid #e0d6c2;
        }
        .featured-image img { width: 100%; transition: transform 0.5s ease; }
        .featured-image:hover img { transform: scale(1.02); }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: #666;
            padding: 0.5rem;
            background: #f9f7f2;
        }
        .content-section { margin-bottom: 3rem; }
        .key-point {
            background: #f0f7f0;
            border-left: 5px solid #5a7d5a;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .strategy-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }
        .strategy-card {
            background: #f9f7f2;
            padding: 1.5rem;
            border-radius: 8px;
            border-top: 4px solid #d4b483;
        }
        .strategy-card h4 { margin-top: 0; }
        aside section {
            background: #fff;
            padding: 1.5rem;
            margin-bottom: 2rem;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.05);
        }
        aside h3 { font-size: 1.4rem; margin-top: 0; }
        .related-links ul { list-style: none; padding-left: 0; }
        .related-links li { margin-bottom: 0.75rem; padding-left: 1rem; position: relative; }
        .related-links li:before { content: '▶'; position: absolute; left: 0; color: #d4b483; font-size: 0.8rem; }
        .rating-widget { text-align: center; }
        .stars { font-size: 2rem; color: #ddd; margin: 1rem 0; cursor: pointer; }
        .stars .fa-solid { color: #f4c542; }
        .rating-widget button {
            background: #5a7d5a;
            color: white;
            border: none;
            padding: 0.75rem 2rem;
            border-radius: 4px;
            cursor: pointer;
            width: 100%;
            font-size: 1rem;
        }
        .rating-widget button:hover { background: #4a6d4a; }
        .comment-form, .score-form { background: #f9f7f2; padding: 2rem; border-radius: 8px; margin-top: 3rem; }
        .form-group { margin-bottom: 1.5rem; }
        label { display: block; margin-bottom: 0.5rem; font-weight: 600; color: #444; }
        input[type="text"],
        input[type="email"],
        textarea,
        select {
            width: 100%;
            padding: 0.8rem;
            border: 1px solid #ccc;
            border-radius: 4px;
            font-family: inherit;
            font-size: 1rem;
        }
        textarea { min-height: 150px; resize: vertical; }
        .form-submit {
            background: #2c5530;
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 4px;
            cursor: pointer;
            font-size: 1rem;
            font-weight: bold;
        }
        .form-submit:hover { background: #1e3b21; }
        footer {
            background: #2c5530;
            color: #f8f5f0;
            padding: 3rem 1rem;
            margin-top: 4rem;
            border-radius: 8px 8px 0 0;
            text-align: center;
        }
        .footer-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 2rem; margin-bottom: 2rem; }
        .footer-links a { color: #d4b483; }
        .footer-links a:hover { color: #f8f5f0; }
        friend-link {
            display: block;
            margin: 2rem auto;
            font-style: italic;
            color: #b8d4b8;
        }
        .copyright { font-size: 0.9rem; color: #b8d4b8; margin-top: 2rem; padding-top: 1rem; border-top: 1px solid #5a7d5a; }
        @media (max-width: 767px) {
            .header-top { flex-direction: column; align-items: stretch; }
            .my-logo { text-align: center; margin-bottom: 1rem; }
            article, aside section { padding: 1.5rem; }
            .strategy-grid { grid-template-columns: 1fr; }
            .footer-links { flex-direction: column; gap: 1rem; }
        }
