        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #fef9f0;
            color: #333;
            line-height: 1.7;
            max-width: 100%;
            overflow-x: hidden;
        }
        a {
            color: #d2691e;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #a0522d;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, #ffd700 0%, #ffa500 100%);
            padding: 1.5rem 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 900;
            color: #8b4513;
            text-shadow: 2px 2px 0 #fff;
            letter-spacing: -1px;
        }
        .my-logo a {
            color: inherit;
            text-decoration: none;
        }
        .my-logo a:hover {
            text-decoration: none;
            color: #5d2906;
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            color: #8b4513;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            transition: all 0.3s ease;
        }
        .main-nav a:hover {
            background-color: #fff;
            text-decoration: none;
            box-shadow: 0 4px 8px rgba(139, 69, 19, 0.2);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            color: #8b4513;
            background: none;
            border: none;
            cursor: pointer;
        }
        .breadcrumb {
            padding: 1rem 0;
            background-color: #fff9e6;
            font-size: 0.9rem;
            border-bottom: 1px solid #ffd700;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
        }
        .breadcrumb li:not(:last-child)::after {
            content: "›";
            margin: 0 10px;
            color: #d2691e;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            padding: 3rem 0;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        article {
            background-color: #fff;
            padding: 2.5rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        }
        h1 {
            font-size: 2.8rem;
            color: #8b4513;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            border-bottom: 4px solid #ffd700;
            padding-bottom: 0.5rem;
        }
        h2 {
            font-size: 2.2rem;
            color: #a0522d;
            margin: 2.5rem 0 1.2rem;
            padding-left: 0.5rem;
            border-left: 6px solid #ffa500;
        }
        h3 {
            font-size: 1.8rem;
            color: #d2691e;
            margin: 2rem 0 1rem;
        }
        h4 {
            font-size: 1.4rem;
            color: #cd853f;
            margin: 1.5rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.3rem;
            font-weight: 600;
            color: #5d2906;
            background-color: #fff9e6;
            padding: 1.5rem;
            border-radius: 10px;
            margin-bottom: 2.5rem;
            border-left: 5px solid #ffd700;
        }
        strong {
            color: #8b4513;
            font-weight: 800;
        }
        em {
            color: #d2691e;
            font-style: italic;
        }
        blockquote {
            border-left: 5px solid #ffa500;
            padding-left: 1.5rem;
            margin: 2rem 0;
            font-style: italic;
            color: #666;
            background-color: #f9f9f9;
            padding: 1.5rem;
            border-radius: 0 10px 10px 0;
        }
        .highlight-box {
            background: linear-gradient(to right, #fff9e6, #ffebcc);
            padding: 2rem;
            border-radius: 10px;
            border: 2px dashed #ffa500;
            margin: 2rem 0;
        }
        .image-container {
            margin: 2.5rem auto;
            text-align: center;
        }
        .image-container img {
            border-radius: 10px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
            border: 5px solid #fff;
        }
        .image-caption {
            font-style: italic;
            color: #666;
            margin-top: 0.8rem;
            font-size: 0.95rem;
        }
        .sidebar {
            background-color: #fff;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            align-self: start;
            position: sticky;
            top: 140px;
        }
        .widget {
            margin-bottom: 2.5rem;
        }
        .widget h3 {
            font-size: 1.5rem;
            color: #8b4513;
            margin-bottom: 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #ffd700;
        }
        .search-form {
            display: flex;
        }
        .search-input {
            flex: 1;
            padding: 0.8rem 1rem;
            border: 2px solid #ffa500;
            border-radius: 25px 0 0 25px;
            font-size: 1rem;
        }
        .search-button {
            background-color: #ffa500;
            color: white;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 0 25px 25px 0;
            cursor: pointer;
            font-weight: bold;
            transition: background 0.3s;
        }
        .search-button:hover {
            background-color: #d2691e;
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .rating-stars {
            display: flex;
            gap: 0.5rem;
            font-size: 1.5rem;
            color: #ffd700;
            cursor: pointer;
        }
        .rating-stars span:hover {
            color: #ffa500;
        }
        textarea, input[type="text"], input[type="email"] {
            padding: 0.8rem;
            border: 1px solid #ccc;
            border-radius: 8px;
            font-size: 1rem;
            width: 100%;
        }
        .submit-button {
            background-color: #d2691e;
            color: white;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 25px;
            cursor: pointer;
            font-weight: bold;
            transition: background 0.3s;
            align-self: flex-start;
        }
        .submit-button:hover {
            background-color: #8b4513;
        }
        .site-footer {
            background-color: #8b4513;
            color: #fff;
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }
        .footer-widget h4 {
            color: #ffd700;
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        .footer-links a {
            color: #ffebcc;
        }
        .footer-links a:hover {
            color: #ffd700;
        }
        friend-link {
            display: block;
            background-color: #a0522d;
            padding: 1rem;
            border-radius: 8px;
            margin: 1rem 0;
            text-align: center;
            font-weight: bold;
        }
        friend-link a {
            color: #ffd700;
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid #a0522d;
            font-size: 0.9rem;
            color: #ffebcc;
        }
        @media (max-width: 768px) {
            .header-container {
                flex-wrap: wrap;
            }
            .hamburger {
                display: block;
            }
            .main-nav ul {
                display: none;
                flex-direction: column;
                width: 100%;
                background-color: #fff;
                position: absolute;
                top: 100%;
                left: 0;
                padding: 1rem;
                box-shadow: 0 10px 15px rgba(0,0,0,0.1);
                border-radius: 0 0 15px 15px;
            }
            .main-nav.active ul {
                display: flex;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            article {
                padding: 1.5rem;
            }
            .sidebar {
                position: static;
            }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        article, .sidebar {
            animation: fadeIn 0.8s ease-out;
        }
