:root {
            --primary: #4a1d7a;
            --secondary: #ff6b8b;
            --accent: #00c9b7;
            --light: #f8f5ff;
            --dark: #2a0a4a;
            --text: #333;
            --text-light: #666;
            --shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            --transition: all 0.3s ease;
            --border-radius: 12px;
            --max-width: 1200px;
        }
        * {
            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: var(--text);
            background-color: var(--light);
            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: var(--max-width);
            margin: 0 auto;
            padding: 0 20px;
        }
        .btn {
            display: inline-block;
            background: linear-gradient(to right, var(--primary), var(--secondary));
            color: white;
            padding: 12px 28px;
            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 {
            padding: 80px 0;
        }
        h1, h2, h3, h4 {
            color: var(--dark);
            line-height: 1.3;
            margin-bottom: 1.2rem;
            font-weight: 700;
        }
        h1 {
            font-size: 3.2rem;
        }
        h2 {
            font-size: 2.5rem;
            position: relative;
            padding-bottom: 15px;
        }
        h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background: var(--accent);
            border-radius: 2px;
        }
        h3 {
            font-size: 1.8rem;
            color: var(--primary);
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }
        .highlight {
            background-color: rgba(74, 29, 122, 0.08);
            border-left: 4px solid var(--primary);
            padding: 20px;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
            margin: 2rem 0;
        }
        .emoji {
            font-size: 1.3em;
            margin-right: 5px;
        }
        header {
            background-color: white;
            box-shadow: 0 2px 10px 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: 2.2rem;
            font-weight: 800;
            background: linear-gradient(to right, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: -0.5px;
        }
        .logo span {
            color: var(--accent);
        }
        .desktop-nav ul {
            display: flex;
            gap: 30px;
        }
        .desktop-nav a {
            font-weight: 600;
            font-size: 1.05rem;
            padding: 8px 0;
            position: relative;
        }
        .desktop-nav a:hover {
            color: var(--secondary);
        }
        .desktop-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--secondary);
            transition: var(--transition);
        }
        .desktop-nav a:hover::after {
            width: 100%;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.8rem;
            color: var(--primary);
            cursor: pointer;
        }
        .mobile-nav {
            position: fixed;
            top: 70px;
            left: 0;
            width: 100%;
            background: white;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
            padding: 20px;
            transform: translateY(-150%);
            transition: transform 0.5s ease;
            z-index: 999;
        }
        .mobile-nav.active {
            transform: translateY(0);
        }
        .mobile-nav ul {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        .mobile-nav a {
            font-weight: 600;
            font-size: 1.2rem;
            display: block;
            padding: 10px 0;
            border-bottom: 1px solid #eee;
        }
        .breadcrumb {
            background-color: #f0e9ff;
            padding: 15px 0;
            font-size: 0.95rem;
        }
        .breadcrumb .container {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }
        .breadcrumb a {
            color: var(--primary);
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb i {
            margin: 0 5px;
            color: var(--text-light);
        }
        .hero {
            background: linear-gradient(135deg, rgba(74, 29, 122, 0.9) 0%, rgba(42, 10, 74, 0.95) 100%), url('https://images.unsplash.com/photo-1535223289827-42f1e9919769?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
            color: white;
            text-align: center;
            padding: 100px 20px;
            border-radius: 0 0 40px 40px;
            margin-bottom: 40px;
        }
        .hero h1 {
            color: white;
            font-size: 3.5rem;
            margin-bottom: 20px;
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 30px;
            opacity: 0.9;
        }
        .search-section {
            background: white;
            border-radius: var(--border-radius);
            padding: 40px;
            box-shadow: var(--shadow);
            max-width: 900px;
            margin: -60px auto 40px;
            position: relative;
            z-index: 10;
        }
        .search-section h3 {
            text-align: center;
            margin-bottom: 25px;
        }
        .search-form {
            display: flex;
            max-width: 600px;
            margin: 0 auto;
        }
        .search-input {
            flex: 1;
            padding: 18px 25px;
            border: 2px solid #e0d6ff;
            border-radius: 50px 0 0 50px;
            font-size: 1.1rem;
            outline: none;
        }
        .search-input:focus {
            border-color: var(--accent);
        }
        .search-btn {
            background: linear-gradient(to right, var(--accent), #00a396);
            color: white;
            border: none;
            padding: 0 35px;
            border-radius: 0 50px 50px 0;
            cursor: pointer;
            font-weight: 600;
            font-size: 1.1rem;
            transition: var(--transition);
        }
        .search-btn:hover {
            background: linear-gradient(to right, #00a396, var(--accent));
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 50px;
        }
        article {
            background: white;
            border-radius: var(--border-radius);
            padding: 50px;
            box-shadow: var(--shadow);
        }
        .article-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 1px solid #eee;
            font-size: 0.95rem;
            color: var(--text-light);
        }
        .author {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .author img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            object-fit: cover;
        }
        .featured-image {
            margin: 30px 0;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        .featured-image figcaption {
            text-align: center;
            font-style: italic;
            padding: 10px;
            color: var(--text-light);
            font-size: 0.95rem;
        }
        .content-section {
            margin-bottom: 50px;
        }
        .content-section p {
            font-size: 1.15rem;
            line-height: 1.9;
        }
        .content-section b, .content-section strong {
            color: var(--primary);
        }
        .content-section ul, .content-section ol {
            margin-left: 25px;
            margin-bottom: 1.5rem;
        }
        .content-section li {
            margin-bottom: 0.8rem;
            font-size: 1.1rem;
        }
        .internal-links-box {
            background: #f9f7ff;
            border: 2px dashed var(--accent);
            border-radius: var(--border-radius);
            padding: 25px;
            margin: 40px 0;
        }
        .internal-links-box h4 {
            color: var(--primary);
            margin-bottom: 15px;
        }
        .internal-links-box a {
            color: var(--secondary);
            font-weight: 600;
        }
        .internal-links-box a:hover {
            text-decoration: underline;
        }
        aside {
            position: sticky;
            top: 100px;
            height: fit-content;
        }
        .sidebar-widget {
            background: white;
            border-radius: var(--border-radius);
            padding: 30px;
            margin-bottom: 30px;
            box-shadow: var(--shadow);
        }
        .sidebar-widget h3 {
            font-size: 1.5rem;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #f0e9ff;
        }
        .popular-links li {
            margin-bottom: 15px;
            padding-bottom: 15px;
            border-bottom: 1px solid #f5f5f5;
        }
        .popular-links a {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 600;
        }
        .popular-links a:hover {
            color: var(--secondary);
        }
        .popular-links i {
            color: var(--accent);
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            font-size: 2.5rem;
            color: #ffc107;
            margin: 15px 0;
            letter-spacing: 5px;
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        .rating-form select, .comment-form input, .comment-form textarea {
            padding: 15px;
            border: 1px solid #ddd;
            border-radius: var(--border-radius);
            font-family: inherit;
            font-size: 1rem;
        }
        .comment-form textarea {
            min-height: 150px;
            resize: vertical;
        }
        .user-comments {
            margin-top: 40px;
        }
        .comment {
            background: #f9f9f9;
            border-radius: var(--border-radius);
            padding: 20px;
            margin-bottom: 20px;
        }
        .comment-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 10px;
            font-size: 0.9rem;
            color: var(--text-light);
        }
        .comment-author {
            font-weight: bold;
            color: var(--primary);
        }
        .footer-links-section {
            background: var(--dark);
            color: white;
            padding: 60px 0;
        }
        .footer-links-section .container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        .web-link {
            background: rgba(255,255,255,0.05);
            padding: 25px;
            border-radius: var(--border-radius);
            transition: var(--transition);
        }
        .web-link:hover {
            background: rgba(255,255,255,0.1);
            transform: translateY(-5px);
        }
        .web-link a {
            font-size: 1.1rem;
            font-weight: 600;
            color: #fff;
            display: block;
            margin-bottom: 10px;
        }
        .web-link a:hover {
            color: var(--accent);
        }
        .web-link p {
            color: #ccc;
            font-size: 0.95rem;
        }
        footer {
            background: #1a052e;
            color: #aaa;
            text-align: center;
            padding: 40px 20px;
        }
        .footer-container {
            max-width: var(--max-width);
            margin: 0 auto;
        }
        .copyright {
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 0.9rem;
        }
        @media (max-width: 1024px) {
            h1 { font-size: 2.8rem; }
            h2 { font-size: 2.2rem; }
            .content-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            aside {
                position: static;
            }
        }
        @media (max-width: 768px) {
            .header-container { padding: 15px; }
            .desktop-nav { display: none; }
            .mobile-menu-btn { display: block; }
            h1 { font-size: 2.3rem; }
            h2 { font-size: 1.9rem; }
            .hero { padding: 80px 20px; }
            .search-form { flex-direction: column; }
            .search-input, .search-btn {
                border-radius: 50px;
                width: 100%;
                margin-bottom: 10px;
            }
            article { padding: 30px; }
            .article-meta { flex-direction: column; align-items: flex-start; gap: 15px; }
            .footer-links-section .container { grid-template-columns: 1fr; }
        }
        @media (max-width: 480px) {
            h1 { font-size: 2rem; }
            h2 { font-size: 1.7rem; }
            section { padding: 50px 0; }
            .sidebar-widget { padding: 20px; }
        }
