* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary-color: #2c5aa0;
            --secondary-color: #d32f2f;
            --accent-color: #ff9800;
            --light-color: #f5f7fa;
            --dark-color: #1a237e;
            --text-color: #333333;
            --text-light: #666666;
            --border-color: #e0e0e0;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            --transition: all 0.3s ease;
        }
        body {
            color: var(--text-color);
            background-color: var(--light-color);
            line-height: 1.6;
            overflow-x: hidden;
        }
        .header {
            background: linear-gradient(135deg, var(--primary-color), var(--dark-color));
            color: white;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            text-decoration: none;
            color: white;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo i {
            color: var(--accent-color);
        }
        .nav-desktop {
            display: flex;
            gap: 2rem;
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
        }
        .nav-link {
            color: white;
            text-decoration: none;
            font-weight: 500;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            transition: var(--transition);
        }
        .nav-link:hover {
            background-color: rgba(255, 255, 255, 0.15);
            transform: translateY(-2px);
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            padding: 0.5rem;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background-color: var(--dark-color);
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            padding: 1rem;
            box-shadow: var(--shadow);
        }
        .nav-mobile.active {
            display: flex;
        }
        .breadcrumb {
            background-color: #f0f4f8;
            padding: 1rem 0;
            border-bottom: 1px solid var(--border-color);
        }
        .breadcrumb-links {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            font-size: 0.9rem;
        }
        .breadcrumb-link {
            color: var(--primary-color);
            text-decoration: none;
        }
        .breadcrumb-link:hover {
            text-decoration: underline;
        }
        .breadcrumb-separator {
            color: var(--text-light);
        }
        .search-container {
            background-color: white;
            padding: 2rem;
            border-radius: 8px;
            margin: 2rem auto;
            box-shadow: var(--shadow);
            max-width: 800px;
        }
        .search-form {
            display: flex;
            gap: 1rem;
        }
        .search-input {
            flex: 1;
            padding: 1rem;
            border: 2px solid var(--border-color);
            border-radius: 4px;
            font-size: 1rem;
            transition: var(--transition);
        }
        .search-input:focus {
            outline: none;
            border-color: var(--primary-color);
        }
        .search-button {
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 0 2rem;
            border-radius: 4px;
            cursor: pointer;
            font-weight: 600;
            transition: var(--transition);
        }
        .search-button:hover {
            background-color: var(--dark-color);
            transform: translateY(-2px);
        }
        .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-content {
            background-color: white;
            padding: 2.5rem;
            border-radius: 8px;
            box-shadow: var(--shadow);
        }
        .article-header {
            margin-bottom: 2.5rem;
            border-bottom: 2px solid var(--primary-color);
            padding-bottom: 1.5rem;
        }
        .article-title {
            font-size: 2.5rem;
            color: var(--dark-color);
            margin-bottom: 1rem;
            line-height: 1.2;
        }
        .article-meta {
            display: flex;
            gap: 1.5rem;
            color: var(--text-light);
            font-size: 0.9rem;
        }
        .article-meta-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        h1, h2, h3 {
            color: var(--dark-color);
            margin-top: 2rem;
            margin-bottom: 1rem;
            line-height: 1.3;
        }
        h2 {
            font-size: 1.8rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid var(--border-color);
        }
        h3 {
            font-size: 1.4rem;
            color: var(--primary-color);
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.2rem;
            font-weight: 500;
            color: var(--dark-color);
            background-color: #f0f7ff;
            padding: 1.5rem;
            border-left: 4px solid var(--primary-color);
            border-radius: 0 8px 8px 0;
            margin-bottom: 2rem;
        }
        .highlight {
            background-color: #fff8e1;
            padding: 1.5rem;
            border-radius: 8px;
            border-left: 4px solid var(--accent-color);
            margin: 2rem 0;
        }
        .key-term {
            font-weight: 700;
            color: var(--primary-color);
        }
        .strategy-tip {
            background-color: #e8f5e9;
            border-left: 4px solid #4caf50;
            padding: 1.5rem;
            border-radius: 0 8px 8px 0;
            margin: 1.5rem 0;
        }
        .article-image {
            width: 100%;
            max-width: 800px;
            height: auto;
            border-radius: 8px;
            margin: 2rem auto;
            display: block;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        .article-image:hover {
            transform: scale(1.02);
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: var(--text-light);
            margin-top: 0.5rem;
            font-size: 0.9rem;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .sidebar-widget {
            background-color: white;
            padding: 1.5rem;
            border-radius: 8px;
            box-shadow: var(--shadow);
        }
        .widget-title {
            font-size: 1.2rem;
            color: var(--dark-color);
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--primary-color);
        }
        .related-links {
            list-style: none;
        }
        .related-link {
            padding: 0.8rem 0;
            border-bottom: 1px solid var(--border-color);
        }
        .related-link:last-child {
            border-bottom: none;
        }
        .related-link a {
            color: var(--text-color);
            text-decoration: none;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .related-link a:hover {
            color: var(--primary-color);
            padding-left: 5px;
        }
        .rating-section, .comment-section {
            background-color: white;
            padding: 2rem;
            border-radius: 8px;
            margin: 2rem 0;
            box-shadow: var(--shadow);
        }
        .section-title {
            font-size: 1.5rem;
            color: var(--dark-color);
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .rating-container {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }
        .stars {
            display: flex;
            gap: 0.3rem;
        }
        .star {
            font-size: 1.8rem;
            color: #ddd;
            cursor: pointer;
            transition: var(--transition);
        }
        .star:hover,
        .star.active {
            color: #ffc107;
        }
        .rating-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .form-group {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }
        .form-label {
            font-weight: 600;
            color: var(--dark-color);
        }
        .form-input, .form-textarea {
            padding: 0.8rem;
            border: 1px solid var(--border-color);
            border-radius: 4px;
            font-size: 1rem;
            transition: var(--transition);
        }
        .form-input:focus, .form-textarea:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(44, 90, 160, 0.1);
        }
        .form-textarea {
            min-height: 120px;
            resize: vertical;
        }
        .form-button {
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 4px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            align-self: flex-start;
        }
        .form-button:hover {
            background-color: var(--dark-color);
            transform: translateY(-2px);
        }
        .long-tail-links {
            background-color: #f8fafc;
            padding: 2.5rem;
            border-radius: 8px;
            margin: 2rem 0;
        }
        .links-title {
            font-size: 1.5rem;
            color: var(--dark-color);
            margin-bottom: 1.5rem;
            text-align: center;
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1rem;
        }
        .web-link {
            background-color: white;
            padding: 1rem;
            border-radius: 4px;
            border-left: 3px solid var(--primary-color);
            box-shadow: 0 2px 4px rgba(0,0,0,0.05);
            transition: var(--transition);
        }
        .web-link:hover {
            transform: translateX(5px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        .web-link a {
            color: var(--text-color);
            text-decoration: none;
            font-weight: 500;
            display: block;
        }
        .web-link a:hover {
            color: var(--primary-color);
        }
        .footer {
            background-color: var(--dark-color);
            color: white;
            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-logo {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: white;
            text-decoration: none;
            display: inline-block;
        }
        .footer-description {
            color: #b0bec5;
            line-height: 1.7;
        }
        .footer-links-title {
            font-size: 1.2rem;
            margin-bottom: 1.5rem;
            color: white;
        }
        .footer-links {
            list-style: none;
        }
        .footer-link {
            margin-bottom: 0.8rem;
        }
        .footer-link a {
            color: #b0bec5;
            text-decoration: none;
            transition: var(--transition);
        }
        .footer-link a:hover {
            color: white;
            padding-left: 5px;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: #b0bec5;
            font-size: 0.9rem;
        }
        .text-center { text-align: center; }
        .mb-1 { margin-bottom: 1rem; }
        .mb-2 { margin-bottom: 2rem; }
        .mt-1 { margin-top: 1rem; }
        .mt-2 { margin-top: 2rem; }
        .flex { display: flex; }
        .items-center { align-items: center; }
        .justify-between { justify-content: space-between; }
        .gap-1 { gap: 1rem; }
        @media (max-width: 768px) {
            .article-title { font-size: 2rem; }
            .article-content { padding: 1.5rem; }
            .search-form { flex-direction: column; }
            .rating-container { flex-direction: column; align-items: flex-start; }
            .web-links { grid-template-columns: 1fr; }
        }
