        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary: #6C5CE7;
            --secondary: #A29BFE;
            --accent: #00CEC9;
            --dark: #2D3436;
            --light: #F9F9F9;
            --gray: #636E72;
            --success: #00B894;
            --warning: #FDCB6E;
            --danger: #E17055;
            --shadow: 0 6px 20px rgba(108, 92, 231, 0.12);
            --radius: 12px;
            --transition: all 0.3s ease;
        }
        body {
            background-color: #f8f7ff;
            color: var(--dark);
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: var(--primary);
            transition: var(--transition);
        }
        a:hover {
            color: var(--accent);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .main-header {
            background: linear-gradient(135deg, var(--primary), #5a4fcf);
            color: white;
            padding: 1.2rem 0;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 800;
            letter-spacing: -1px;
            background: linear-gradient(to right, #fff, var(--secondary));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }
        .logo a {
            color: white;
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            color: white;
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 30px;
            transition: var(--transition);
        }
        .main-nav a:hover, .main-nav a.active {
            background-color: rgba(255,255,255,0.15);
            transform: translateY(-2px);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
        }
        .breadcrumb {
            background-color: #f0eeff;
            padding: 1rem 0;
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        .breadcrumb li:not(:last-child)::after {
            content: ">";
            margin-left: 0.5rem;
            color: var(--gray);
        }
        .search-section {
            background: white;
            padding: 2.5rem 0;
            text-align: center;
            margin: 2rem 0;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
        }
        .search-box {
            max-width: 700px;
            margin: 0 auto;
            position: relative;
        }
        .search-box input {
            width: 100%;
            padding: 1.2rem 1.5rem;
            border: 2px solid var(--secondary);
            border-radius: 50px;
            font-size: 1.1rem;
            outline: none;
            transition: var(--transition);
        }
        .search-box input:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(108, 92, 231, 0.2);
        }
        .search-box button {
            position: absolute;
            right: 8px;
            top: 8px;
            background: linear-gradient(to right, var(--primary), var(--secondary));
            color: white;
            border: none;
            padding: 0.8rem 2rem;
            border-radius: 40px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-box button:hover {
            transform: scale(1.05);
            background: linear-gradient(to right, #5a4fcf, var(--primary));
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            margin: 3rem 0;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background: white;
            padding: 2.5rem;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
        }
        .article-header h1 {
            font-size: 2.8rem;
            color: var(--dark);
            margin-bottom: 1rem;
            line-height: 1.2;
        }
        .article-meta {
            display: flex;
            gap: 1.5rem;
            color: var(--gray);
            margin-bottom: 2rem;
            padding-bottom: 1.5rem;
            border-bottom: 1px solid #eee;
        }
        .article-meta span {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .content-section {
            margin-bottom: 3rem;
        }
        h2 {
            color: var(--primary);
            font-size: 2rem;
            margin: 2.5rem 0 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 3px solid var(--secondary);
        }
        h3 {
            color: var(--dark);
            font-size: 1.5rem;
            margin: 2rem 0 1rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }
        .highlight-box {
            background: linear-gradient(135deg, #f0eeff, #e6f7ff);
            border-left: 5px solid var(--accent);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 var(--radius) var(--radius) 0;
        }
        .tip {
            background-color: #fff9e6;
            border-left: 5px solid var(--warning);
            padding: 1.2rem;
            margin: 1.5rem 0;
            border-radius: 0 var(--radius) var(--radius) 0;
        }
        .tip::before {
            content: "💡 Pro Tip:";
            font-weight: bold;
            color: var(--dark);
            display: block;
            margin-bottom: 0.5rem;
        }
        .faq-item {
            margin-bottom: 1.5rem;
            border: 1px solid #e0e0e0;
            border-radius: var(--radius);
            overflow: hidden;
            transition: var(--transition);
        }
        .faq-question {
            background-color: #f8f7ff;
            padding: 1.2rem 1.5rem;
            font-weight: 700;
            font-size: 1.1rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .faq-answer {
            padding: 1.5rem;
            display: none;
        }
        .faq-item.active .faq-answer {
            display: block;
        }
        .faq-item.active .faq-question {
            background-color: var(--primary);
            color: white;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .sidebar-widget {
            background: white;
            padding: 1.8rem;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
        }
        .widget-title {
            font-size: 1.3rem;
            color: var(--primary);
            margin-bottom: 1.2rem;
            padding-bottom: 0.7rem;
            border-bottom: 2px solid #f0eeff;
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            font-size: 2rem;
            color: var(--warning);
            margin: 1rem 0;
        }
        .star {
            cursor: pointer;
            transition: var(--transition);
        }
        .star:hover, .star.active {
            transform: scale(1.2);
        }
        .rating-form textarea, .comment-form textarea {
            width: 100%;
            padding: 1rem;
            border: 1px solid #ddd;
            border-radius: var(--radius);
            margin-top: 1rem;
            resize: vertical;
            min-height: 120px;
            font-family: inherit;
        }
        .btn {
            display: inline-block;
            background: linear-gradient(to right, var(--primary), var(--secondary));
            color: white;
            padding: 0.9rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: var(--transition);
            margin-top: 1rem;
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 15px rgba(108, 92, 231, 0.3);
        }
        .comment {
            border-bottom: 1px solid #eee;
            padding: 1.2rem 0;
        }
        .comment-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 0.7rem;
            font-size: 0.9rem;
            color: var(--gray);
        }
        .featured-image {
            margin: 2.5rem 0;
            text-align: center;
        }
        .featured-image img {
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            max-height: 500px;
            object-fit: cover;
            width: 100%;
        }
        .image-caption {
            font-style: italic;
            color: var(--gray);
            margin-top: 0.8rem;
            font-size: 0.95rem;
        }
        .footer-links {
            background: var(--dark);
            padding: 3rem 0;
            color: white;
        }
        .web-link {
            display: inline-block;
            background: rgba(255,255,255,0.08);
            margin: 0.7rem;
            padding: 0.8rem 1.5rem;
            border-radius: 30px;
            transition: var(--transition);
        }
        .web-link:hover {
            background: rgba(255,255,255,0.15);
            transform: translateY(-3px);
        }
        .footer-links-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
        }
        .main-footer {
            background: #1a1a1a;
            color: #aaa;
            text-align: center;
            padding: 2.5rem 0;
        }
        .copyright {
            margin-top: 1.5rem;
            font-size: 0.9rem;
            color: #777;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .main-nav ul {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: var(--primary);
                padding: 1.5rem;
                box-shadow: 0 10px 20px rgba(0,0,0,0.1);
            }
            .main-nav.active ul {
                display: flex;
            }
            .article-header h1 {
                font-size: 2.2rem;
            }
            .article-content {
                padding: 1.8rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            .search-section {
                padding: 1.8rem 0;
            }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .content-section {
            animation: fadeIn 0.6s ease-out;
        }
