        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #fef9f3;
            color: #333;
            line-height: 1.7;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
            box-shadow: 0 0 20px rgba(0,0,0,0.05);
        }
        a {
            color: #c05621;
            text-decoration: none;
            transition: color 0.3s ease, text-shadow 0.3s ease;
        }
        a:hover {
            color: #7c3a1a;
            text-shadow: 0 0 8px rgba(192, 86, 33, 0.2);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }
        .site-header {
            background: linear-gradient(135deg, #2d5016 0%, #7c3a1a 100%);
            color: white;
            padding: 1.5rem 0;
            border-bottom: 5px solid #e6b17e;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 1rem;
        }
        .my-logo {
            font-size: 2.5rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 3px;
            background: linear-gradient(to right, #fbd38d, #e6b17e);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        .my-logo:hover {
            transform: scale(1.02);
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            color: #fbd38d;
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 4px;
        }
        .main-nav a:hover {
            background-color: rgba(251, 211, 141, 0.2);
            color: white;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: #fbd38d;
            cursor: pointer;
        }
        .breadcrumb {
            padding: 1rem;
            background-color: #f7e7d6;
            border-radius: 0 0 8px 8px;
            margin-bottom: 2rem;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: #7c3a1a;
        }
        .breadcrumb i {
            margin: 0 0.5rem;
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            margin: 2rem 0;
        }
        @media (max-width: 768px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
        }
        article {
            background: white;
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: 0 5px 25px rgba(0,0,0,0.06);
        }
        h1 {
            color: #2d5016;
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            border-left: 6px solid #c05621;
            padding-left: 1rem;
        }
        h2 {
            color: #7c3a1a;
            margin: 2.5rem 0 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px dashed #e6b17e;
        }
        h3 {
            color: #b45309;
            margin: 1.8rem 0 0.8rem;
        }
        h4 {
            color: #d97706;
            margin: 1.5rem 0 0.6rem;
        }
        p {
            margin-bottom: 1.2rem;
            text-align: justify;
        }
        .highlight {
            background-color: #fef3c7;
            padding: 1.5rem;
            border-left: 4px solid #d97706;
            border-radius: 0 8px 8px 0;
            margin: 1.5rem 0;
        }
        .featured-image {
            margin: 2rem auto;
            text-align: center;
            border: 8px solid #f7e7d6;
            padding: 5px;
            max-width: 800px;
        }
        .featured-image figcaption {
            font-style: italic;
            color: #666;
            margin-top: 0.5rem;
        }
        .last-updated {
            font-size: 0.9rem;
            color: #777;
            text-align: right;
            margin-top: 2rem;
            padding-top: 1rem;
            border-top: 1px solid #eee;
        }
        .last-updated i {
            margin-right: 0.5rem;
        }
        aside {
            background: white;
            padding: 1.5rem;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            align-self: start;
            position: sticky;
            top: 150px;
        }
        .sidebar-widget {
            margin-bottom: 2rem;
        }
        .sidebar-widget h3 {
            color: #2d5016;
            font-size: 1.3rem;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid #eee;
        }
        .sidebar-links ul {
            list-style: none;
        }
        .sidebar-links li {
            margin-bottom: 0.8rem;
            padding-left: 1rem;
            position: relative;
        }
        .sidebar-links li::before {
            content: '🔍';
            position: absolute;
            left: -5px;
        }
        .interaction-form {
            background: #f8f9fa;
            padding: 1.5rem;
            border-radius: 10px;
            margin: 2rem 0;
            border: 1px solid #e9ecef;
        }
        .interaction-form h3 {
            margin-top: 0;
        }
        .form-group {
            margin-bottom: 1rem;
        }
        label {
            display: block;
            margin-bottom: 0.3rem;
            font-weight: 600;
            color: #555;
        }
        input, textarea, select {
            width: 100%;
            padding: 0.75rem;
            border: 1px solid #ced4da;
            border-radius: 6px;
            font-size: 1rem;
            transition: border 0.3s ease, box-shadow 0.3s ease;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: #c05621;
            box-shadow: 0 0 0 3px rgba(192, 86, 33, 0.25);
        }
        button {
            background: linear-gradient(to right, #c05621, #7c3a1a);
            color: white;
            border: none;
            padding: 0.8rem 1.8rem;
            border-radius: 6px;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }
        button:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 12px rgba(192, 86, 33, 0.4);
        }
        .star-rating {
            display: flex;
            gap: 0.5rem;
            font-size: 1.8rem;
            color: #ffc107;
            margin: 0.5rem 0;
            cursor: pointer;
        }
        .star-rating i {
            transition: transform 0.2s;
        }
        .star-rating i:hover {
            transform: scale(1.2);
        }
        footer {
            background: linear-gradient(135deg, #2d5016 0%, #1a3a0d 100%);
            color: #f7e7d6;
            padding: 3rem 1rem 1.5rem;
            margin-top: 3rem;
            border-radius: 12px 12px 0 0;
            text-align: center;
        }
        .friend-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 1.5rem;
            margin: 2rem 0;
        }
        friend-link {
            display: inline-block;
            background: rgba(251, 211, 141, 0.15);
            padding: 0.6rem 1.2rem;
            border-radius: 30px;
            font-weight: 600;
            border: 1px solid #e6b17e;
            transition: all 0.3s ease;
        }
        friend-link:hover {
            background: rgba(230, 177, 126, 0.4);
            transform: scale(1.05);
        }
        .copyright {
            margin-top: 2rem;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(230, 177, 126, 0.3);
            font-size: 0.9rem;
            color: #ccc;
        }
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                gap: 1rem;
            }
            .main-nav ul {
                flex-direction: column;
                text-align: center;
                display: none;
                width: 100%;
                gap: 0;
            }
            .main-nav ul.active {
                display: flex;
            }
            .main-nav li {
                width: 100%;
            }
            .main-nav a {
                display: block;
                padding: 1rem;
                border-bottom: 1px solid rgba(251, 211, 141, 0.2);
            }
            .hamburger {
                display: block;
                position: absolute;
                top: 1.5rem;
                right: 1rem;
            }
            h1 {
                font-size: 2rem;
            }
            article {
                padding: 1.5rem;
            }
        }
