        * { 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: linear-gradient(135deg, #f9f7fe 0%, #f0edfd 100%);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a { color: #4a2c8a; text-decoration: none; transition: all 0.3s ease; }
        a:hover { color: #ff6b8b; }
        img { max-width: 100%; height: auto; display: block; }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .text-center { text-align: center; }
        .bold { font-weight: 700; }
        .highlight { background-color: #fffacd; padding: 0 5px; border-radius: 3px; }
        .emoji { font-size: 1.2em; }
        .site-header {
            background: #ffffff;
            box-shadow: 0 4px 12px rgba(106, 70, 189, 0.08);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 900;
            background: linear-gradient(90deg, #4a2c8a, #ff6b8b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: -1px;
        }
        .logo span { color: #4a2c8a; }
        .nav-desktop { display: flex; gap: 30px; }
        .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: #ff6b8b;
            transition: width 0.3s;
        }
        .nav-desktop a:hover::after { width: 100%; }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: #4a2c8a;
            cursor: pointer;
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background: white;
            padding: 20px;
            box-shadow: inset 0 5px 10px rgba(0,0,0,0.05);
        }
        .nav-mobile.active { display: flex; }
        .nav-mobile a {
            padding: 15px 0;
            border-bottom: 1px solid #eee;
            font-weight: 600;
        }
        .nav-mobile a:last-child { border-bottom: none; }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.9rem;
            color: #666;
            background: #f8f9ff;
        }
        .breadcrumb a:hover { text-decoration: underline; }
        .search-bar {
            background: #4a2c8a;
            padding: 25px 0;
            margin-bottom: 30px;
        }
        .search-form {
            max-width: 600px;
            margin: 0 auto;
            display: flex;
            border-radius: 50px;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(74, 44, 138, 0.3);
        }
        .search-input {
            flex-grow: 1;
            padding: 18px 25px;
            border: none;
            font-size: 1.1rem;
        }
        .search-button {
            background: #ff6b8b;
            color: white;
            border: none;
            padding: 0 30px;
            cursor: pointer;
            font-size: 1.2rem;
        }
        .search-button:hover { background: #ff5577; }
        main { flex-grow: 1; padding: 20px 0 40px; }
        .article-header { margin-bottom: 40px; }
        .article-header h1 {
            font-size: 2.8rem;
            color: #2d1b4e;
            line-height: 1.2;
            margin-bottom: 15px;
        }
        .meta { color: #777; font-style: italic; margin-bottom: 20px; }
        .featured-img {
            width: 80%;
            margin: 30px auto;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }
        .article-content {
            background: white;
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        }
        .article-content h2 {
            color: #4a2c8a;
            margin: 35px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px dashed #e6e0ff;
        }
        .article-content h3 {
            color: #6a45bd;
            margin: 25px 0 15px;
        }
        .article-content p {
            margin-bottom: 1.5em;
            font-size: 1.1rem;
            text-align: justify;
        }
        .article-content ul, .article-content ol {
            margin-bottom: 1.5em;
            padding-left: 2em;
        }
        .article-content blockquote {
            border-left: 5px solid #ff6b8b;
            padding-left: 25px;
            margin: 2em 0;
            font-style: italic;
            color: #555;
            background: #fdf6f8;
            padding: 20px;
            border-radius: 0 10px 10px 0;
        }
        .stats-box {
            background: linear-gradient(135deg, #f0edfd, #e3dffc);
            border-left: 5px solid #4a2c8a;
            padding: 25px;
            margin: 2em 0;
            border-radius: 0 10px 10px 0;
        }
        .interactive-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            margin-top: 50px;
        }
        @media (max-width: 768px) {
            .interactive-section { grid-template-columns: 1fr; }
        }
        .comment-form, .rating-form {
            background: #f9f7ff;
            padding: 30px;
            border-radius: 15px;
            border: 1px solid #e6e0ff;
        }
        .form-title { color: #4a2c8a; margin-bottom: 25px; }
        .form-group { margin-bottom: 20px; }
        label { display: block; margin-bottom: 8px; font-weight: 600; color: #555; }
        input, textarea, select {
            width: 100%;
            padding: 15px;
            border: 1px solid #ccc;
            border-radius: 8px;
            font-family: inherit;
            font-size: 1rem;
            transition: border 0.3s;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: #4a2c8a;
            box-shadow: 0 0 0 3px rgba(74, 44, 138, 0.2);
        }
        textarea { min-height: 150px; resize: vertical; }
        .submit-btn {
            background: linear-gradient(90deg, #4a2c8a, #6a45bd);
            color: white;
            border: none;
            padding: 16px 35px;
            border-radius: 50px;
            cursor: pointer;
            font-weight: 700;
            font-size: 1.1rem;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(106, 70, 189, 0.4);
        }
        .star-rating {
            direction: rtl;
            display: inline-block;
            font-size: 2rem;
        }
        .star-rating input { display: none; }
        .star-rating label {
            color: #ddd;
            cursor: pointer;
            padding: 0 5px;
        }
        .star-rating input:checked ~ label,
        .star-rating label:hover,
        .star-rating label:hover ~ label { color: #ffc107; }
        .long-tail-links {
            background: #2d1b4e;
            padding: 40px 0;
            margin-top: 60px;
        }
        .web-link {
            display: inline-block;
            background: rgba(255,255,255,0.1);
            color: #e6e0ff;
            padding: 12px 25px;
            margin: 10px;
            border-radius: 50px;
            border: 1px solid rgba(255,255,255,0.2);
            transition: all 0.3s;
        }
        .web-link:hover {
            background: #ff6b8b;
            color: white;
            transform: scale(1.05);
        }
        .site-footer {
            background: #1a0f2e;
            color: #b8a9e6;
            padding: 50px 0 20px;
            text-align: center;
        }
        .footer-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 25px;
            margin-bottom: 30px;
        }
        .footer-links a { color: #d0c4f5; }
        .footer-links a:hover { color: #ff6b8b; }
        .copyright {
            padding-top: 25px;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 0.9rem;
            color: #8a7bb3;
        }
        @media (max-width: 992px) {
            .article-header h1 { font-size: 2.3rem; }
            .article-content { padding: 30px; }
        }
        @media (max-width: 768px) {
            .hamburger { display: block; }
            .nav-desktop { display: none; }
            .article-header h1 { font-size: 2rem; }
            .featured-img { width: 100%; }
            .article-content { padding: 25px 20px; }
            .interactive-section { gap: 30px; }
        }
        @media (max-width: 480px) {
            .logo a { font-size: 1.8rem; }
            .search-form { flex-direction: column; border-radius: 15px; }
            .search-input, .search-button { border-radius: 0; width: 100%; }
            .article-header h1 { font-size: 1.7rem; }
        }
