        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: #333;
            background-color: #f9f5e9;
            background-image: radial-gradient(#e6d7b8 10%, transparent 11%);
            background-size: 30px 30px;
            padding-bottom: 40px;
        }
        a {
            color: #d35400;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #a84300;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .text-center { text-align: center; }
        .bold { font-weight: 700; }
        .emoji { font-size: 1.2em; }
        .site-header {
            background-color: #8b4513;
            color: #fff;
            padding: 1rem 0;
            box-shadow: 0 4px 12px rgba(139, 69, 19, 0.3);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 800;
            color: #ffd700;
            text-shadow: 2px 2px 0 #a84300;
            font-family: 'Comic Sans MS', cursive, sans-serif;
        }
        .my-logo a {
            color: inherit;
            text-decoration: none;
        }
        .my-logo a:hover {
            text-decoration: none;
            color: #fff;
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 1.5rem;
        }
        .main-nav a {
            color: #ffd700;
            font-weight: 600;
            padding: 0.5rem 0.8rem;
            border-radius: 4px;
        }
        .main-nav a:hover {
            background-color: #a84300;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #ffd700;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .breadcrumb {
            background-color: #e6d7b8;
            padding: 0.8rem 20px;
            font-size: 0.9rem;
            border-bottom: 1px solid #d4b483;
        }
        .breadcrumb a {
            color: #8b4513;
        }
        .breadcrumb span {
            color: #666;
        }
        .content-area {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            margin-top: 30px;
        }
        @media (max-width: 992px) {
            .content-area {
                grid-template-columns: 1fr;
            }
        }
        article {
            background-color: #fff;
            padding: 40px;
            border-radius: 12px;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
        }
        .article-header {
            border-bottom: 3px double #e6d7b8;
            padding-bottom: 20px;
            margin-bottom: 30px;
        }
        h1 {
            font-size: 2.8rem;
            color: #8b4513;
            margin-bottom: 1rem;
            line-height: 1.2;
        }
        .meta-info {
            display: flex;
            justify-content: space-between;
            font-size: 0.9rem;
            color: #777;
            margin-bottom: 1rem;
        }
        h2 {
            font-size: 2rem;
            color: #d35400;
            margin: 2.5rem 0 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #f0e6d6;
        }
        h3 {
            font-size: 1.6rem;
            color: #a84300;
            margin: 2rem 0 1rem;
        }
        h4 {
            font-size: 1.3rem;
            color: #8b4513;
            margin: 1.5rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .highlight-box {
            background-color: #fef9e7;
            border-left: 5px solid #f1c40f;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .image-container {
            margin: 2.5rem auto;
            text-align: center;
        }
        .image-container img {
            border-radius: 10px;
            border: 8px solid #e6d7b8;
            box-shadow: 0 8px 16px rgba(0,0,0,0.1);
            max-width: 800px;
            margin: 0 auto;
        }
        .image-caption {
            font-style: italic;
            color: #666;
            margin-top: 0.8rem;
            font-size: 0.95rem;
        }
        .link-list {
            background-color: #f8f4e9;
            padding: 1.5rem;
            border-radius: 8px;
            margin: 2rem 0;
        }
        .link-list h4 {
            margin-top: 0;
        }
        .link-list ul {
            list-style: square inside;
            column-count: 2;
        }
        .link-list li {
            margin-bottom: 0.5rem;
            break-inside: avoid;
        }
        @media (max-width: 768px) {
            .link-list ul {
                column-count: 1;
            }
        }
        aside {
            background-color: #fff;
            padding: 25px;
            border-radius: 12px;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .widget {
            margin-bottom: 2.5rem;
        }
        .widget-title {
            font-size: 1.3rem;
            color: #8b4513;
            margin-bottom: 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #f0e6d6;
        }
        .search-form {
            display: flex;
        }
        .search-form input {
            flex: 1;
            padding: 12px 15px;
            border: 2px solid #d4b483;
            border-radius: 6px 0 0 6px;
            font-size: 1rem;
        }
        .search-form button {
            background-color: #d35400;
            color: white;
            border: none;
            padding: 0 20px;
            border-radius: 0 6px 6px 0;
            cursor: pointer;
            font-size: 1.1rem;
            transition: background-color 0.3s;
        }
        .search-form button:hover {
            background-color: #a84300;
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            font-size: 2rem;
            color: #f1c40f;
            margin-bottom: 1rem;
            cursor: pointer;
        }
        .stars i:hover {
            transform: scale(1.2);
        }
        .rating-result {
            font-weight: bold;
            color: #d35400;
            margin-top: 10px;
        }
        .comment-section {
            margin-top: 4rem;
            padding-top: 2rem;
            border-top: 3px double #e6d7b8;
        }
        .comment-form {
            background-color: #f8f4e9;
            padding: 1.8rem;
            border-radius: 10px;
            margin-bottom: 2.5rem;
        }
        .form-group {
            margin-bottom: 1.2rem;
        }
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: #555;
        }
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px;
            border: 2px solid #d4b483;
            border-radius: 6px;
            font-family: inherit;
            font-size: 1rem;
        }
        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }
        .submit-btn {
            background-color: #27ae60;
            color: white;
            border: none;
            padding: 14px 28px;
            border-radius: 6px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        .submit-btn:hover {
            background-color: #219653;
        }
        .site-footer {
            background-color: #8b4513;
            color: #ffd700;
            padding: 40px 20px;
            margin-top: 60px;
            border-radius: 12px 12px 0 0;
        }
        .footer-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 30px;
        }
        .footer-section {
            flex: 1;
            min-width: 250px;
        }
        .footer-section h3 {
            color: #ffd700;
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            border-bottom: 2px solid #a84300;
            padding-bottom: 0.5rem;
        }
        friend-link {
            display: block;
            color: #e6d7b8;
            margin-bottom: 0.8rem;
            font-size: 1.05rem;
        }
        friend-link:hover {
            color: white;
            text-decoration: underline;
        }
        .copyright {
            text-align: center;
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid #a84300;
            color: #e6d7b8;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .header-container {
                flex-wrap: wrap;
            }
            .hamburger {
                display: block;
            }
            .main-nav {
                width: 100%;
                display: none;
                margin-top: 1rem;
            }
            .main-nav.active {
                display: block;
            }
            .main-nav ul {
                flex-direction: column;
                gap: 0;
            }
            .main-nav li {
                border-bottom: 1px solid #a84300;
            }
            .main-nav a {
                display: block;
                padding: 0.8rem;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 { font-size: 1.8rem; }
            h3 { font-size: 1.5rem; }
            article, aside {
                padding: 25px;
            }
        }
