        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --primary-color: #1a365d;
            --secondary-color: #e53e3e;
            --accent-color: #f6ad55;
            --text-color: #2d3748;
            --light-bg: #f7fafc;
            --dark-bg: #1a202c;
            --border-color: #e2e8f0;
            --success-color: #38a169;
            --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--text-color);
            background-color: var(--light-bg);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: var(--primary-color);
            color: white;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
        }
        .logo {
            font-size: 2rem;
            font-weight: 700;
            color: white;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo i {
            color: var(--accent-color);
        }
        .logo span {
            color: var(--accent-color);
        }
        .nav-desktop {
            display: flex;
            gap: 2rem;
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
        }
        .nav-desktop a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: var(--transition);
            padding: 0.5rem 1rem;
            border-radius: 4px;
        }
        .nav-desktop a:hover {
            background-color: rgba(255, 255, 255, 0.1);
            color: var(--accent-color);
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background-color: var(--dark-bg);
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            padding: 1rem;
            box-shadow: var(--shadow);
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            color: white;
            text-decoration: none;
            padding: 0.75rem 1rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            transition: var(--transition);
        }
        .nav-mobile a:hover {
            background-color: rgba(255, 255, 255, 0.05);
            padding-left: 1.5rem;
        }
        .breadcrumb {
            background-color: var(--light-bg);
            padding: 1rem 0;
            border-bottom: 1px solid var(--border-color);
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            gap: 0.5rem;
        }
        .breadcrumb li {
            display: flex;
            align-items: center;
        }
        .breadcrumb a {
            color: var(--primary-color);
            text-decoration: none;
            transition: var(--transition);
        }
        .breadcrumb a:hover {
            color: var(--secondary-color);
        }
        .breadcrumb li:not(:last-child)::after {
            content: '/';
            margin-left: 0.5rem;
            color: var(--text-color);
        }
        main {
            padding: 2rem 0;
        }
        .article-header {
            text-align: center;
            margin-bottom: 3rem;
            padding: 2rem;
            background: linear-gradient(135deg, var(--primary-color), #2d3748);
            color: white;
            border-radius: 10px;
        }
        .article-header h1 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            line-height: 1.2;
        }
        .article-header .meta {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-top: 1.5rem;
            font-size: 0.9rem;
            opacity: 0.9;
        }
        .article-header .meta i {
            margin-right: 0.5rem;
            color: var(--accent-color);
        }
        .content-section {
            background-color: white;
            border-radius: 10px;
            padding: 2.5rem;
            margin-bottom: 2rem;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        .content-section:hover {
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
        }
        .content-section h2 {
            color: var(--primary-color);
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
            padding-bottom: 0.75rem;
            border-bottom: 3px solid var(--accent-color);
        }
        .content-section h3 {
            color: var(--dark-bg);
            font-size: 1.4rem;
            margin: 1.5rem 0 1rem 0;
        }
        .content-section p {
            margin-bottom: 1.5rem;
            font-size: 1.05rem;
            line-height: 1.7;
        }
        .highlight {
            background-color: rgba(246, 173, 85, 0.1);
            border-left: 4px solid var(--accent-color);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 4px 4px 0;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }
        .stat-card {
            background-color: var(--light-bg);
            padding: 1.5rem;
            border-radius: 8px;
            text-align: center;
            border-top: 4px solid var(--primary-color);
        }
        .stat-card .number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 0.5rem;
        }
        .stat-card .label {
            color: var(--text-color);
            font-size: 0.9rem;
        }
        .search-section {
            background-color: white;
            padding: 2rem;
            border-radius: 10px;
            margin-bottom: 2rem;
            box-shadow: var(--shadow);
        }
        .search-form {
            display: flex;
            max-width: 600px;
            margin: 0 auto;
        }
        .search-form input {
            flex-grow: 1;
            padding: 1rem 1.5rem;
            border: 2px solid var(--border-color);
            border-radius: 50px 0 0 50px;
            font-size: 1rem;
            transition: var(--transition);
        }
        .search-form input:focus {
            outline: none;
            border-color: var(--primary-color);
        }
        .search-form button {
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 0 50px 50px 0;
            cursor: pointer;
            transition: var(--transition);
            font-weight: 600;
        }
        .search-form button:hover {
            background-color: var(--secondary-color);
        }
        .user-interaction {
            background-color: white;
            padding: 2rem;
            border-radius: 10px;
            margin: 3rem 0;
            box-shadow: var(--shadow);
        }
        .rating-section {
            text-align: center;
            margin-bottom: 2rem;
        }
        .stars {
            font-size: 2rem;
            color: #e2e8f0;
            margin: 1rem 0;
            cursor: pointer;
        }
        .stars .star {
            transition: var(--transition);
            margin: 0 0.25rem;
        }
        .stars .star:hover,
        .stars .star.active {
            color: var(--accent-color);
        }
        .comment-form textarea {
            width: 100%;
            padding: 1rem;
            border: 2px solid var(--border-color);
            border-radius: 8px;
            min-height: 150px;
            margin-bottom: 1rem;
            font-family: inherit;
            transition: var(--transition);
        }
        .comment-form textarea:focus {
            outline: none;
            border-color: var(--primary-color);
        }
        .form-row {
            display: flex;
            gap: 1rem;
            margin-bottom: 1rem;
        }
        .form-row input {
            flex: 1;
            padding: 0.75rem 1rem;
            border: 2px solid var(--border-color);
            border-radius: 8px;
            transition: var(--transition);
        }
        .form-row input:focus {
            outline: none;
            border-color: var(--primary-color);
        }
        .submit-btn {
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 8px;
            cursor: pointer;
            font-weight: 600;
            transition: var(--transition);
            width: 100%;
        }
        .submit-btn:hover {
            background-color: var(--secondary-color);
            transform: translateY(-2px);
        }
        .article-image {
            width: 100%;
            max-width: 800px;
            margin: 2rem auto;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        .article-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: var(--transition);
        }
        .article-image img:hover {
            transform: scale(1.02);
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            padding: 1rem;
            background-color: var(--light-bg);
            color: var(--text-color);
            font-size: 0.9rem;
        }
        .longtail-links {
            background-color: var(--light-bg);
            padding: 3rem 0;
            border-top: 1px solid var(--border-color);
            border-bottom: 1px solid var(--border-color);
        }
        .web-links-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
        }
        .web-link {
            background-color: white;
            padding: 1.5rem;
            border-radius: 8px;
            border-left: 4px solid var(--primary-color);
            transition: var(--transition);
        }
        .web-link:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow);
        }
        .web-link a {
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 500;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        .web-link a i {
            color: var(--accent-color);
            transition: var(--transition);
        }
        .web-link:hover a i {
            transform: translateX(5px);
        }
        footer {
            background-color: var(--dark-bg);
            color: white;
            padding: 3rem 0 1.5rem 0;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-logo {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }
        .footer-logo span {
            color: var(--accent-color);
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .header-container {
                padding: 1rem;
            }
            .article-header h1 {
                font-size: 2rem;
            }
            .content-section {
                padding: 1.5rem;
            }
            .content-section h2 {
                font-size: 1.5rem;
            }
            .form-row {
                flex-direction: column;
                gap: 0.5rem;
            }
            .stats-grid {
                grid-template-columns: 1fr;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form input,
            .search-form button {
                border-radius: 8px;
                width: 100%;
            }
            .search-form input {
                margin-bottom: 0.5rem;
            }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .content-section, .search-section, .user-interaction {
            animation: fadeIn 0.6s ease-out;
        }
        .text-center { text-align: center; }
        .text-bold { font-weight: 700; }
        .text-accent { color: var(--accent-color); }
        .text-primary { color: var(--primary-color); }
        .mb-2 { margin-bottom: 2rem; }
        .mt-2 { margin-top: 2rem; }
        .emoji { font-size: 1.2rem; margin-right: 0.5rem; }
