* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary-color: #ff6b35;
            --secondary-color: #1a237e;
            --accent-color: #00e5ff;
            --light-bg: #f5f7fa;
            --dark-text: #222;
            --light-text: #555;
            --white: #ffffff;
            --shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            --border-radius: 12px;
            --transition: all 0.3s ease;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: var(--light-bg);
            color: var(--dark-text);
            line-height: 1.7;
            overflow-x: hidden;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, var(--secondary-color), #283593);
            color: var(--white);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            color: var(--white);
            text-decoration: none;
            font-size: 1.8rem;
            font-weight: 800;
            display: flex;
            align-items: center;
            gap: 10px;
            letter-spacing: 0.5px;
        }
        .logo i {
            color: var(--primary-color);
        }
        .logo span {
            color: var(--accent-color);
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .desktop-nav a {
            color: var(--white);
            text-decoration: none;
            font-weight: 600;
            font-size: 1.05rem;
            padding: 0.5rem 0;
            position: relative;
            transition: var(--transition);
        }
        .desktop-nav a:hover {
            color: var(--accent-color);
        }
        .desktop-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: var(--primary-color);
            transition: width 0.3s ease;
        }
        .desktop-nav a:hover::after {
            width: 100%;
        }
        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            position: fixed;
            top: 70px;
            left: 0;
            width: 100%;
            background: var(--secondary-color);
            padding: 1rem;
            box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
            z-index: 999;
            transform: translateY(-100%);
            opacity: 0;
            transition: var(--transition);
        }
        .mobile-nav.active {
            transform: translateY(0);
            opacity: 1;
        }
        .mobile-nav ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .mobile-nav a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 0.8rem;
            display: block;
            border-radius: var(--border-radius);
            transition: var(--transition);
        }
        .mobile-nav a:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        .breadcrumb {
            background: #e8eaf6;
            padding: 1rem 0;
            margin-bottom: 2rem;
        }
        .breadcrumb .container {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        .breadcrumb a {
            color: var(--secondary-color);
            text-decoration: none;
            font-weight: 500;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb i {
            margin: 0 5px;
            color: var(--light-text);
        }
        main {
            padding: 2rem 0;
        }
        .article-header {
            text-align: center;
            margin-bottom: 3rem;
            padding: 2rem;
            background: linear-gradient(to right, rgba(26, 35, 126, 0.05), rgba(255, 107, 53, 0.05));
            border-radius: var(--border-radius);
            border-left: 5px solid var(--primary-color);
        }
        .article-header h1 {
            font-size: 2.8rem;
            color: var(--secondary-color);
            margin-bottom: 1rem;
            line-height: 1.2;
        }
        .article-meta {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 1.5rem;
            color: var(--light-text);
            font-size: 0.95rem;
        }
        .article-meta i {
            margin-right: 5px;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }
        .article-content {
            background: var(--white);
            padding: 2.5rem;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        h2 {
            color: var(--secondary-color);
            margin: 2.5rem 0 1.5rem;
            padding-bottom: 0.7rem;
            border-bottom: 2px solid #eee;
            font-size: 2rem;
        }
        h3 {
            color: var(--primary-color);
            margin: 2rem 0 1rem;
            font-size: 1.6rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            color: var(--dark-text);
            text-align: justify;
        }
        .lead {
            font-size: 1.3rem;
            font-weight: 500;
            color: var(--secondary-color);
            background: #e3f2fd;
            padding: 1.5rem;
            border-radius: var(--border-radius);
            margin-bottom: 2rem;
            border-left: 4px solid var(--accent-color);
        }
        .highlight {
            background: linear-gradient(120deg, rgba(255, 107, 53, 0.15) 0%, rgba(255, 107, 53, 0) 80%);
            padding: 1.5rem;
            border-radius: var(--border-radius);
            margin: 1.5rem 0;
            border: 1px solid rgba(255, 107, 53, 0.2);
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .tip {
            background: #e8f5e9;
            border-left: 5px solid #4caf50;
            padding: 1.5rem;
            margin: 1.5rem 0;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
        }
        .tip h4 {
            color: #2e7d32;
            margin-bottom: 0.5rem;
        }
        .article-image {
            margin: 2.5rem 0;
            text-align: center;
        }
        .article-image img {
            max-width: 100%;
            height: auto;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        .article-image img:hover {
            transform: scale(1.01);
        }
        .image-caption {
            margin-top: 0.8rem;
            font-style: italic;
            color: var(--light-text);
            font-size: 0.95rem;
        }
        .search-widget {
            background: var(--white);
            padding: 1.5rem;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
        }
        .search-widget h3 {
            margin-top: 0;
            color: var(--secondary-color);
            font-size: 1.4rem;
        }
        .search-form {
            display: flex;
            margin-top: 1rem;
        }
        .search-form input {
            flex: 1;
            padding: 0.9rem 1rem;
            border: 2px solid #ddd;
            border-radius: var(--border-radius) 0 0 var(--border-radius);
            font-size: 1rem;
            outline: none;
            transition: var(--transition);
        }
        .search-form input:focus {
            border-color: var(--primary-color);
        }
        .search-form button {
            background: var(--primary-color);
            color: white;
            border: none;
            padding: 0 1.5rem;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
            cursor: pointer;
            font-size: 1.1rem;
            transition: var(--transition);
        }
        .search-form button:hover {
            background: #e55a2b;
        }
        .interaction-widgets {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .widget {
            background: var(--white);
            padding: 1.8rem;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
        }
        .widget h3 {
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .widget h3 i {
            color: var(--primary-color);
        }
        .rating {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin: 1.5rem 0;
        }
        .stars {
            display: flex;
            gap: 5px;
        }
        .stars i {
            color: #ffc107;
            font-size: 1.8rem;
            cursor: pointer;
            transition: var(--transition);
        }
        .stars i:hover {
            transform: scale(1.2);
        }
        .rating-text {
            font-weight: 600;
            color: var(--secondary-color);
        }
        .comment-form textarea,
        .score-form select {
            width: 100%;
            padding: 1rem;
            border: 2px solid #ddd;
            border-radius: var(--border-radius);
            margin-bottom: 1rem;
            font-size: 1rem;
            resize: vertical;
            outline: none;
            transition: var(--transition);
        }
        .comment-form textarea:focus,
        .score-form select:focus {
            border-color: var(--primary-color);
        }
        .form-submit {
            background: var(--secondary-color);
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: var(--border-radius);
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            width: 100%;
            font-size: 1.05rem;
        }
        .form-submit:hover {
            background: #0d1a6b;
            transform: translateY(-3px);
            box-shadow: 0 7px 12px rgba(13, 26, 107, 0.2);
        }
        .longtail-links {
            background: var(--secondary-color);
            padding: 3rem 0;
            margin-top: 4rem;
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 1.5rem;
        }
        .web-link {
            background: rgba(255, 255, 255, 0.05);
            border-radius: var(--border-radius);
            padding: 1.2rem;
            transition: var(--transition);
        }
        .web-link:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-5px);
        }
        .web-link a {
            color: var(--accent-color);
            text-decoration: none;
            font-weight: 500;
            display: block;
            text-align: center;
        }
        footer {
            background: #0a0e2e;
            color: #aaa;
            padding: 3rem 0 1.5rem;
        }
        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 2rem;
        }
        .copyright {
            font-size: 0.95rem;
        }
        .footer-links {
            display: flex;
            gap: 2rem;
        }
        .footer-links a {
            color: #aaa;
            text-decoration: none;
            transition: var(--transition);
        }
        .footer-links a:hover {
            color: var(--accent-color);
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            .article-header h1 {
                font-size: 2.3rem;
            }
            .web-links {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
            .mobile-toggle {
                display: block;
            }
            .mobile-nav {
                display: block;
            }
            .article-header h1 {
                font-size: 2rem;
            }
            .article-meta {
                flex-direction: column;
                gap: 0.5rem;
            }
            .web-links {
                grid-template-columns: repeat(2, 1fr);
            }
            .footer-content {
                flex-direction: column;
                text-align: center;
            }
        }
        @media (max-width: 576px) {
            .article-content {
                padding: 1.5rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            h3 {
                font-size: 1.4rem;
            }
            .web-links {
                grid-template-columns: 1fr;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form input {
                border-radius: var(--border-radius);
                margin-bottom: 10px;
            }
            .search-form button {
                border-radius: var(--border-radius);
                padding: 0.9rem;
            }
        }
