:root {
            --primary-purple: #6a0dad;
            --dark-purple: #4b0082;
            --accent-pink: #ff69b4;
            --wonderland-green: #32cd32;
            --text-dark: #2a2a2a;
            --text-light: #f5f5f5;
            --bg-light: #fefcff;
            --shadow: 0 4px 12px rgba(106, 13, 173, 0.1);
            --transition: all 0.3s ease;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: var(--bg-light);
            color: var(--text-dark);
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: var(--primary-purple);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--accent-pink);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, var(--dark-purple), var(--primary-purple));
            color: var(--text-light);
            padding: 1.5rem 0;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 800;
            color: white;
            display: flex;
            align-items: center;
        }
        .logo i {
            color: var(--accent-pink);
            margin-right: 10px;
        }
        .logo a:hover {
            text-shadow: 0 0 10px rgba(255, 105, 180, 0.7);
        }
        .breadcrumb {
            background-color: #f0e6ff;
            padding: 12px 0;
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '>';
            margin: 0 10px;
            color: var(--primary-purple);
        }
        .nav-desktop {
            display: flex;
            gap: 2rem;
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
        }
        .nav-desktop a {
            color: white;
            font-weight: 600;
            padding: 5px 0;
            border-bottom: 2px solid transparent;
        }
        .nav-desktop a:hover, .nav-desktop a.active {
            border-bottom-color: var(--accent-pink);
        }
        .hamburger-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
        }
        @media (max-width: 768px) {
            .hamburger-btn {
                display: block;
            }
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background-color: var(--dark-purple);
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 1rem;
            box-shadow: var(--shadow);
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav a {
            color: white;
            padding: 12px 0;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            font-weight: 600;
        }
        main {
            padding: 3rem 0;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }
        @media (max-width: 992px) {
            main {
                grid-template-columns: 1fr;
            }
        }
        article {
            background: white;
            border-radius: 15px;
            padding: 2.5rem;
            box-shadow: var(--shadow);
        }
        h1 {
            color: var(--dark-purple);
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }
        h2 {
            color: var(--primary-purple);
            font-size: 2rem;
            margin: 2.5rem 0 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px dashed var(--wonderland-green);
        }
        h3 {
            color: var(--accent-pink);
            font-size: 1.5rem;
            margin: 1.8rem 0 1rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.25rem;
            color: #555;
            font-weight: 500;
            background: #f9f5ff;
            padding: 1.5rem;
            border-left: 5px solid var(--primary-purple);
            border-radius: 0 10px 10px 0;
            margin-bottom: 2.5rem;
        }
        .highlight {
            background: linear-gradient(120deg, #e0c3ff 0%, #e0c3ff 100%);
            padding: 2rem;
            border-radius: 10px;
            margin: 2rem 0;
            border-left: 5px solid var(--accent-pink);
        }
        .highlight h4 {
            color: var(--dark-purple);
            margin-bottom: 1rem;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 6px 15px rgba(0,0,0,0.1);
            margin: 1.5rem 0;
            display: block;
        }
        .img-caption {
            text-align: center;
            font-style: italic;
            color: #666;
            margin-top: -0.5rem;
            margin-bottom: 1.5rem;
        }
        aside {
            background: white;
            border-radius: 15px;
            padding: 1.8rem;
            box-shadow: var(--shadow);
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .widget {
            margin-bottom: 2.5rem;
        }
        .widget h3 {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            color: var(--dark-purple);
        }
        .search-form, .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        input, textarea, select {
            padding: 12px;
            border: 2px solid #ddd;
            border-radius: 8px;
            font-size: 1rem;
            transition: var(--transition);
        }
        input:focus, textarea:focus, select:focus {
            border-color: var(--primary-purple);
            outline: none;
        }
        button {
            background: linear-gradient(to right, var(--primary-purple), var(--dark-purple));
            color: white;
            border: none;
            padding: 14px;
            border-radius: 8px;
            font-weight: bold;
            cursor: pointer;
            transition: var(--transition);
        }
        button:hover {
            background: linear-gradient(to right, var(--accent-pink), var(--primary-purple));
            transform: translateY(-2px);
        }
        .stars {
            display: flex;
            gap: 10px;
            justify-content: center;
            margin: 10px 0;
        }
        .stars i {
            color: #ddd;
            cursor: pointer;
            font-size: 1.5rem;
            transition: var(--transition);
        }
        .stars i:hover, .stars i.active {
            color: gold;
        }
        .footer-links {
            background: #f5f0ff;
            padding: 3rem 0;
            margin-top: 3rem;
        }
        .web-link-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.5rem;
        }
        .web-link {
            background: white;
            padding: 1.2rem;
            border-radius: 8px;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        .web-link:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(106, 13, 173, 0.15);
        }
        .web-link a {
            color: var(--text-dark);
            display: block;
            font-weight: 600;
        }
        .web-link a:hover {
            color: var(--primary-purple);
        }
        footer {
            background: var(--dark-purple);
            color: var(--text-light);
            padding: 2.5rem 0;
            text-align: center;
        }
        .copyright {
            margin-top: 1.5rem;
            opacity: 0.8;
            font-size: 0.9rem;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .bold {
            font-weight: 800;
            color: var(--dark-purple);
        }
        .keyword-link {
            background: #f0e6ff;
            padding: 2px 6px;
            border-radius: 4px;
            font-weight: 600;
        }
        .keyword-link:hover {
            background: #e0c3ff;
        }
        .divider {
            height: 1px;
            background: linear-gradient(to right, transparent, var(--primary-purple), transparent);
            margin: 2.5rem 0;
        }
