        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary: #6C63FF;
            --secondary: #FF6584;
            --accent: #36D1DC;
            --dark: #2A2D43;
            --light: #F8F9FA;
            --gray: #6C757D;
            --shadow: 0 4px 12px rgba(0,0,0,0.08);
            --transition: all 0.3s ease;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: var(--light);
            color: var(--dark);
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }
        ul { list-style: none; }
        img { max-width: 100%; height: auto; display: block; }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .btn {
            display: inline-block;
            padding: 12px 28px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            color: white;
            border-radius: 50px;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: var(--transition);
            text-align: center;
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow);
        }
        .section-title {
            font-size: 2.2rem;
            margin-bottom: 1.5rem;
            color: var(--dark);
            position: relative;
            padding-bottom: 10px;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 70px;
            height: 4px;
            background: linear-gradient(to right, var(--primary), var(--accent));
            border-radius: 2px;
        }
        .highlight {
            background: linear-gradient(120deg, rgba(108, 99, 255, 0.15) 0%, rgba(54, 209, 220, 0.15) 100%);
            padding: 2px 8px;
            border-radius: 4px;
            font-weight: 600;
        }
        .header {
            background-color: white;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 18px 0;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--primary);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo i { color: var(--secondary); }
        .nav-desktop {
            display: flex;
            gap: 30px;
        }
        @media (max-width: 768px) {
            .nav-desktop { display: none; }
        }
        .nav-desktop a {
            font-weight: 600;
            padding: 8px 0;
            position: relative;
        }
        .nav-desktop a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: var(--primary);
            transition: width 0.3s;
        }
        .nav-desktop a:hover::after {
            width: 100%;
        }
        .mobile-toggle {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--dark);
        }
        @media (max-width: 768px) {
            .mobile-toggle { display: block; }
        }
        .nav-mobile {
            position: fixed;
            top: 70px;
            left: 0;
            width: 100%;
            background: white;
            padding: 20px;
            box-shadow: var(--shadow);
            transform: translateY(-150%);
            opacity: 0;
            transition: transform 0.4s ease, opacity 0.3s;
            z-index: 999;
        }
        .nav-mobile.active {
            transform: translateY(0);
            opacity: 1;
        }
        .nav-mobile ul {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .nav-mobile a {
            display: block;
            padding: 12px 15px;
            border-radius: 8px;
            font-weight: 600;
        }
        .nav-mobile a:hover {
            background-color: rgba(108, 99, 255, 0.1);
        }
        .breadcrumb {
            padding: 15px 0;
            background-color: #f1f3ff;
            font-size: 0.9rem;
        }
        .breadcrumb .container {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }
        .breadcrumb a { color: var(--primary); }
        .breadcrumb a:hover { text-decoration: underline; }
        .breadcrumb span { color: var(--gray); }
        .hero {
            padding: 60px 0 40px;
            background: linear-gradient(135deg, #f5f7ff 0%, #e3e6ff 100%);
        }
        .hero-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }
        @media (max-width: 992px) {
            .hero-content { grid-template-columns: 1fr; }
        }
        .hero-text h1 {
            font-size: 3rem;
            line-height: 1.2;
            margin-bottom: 20px;
            color: var(--dark);
        }
        @media (max-width: 576px) {
            .hero-text h1 { font-size: 2.3rem; }
        }
        .hero-text p {
            font-size: 1.1rem;
            margin-bottom: 30px;
            color: var(--gray);
        }
        .hero-image {
            border-radius: 16px;
            overflow: hidden;
            box-shadow: var(--shadow);
            position: relative;
        }
        .hero-image img {
            width: 100%;
            transition: transform 0.5s;
        }
        .hero-image:hover img {
            transform: scale(1.03);
        }
        .main-content {
            padding: 60px 0;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 50px;
        }
        @media (max-width: 992px) {
            .main-content { grid-template-columns: 1fr; }
        }
        .article-content p {
            margin-bottom: 1.5rem;
            font-size: 1.05rem;
        }
        .article-content h2 {
            font-size: 1.8rem;
            margin: 2.5rem 0 1.2rem;
            color: var(--dark);
            padding-left: 15px;
            border-left: 5px solid var(--primary);
        }
        .article-content h3 {
            font-size: 1.4rem;
            margin: 2rem 0 1rem;
            color: var(--dark);
        }
        .article-content blockquote {
            padding: 25px;
            background: linear-gradient(135deg, rgba(108, 99, 255, 0.05) 0%, rgba(54, 209, 220, 0.05) 100%);
            border-left: 5px solid var(--accent);
            margin: 2rem 0;
            border-radius: 0 10px 10px 0;
            font-style: italic;
        }
        .info-box {
            background: white;
            padding: 25px;
            border-radius: 12px;
            box-shadow: var(--shadow);
            margin: 2rem 0;
            border-top: 6px solid var(--secondary);
        }
        .info-box h4 {
            color: var(--secondary);
            margin-bottom: 15px;
            font-size: 1.3rem;
        }
        .comparison-table {
            width: 100%;
            border-collapse: collapse;
            margin: 2rem 0;
            box-shadow: var(--shadow);
            border-radius: 10px;
            overflow: hidden;
        }
        .comparison-table th, .comparison-table td {
            padding: 18px 15px;
            text-align: left;
            border-bottom: 1px solid #eee;
        }
        .comparison-table th {
            background-color: var(--primary);
            color: white;
            font-weight: 600;
        }
        .comparison-table tr:nth-child(even) {
            background-color: #f9f9ff;
        }
        .comparison-table tr:hover {
            background-color: #f0f2ff;
        }
        .sidebar-widget {
            background: white;
            padding: 25px;
            border-radius: 12px;
            box-shadow: var(--shadow);
            margin-bottom: 30px;
        }
        .sidebar-widget h3 {
            font-size: 1.3rem;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #eee;
        }
        .search-form {
            display: flex;
        }
        .search-form input {
            flex: 1;
            padding: 14px 18px;
            border: 2px solid #ddd;
            border-radius: 50px 0 0 50px;
            font-size: 1rem;
            outline: none;
        }
        .search-form button {
            background: var(--primary);
            color: white;
            border: none;
            padding: 0 25px;
            border-radius: 0 50px 50px 0;
            cursor: pointer;
            font-size: 1.1rem;
        }
        .rating-widget .stars {
            display: flex;
            gap: 8px;
            margin: 15px 0;
            font-size: 1.8rem;
            color: #FFD700;
        }
        .rating-widget form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .rating-widget select, .rating-widget textarea {
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-size: 1rem;
        }
        .rating-widget button {
            align-self: flex-start;
        }
        .trending-list li {
            padding: 12px 0;
            border-bottom: 1px dashed #eee;
        }
        .trending-list li:last-child { border-bottom: none; }
        .trending-list a:hover { color: var(--primary); }
        .comments-section {
            margin-top: 60px;
            padding-top: 40px;
            border-top: 2px solid #eee;
        }
        .comment-form {
            background: white;
            padding: 30px;
            border-radius: 12px;
            box-shadow: var(--shadow);
            margin-bottom: 40px;
        }
        .comment-form h3 { margin-bottom: 25px; }
        .form-group {
            margin-bottom: 20px;
        }
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
        }
        .form-group input, .form-group textarea {
            width: 100%;
            padding: 14px 18px;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-size: 1rem;
            transition: border 0.3s;
        }
        .form-group input:focus, .form-group textarea:focus {
            border-color: var(--primary);
            outline: none;
        }
        .comment-list .comment {
            background: white;
            padding: 25px;
            border-radius: 12px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
            margin-bottom: 25px;
        }
        .comment-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
            flex-wrap: wrap;
            gap: 10px;
        }
        .comment-author {
            font-weight: 700;
            color: var(--primary);
        }
        .comment-date {
            color: var(--gray);
            font-size: 0.9rem;
        }
        .web-links-section {
            background: linear-gradient(135deg, #2A2D43 0%, #3a3f5f 100%);
            color: white;
            padding: 50px 0;
        }
        .web-links-section .section-title {
            color: white;
            text-align: center;
        }
        .web-links-section .section-title::after {
            left: 50%;
            transform: translateX(-50%);
            background: var(--accent);
        }
        .web-links-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 20px;
            margin-top: 30px;
        }
        .web-link {
            background: rgba(255,255,255,0.08);
            padding: 20px;
            border-radius: 10px;
            transition: var(--transition);
            border: 1px solid rgba(255,255,255,0.1);
        }
        .web-link:hover {
            background: rgba(255,255,255,0.15);
            transform: translateY(-5px);
        }
        .web-link a {
            display: block;
            color: var(--accent);
            font-weight: 600;
        }
        .footer {
            background-color: var(--dark);
            color: #ccc;
            padding: 50px 0 20px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: white;
            margin-bottom: 20px;
            display: block;
        }
        .footer-about p {
            margin-bottom: 20px;
        }
        .footer-links h4, .footer-social h4 {
            color: white;
            margin-bottom: 25px;
            font-size: 1.2rem;
        }
        .footer-links ul li {
            margin-bottom: 12px;
        }
        .footer-links a:hover {
            color: var(--accent);
            padding-left: 5px;
        }
        .social-icons {
            display: flex;
            gap: 20px;
            font-size: 1.5rem;
        }
        .social-icons a:hover {
            color: var(--accent);
            transform: scale(1.1);
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 0.9rem;
            color: #999;
        }
        @media (max-width: 768px) {
            .section-title { font-size: 1.8rem; }
            .hero { padding: 40px 0 30px; }
            .main-content { padding: 40px 0; gap: 40px; }
            .info-box, .sidebar-widget { padding: 20px; }
            .comment-form { padding: 20px; }
        }
