        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #f8f5f0;
            color: #333;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: #8b4513;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #d2691e;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .header {
            background: linear-gradient(135deg, #1a2a3a 0%, #2c3e50 100%);
            color: #fff;
            padding: 1.5rem 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 800;
            color: #f0c040;
            letter-spacing: 1px;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
        }
        .logo span {
            color: #fff;
        }
        .nav-desktop ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .nav-desktop a {
            color: #eee;
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 4px;
        }
        .nav-desktop a:hover {
            background-color: rgba(240, 192, 64, 0.2);
            color: #f0c040;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #f0c040;
        }
        .nav-mobile {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background-color: #2c3e50;
            flex-direction: column;
            padding: 1rem;
            box-shadow: 0 5px 10px rgba(0,0,0,0.2);
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile ul {
            list-style: none;
            width: 100%;
        }
        .nav-mobile li {
            margin-bottom: 0.8rem;
        }
        .nav-mobile a {
            color: #eee;
            display: block;
            padding: 0.8rem;
            border-radius: 4px;
        }
        .nav-mobile a:hover {
            background-color: rgba(240, 192, 64, 0.2);
        }
        .breadcrumb {
            background-color: #e9e2d6;
            padding: 1rem 0;
            font-size: 0.9rem;
            margin-bottom: 2rem;
        }
        .breadcrumb a {
            color: #8b4513;
        }
        .breadcrumb span {
            color: #666;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            margin: 2rem 0;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        .article {
            background-color: #fff;
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
        }
        .article h1 {
            color: #1a2a3a;
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            border-bottom: 3px solid #f0c040;
            padding-bottom: 1rem;
        }
        .article h2 {
            color: #2c3e50;
            font-size: 2rem;
            margin: 2.5rem 0 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px dashed #d2691e;
        }
        .article h3 {
            color: #8b4513;
            font-size: 1.5rem;
            margin: 2rem 0 1rem;
        }
        .article p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .article strong {
            color: #8b4513;
            font-weight: 700;
        }
        .article em {
            color: #555;
            font-style: italic;
        }
        .article ul, .article ol {
            margin-left: 2rem;
            margin-bottom: 1.5rem;
        }
        .article blockquote {
            border-left: 4px solid #d2691e;
            padding-left: 1.5rem;
            margin: 2rem 0;
            font-style: italic;
            color: #555;
            background-color: #f9f7f2;
            padding: 1.5rem;
            border-radius: 0 8px 8px 0;
        }
        .highlight-box {
            background: linear-gradient(145deg, #fff8e1, #ffecb3);
            border-left: 5px solid #f0c040;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .image-wrapper {
            margin: 2.5rem 0;
            text-align: center;
        }
        .article-img {
            width: 100%;
            max-width: 800px;
            border-radius: 10px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
            margin: 0 auto;
        }
        .caption {
            font-size: 0.9rem;
            color: #666;
            margin-top: 0.5rem;
            font-style: italic;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .widget {
            background-color: #fff;
            padding: 1.8rem;
            border-radius: 10px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
        }
        .widget h3 {
            color: #2c3e50;
            margin-bottom: 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #f0c040;
        }
        .search-form {
            display: flex;
        }
        .search-input {
            flex-grow: 1;
            padding: 0.8rem;
            border: 2px solid #d2691e;
            border-right: none;
            border-radius: 6px 0 0 6px;
            font-size: 1rem;
        }
        .search-btn {
            background-color: #d2691e;
            color: white;
            border: none;
            padding: 0 1.5rem;
            border-radius: 0 6px 6px 0;
            cursor: pointer;
            font-size: 1rem;
            transition: background 0.3s;
        }
        .search-btn:hover {
            background-color: #b3571b;
        }
        .rating-widget h4 {
            margin-bottom: 1rem;
        }
        .stars {
            display: flex;
            gap: 0.5rem;
            margin-bottom: 1rem;
        }
        .star {
            font-size: 1.8rem;
            color: #ddd;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star:hover,
        .star.active {
            color: #f0c040;
        }
        .rating-form textarea {
            width: 100%;
            padding: 0.8rem;
            border: 1px solid #ccc;
            border-radius: 6px;
            margin-bottom: 1rem;
            resize: vertical;
        }
        .submit-btn {
            background-color: #2c3e50;
            color: white;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 6px;
            cursor: pointer;
            width: 100%;
            font-weight: 600;
            transition: background 0.3s;
        }
        .submit-btn:hover {
            background-color: #1a2a3a;
        }
        .comments-section {
            margin-top: 3rem;
            border-top: 2px solid #eee;
            padding-top: 2rem;
        }
        .comment-form textarea {
            width: 100%;
            padding: 1rem;
            border: 2px solid #d2691e;
            border-radius: 8px;
            margin-bottom: 1rem;
            resize: vertical;
            font-size: 1rem;
        }
        .comment-list {
            margin-top: 2rem;
        }
        .comment {
            background-color: #f9f9f9;
            padding: 1.2rem;
            border-radius: 8px;
            margin-bottom: 1.2rem;
            border-left: 4px solid #8b4513;
        }
        .comment-author {
            font-weight: bold;
            color: #2c3e50;
            margin-bottom: 0.5rem;
        }
        .comment-date {
            font-size: 0.85rem;
            color: #777;
            margin-bottom: 0.8rem;
        }
        .long-tail-links {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 1rem;
            margin: 3rem 0;
        }
        @media (max-width: 768px) {
            .long-tail-links {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 480px) {
            .long-tail-links {
                grid-template-columns: 1fr;
            }
        }
        .web-link {
            background-color: #fff;
            padding: 1rem;
            border-radius: 8px;
            text-align: center;
            box-shadow: 0 3px 8px rgba(0,0,0,0.1);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .web-link:hover {
            transform: translateY(-5px);
            box-shadow: 0 6px 15px rgba(0,0,0,0.15);
        }
        .web-link a {
            color: #2c3e50;
            font-weight: 600;
            display: block;
        }
        .footer {
            background-color: #1a2a3a;
            color: #ddd;
            padding: 3rem 0 1.5rem;
            margin-top: 4rem;
        }
        .footer-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: #f0c040;
            margin-bottom: 1rem;
        }
        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
        }
        .footer-links a {
            color: #ccc;
        }
        .footer-links a:hover {
            color: #f0c040;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #2c3e50;
            font-size: 0.9rem;
            color: #aaa;
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
            .hamburger {
                display: block;
            }
            .article {
                padding: 1.5rem;
            }
            .article h1 {
                font-size: 2.2rem;
            }
            .article h2 {
                font-size: 1.7rem;
            }
            .footer-content {
                flex-direction: column;
            }
        }
