        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary-green: #2e7d32;
            --secondary-green: #81c784;
            --accent-gold: #ffb300;
            --dark-brown: #5d4037;
            --light-brown: #8d6e63;
            --background-cream: #fff8e1;
            --text-dark: #2c3e50;
            --text-light: #f5f5f5;
            --shadow: rgba(0, 0, 0, 0.1);
        }
        body {
            background-color: #f9f9f9;
            color: var(--text-dark);
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: var(--primary-green);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: var(--accent-gold);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(to right, var(--dark-brown), var(--primary-green));
            color: var(--text-light);
            padding: 1.5rem 0;
            box-shadow: 0 4px 12px var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2.5rem;
            font-weight: 800;
            background: linear-gradient(to right, #ffecb3, var(--accent-gold));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
        }
        .my-logo a {
            background: none;
            -webkit-text-fill-color: inherit;
        }
        .mobile-toggle {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--accent-gold);
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            color: var(--text-light);
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 4px;
        }
        .main-nav a:hover, .main-nav a.active {
            background-color: rgba(255, 255, 255, 0.15);
            color: var(--accent-gold);
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.9rem;
            color: var(--secondary-green);
        }
        .breadcrumb a {
            color: var(--secondary-green);
        }
        .breadcrumb span {
            margin: 0 5px;
        }
        .search-container {
            background-color: var(--background-cream);
            padding: 2rem;
            border-radius: 10px;
            margin: 2rem auto;
            text-align: center;
            box-shadow: 0 5px 15px var(--shadow);
        }
        .search-form {
            display: flex;
            max-width: 600px;
            margin: 0 auto;
        }
        .search-input {
            flex: 1;
            padding: 1rem;
            border: 2px solid var(--secondary-green);
            border-radius: 50px 0 0 50px;
            font-size: 1rem;
            outline: none;
        }
        .search-button {
            background: linear-gradient(to right, var(--primary-green), var(--secondary-green));
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 0 50px 50px 0;
            cursor: pointer;
            font-weight: bold;
            transition: all 0.3s;
        }
        .search-button:hover {
            background: linear-gradient(to right, var(--secondary-green), var(--accent-gold));
            transform: scale(1.02);
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            padding: 2rem 0;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        .article {
            background: white;
            padding: 2.5rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px var(--shadow);
        }
        .article h1 {
            font-size: 2.8rem;
            color: var(--dark-brown);
            margin-bottom: 1.5rem;
            line-height: 1.2;
            border-bottom: 3px solid var(--accent-gold);
            padding-bottom: 1rem;
        }
        .article h2 {
            font-size: 2rem;
            color: var(--primary-green);
            margin: 2.5rem 0 1rem;
            padding-left: 10px;
            border-left: 5px solid var(--accent-gold);
        }
        .article h3 {
            font-size: 1.5rem;
            color: var(--light-brown);
            margin: 2rem 0 1rem;
        }
        .article h4 {
            font-size: 1.2rem;
            color: var(--text-dark);
            margin: 1.5rem 0 0.8rem;
        }
        .article p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .article emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .article strong {
            color: var(--primary-green);
            font-weight: 700;
        }
        .article blockquote {
            border-left: 4px solid var(--secondary-green);
            padding-left: 1.5rem;
            margin: 2rem 0;
            font-style: italic;
            color: var(--light-brown);
            background-color: #f1f8e9;
            padding: 1.5rem;
            border-radius: 0 10px 10px 0;
        }
        .article ul, .article ol {
            margin-left: 2rem;
            margin-bottom: 1.5rem;
        }
        .highlight-box {
            background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
            border: 1px solid var(--secondary-green);
            padding: 1.5rem;
            border-radius: 10px;
            margin: 2rem 0;
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: var(--light-brown);
            margin-top: 0.5rem;
            font-size: 0.9rem;
        }
        .last-updated {
            text-align: right;
            font-size: 0.9rem;
            color: var(--light-brown);
            margin-top: 3rem;
            padding-top: 1rem;
            border-top: 1px dashed #ccc;
        }
        .sidebar {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 5px 20px var(--shadow);
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .sidebar h3 {
            color: var(--primary-green);
            margin-bottom: 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--accent-gold);
        }
        .sidebar ul {
            list-style: none;
        }
        .sidebar li {
            margin-bottom: 1rem;
            padding-bottom: 1rem;
            border-bottom: 1px dotted #eee;
        }
        .sidebar a {
            display: flex;
            align-items: center;
            color: var(--text-dark);
        }
        .sidebar a:hover {
            color: var(--primary-green);
        }
        .sidebar i {
            margin-right: 10px;
            color: var(--secondary-green);
        }
        .rating-widget, .comment-widget {
            margin-top: 2rem;
        }
        .stars {
            display: flex;
            gap: 5px;
            margin: 1rem 0;
        }
        .star {
            color: #ddd;
            font-size: 1.5rem;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star:hover,
        .star.active {
            color: var(--accent-gold);
        }
        .comment-form textarea {
            width: 100%;
            padding: 1rem;
            border: 1px solid #ccc;
            border-radius: 8px;
            margin-top: 1rem;
            resize: vertical;
            min-height: 100px;
        }
        .submit-btn {
            background-color: var(--primary-green);
            color: white;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 8px;
            cursor: pointer;
            margin-top: 1rem;
            width: 100%;
            font-weight: bold;
            transition: background 0.3s;
        }
        .submit-btn:hover {
            background-color: var(--dark-brown);
        }
        .site-footer {
            background-color: var(--dark-brown);
            color: var(--text-light);
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-section h4 {
            color: var(--accent-gold);
            margin-bottom: 1.5rem;
            font-size: 1.2rem;
        }
        friend-link {
            display: block;
            margin-bottom: 0.8rem;
        }
        friend-link a {
            color: var(--secondary-green);
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid var(--light-brown);
            font-size: 0.9rem;
            color: #bbb;
        }
        @media (max-width: 768px) {
            .mobile-toggle {
                display: block;
            }
            .main-nav {
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: var(--dark-brown);
                clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
                transition: clip-path 0.5s ease;
            }
            .main-nav.active {
                clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            }
            .main-nav ul {
                flex-direction: column;
                padding: 1rem;
                gap: 0;
            }
            .main-nav li {
                margin-bottom: 1rem;
            }
            .article {
                padding: 1.5rem;
            }
            .article h1 {
                font-size: 2rem;
            }
            .search-form {
                flex-direction: column;
            }
            .search-input, .search-button {
                border-radius: 50px;
                margin-bottom: 10px;
                width: 100%;
            }
        }
