        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: #333;
            background-color: #f9f7fe;
            max-width: 100vw;
            overflow-x: hidden;
        }
        a { color: #6a4cff; text-decoration: none; transition: color 0.3s ease; }
        a:hover { color: #4d30cc; text-decoration: underline; }
        img { max-width: 100%; height: auto; display: block; }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .btn {
            display: inline-block;
            background: linear-gradient(135deg, #6a4cff, #8b70ff);
            color: white;
            padding: 12px 28px;
            border-radius: 50px;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(106, 76, 255, 0.2);
        }
        .btn:hover {
            background: linear-gradient(135deg, #5a3ce6, #7a5cf0);
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(106, 76, 255, 0.3);
            text-decoration: none;
            color: white;
        }
        .site-header {
            background: #fff;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }
        .logo a {
            font-size: 1.8rem;
            font-weight: 800;
            color: #6a4cff;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .logo i { font-size: 2rem; }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .desktop-nav a {
            font-weight: 600;
            color: #444;
            font-size: 1rem;
        }
        .desktop-nav a:hover { color: #6a4cff; }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: #6a4cff;
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            background: #fff;
            padding: 20px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .mobile-nav.active { display: block; }
        .mobile-nav ul { list-style: none; }
        .mobile-nav li { margin-bottom: 15px; }
        .mobile-nav a { font-weight: 600; color: #444; }
        .breadcrumb {
            padding: 15px 20px;
            background: #f0edff;
            font-size: 0.9rem;
        }
        .breadcrumb a { color: #666; }
        .breadcrumb span { color: #6a4cff; }
        .hero {
            padding: 60px 20px;
            text-align: center;
            background: linear-gradient(135deg, #f0edff 0%, #e6f2ff 100%);
            border-radius: 0 0 30px 30px;
            margin-bottom: 40px;
        }
        .hero h1 {
            font-size: 2.8rem;
            color: #2d2256;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        .hero p {
            font-size: 1.2rem;
            color: #555;
            max-width: 800px;
            margin: 0 auto 30px;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 20px;
        }
        .article-content {
            background: white;
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
        }
        .article-content h2 {
            color: #3a2a7e;
            margin: 35px 0 15px;
            padding-bottom: 10px;
            border-bottom: 2px solid #f0edff;
            font-size: 1.8rem;
        }
        .article-content h3 {
            color: #4d30cc;
            margin: 25px 0 12px;
            font-size: 1.4rem;
        }
        .article-content p {
            margin-bottom: 20px;
            text-align: justify;
            font-size: 1.05rem;
            color: #444;
        }
        .article-content b, strong { color: #3a2a7e; }
        .highlight-box {
            background: #f8f6ff;
            border-left: 5px solid #6a4cff;
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 10px 10px 0;
        }
        .featured-image {
            margin: 30px 0;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0,0,0,0.08);
        }
        .featured-image figcaption {
            padding: 10px;
            background: #f9f9f9;
            font-size: 0.9rem;
            color: #666;
            text-align: center;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .sidebar-widget {
            background: white;
            padding: 25px;
            border-radius: 15px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.04);
        }
        .sidebar-widget h3 {
            color: #3a2a7e;
            margin-bottom: 20px;
            font-size: 1.3rem;
        }
        .search-form {
            display: flex;
        }
        .search-form input {
            flex-grow: 1;
            padding: 12px 15px;
            border: 2px solid #ddd;
            border-radius: 50px 0 0 50px;
            outline: none;
        }
        .search-form button {
            background: #6a4cff;
            color: white;
            border: none;
            padding: 0 20px;
            border-radius: 0 50px 50px 0;
            cursor: pointer;
        }
        .rating-widget form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .stars {
            display: flex;
            gap: 5px;
            font-size: 1.5rem;
            color: #ffc107;
            cursor: pointer;
        }
        .stars i { transition: transform 0.2s; }
        .stars i:hover { transform: scale(1.2); }
        .comment-form textarea {
            width: 100%;
            padding: 15px;
            border: 2px solid #eee;
            border-radius: 10px;
            min-height: 120px;
            margin-bottom: 15px;
            resize: vertical;
            font-family: inherit;
        }
        .footer-links {
            background: #2d2256;
            padding: 40px 20px;
            margin-top: 60px;
        }
        .footer-links .container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 25px;
        }
        .web-link {
            background: rgba(255,255,255,0.05);
            padding: 15px;
            border-radius: 10px;
            transition: background 0.3s;
        }
        .web-link:hover { background: rgba(255,255,255,0.1); }
        .web-link a {
            color: #d1c6ff;
            display: block;
            font-weight: 500;
        }
        .site-footer {
            background: #1e163e;
            color: #b0a6d0;
            text-align: center;
            padding: 30px 20px;
            font-size: 0.95rem;
        }
        .site-footer a { color: #d1c6ff; }
        @media (max-width: 992px) {
            .main-content { grid-template-columns: 1fr; }
            .hero h1 { font-size: 2.2rem; }
        }
        @media (max-width: 768px) {
            .desktop-nav { display: none; }
            .mobile-menu-btn { display: block; }
            .header-container { padding: 12px 20px; }
            .hero { padding: 40px 20px; }
            .hero h1 { font-size: 1.8rem; }
            .hero p { font-size: 1rem; }
            .article-content { padding: 25px; }
            .article-content h2 { font-size: 1.5rem; }
        }
