        * {
            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.8;
            color: #333;
            background-color: #f9f7ff;
            max-width: 1920px;
            margin: 0 auto;
            padding: 0;
            overflow-x: hidden;
        }
        a {
            color: #7c5cd1;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        a:hover {
            color: #5a3f9c;
            text-decoration: underline;
        }
        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; }
        .mb-1 { margin-bottom: 1rem; }
        .mb-2 { margin-bottom: 2rem; }
        .mb-3 { margin-bottom: 3rem; }
        .mt-2 { margin-top: 2rem; }
        .mt-3 { margin-top: 3rem; }
        .p-2 { padding: 2rem; }
        .highlight {
            background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
            padding: 0.2em 0.5em;
            border-radius: 5px;
            font-weight: bold;
        }
        h1, h2, h3, h4 {
            font-family: 'Georgia', serif;
            color: #2a1b5f;
            line-height: 1.3;
            margin-top: 1.5em;
            margin-bottom: 0.7em;
        }
        h1 {
            font-size: clamp(2.5rem, 5vw, 3.8rem);
            border-bottom: 5px solid #7c5cd1;
            padding-bottom: 20px;
            margin-top: 0.5em;
        }
        h2 {
            font-size: clamp(1.8rem, 4vw, 2.5rem);
            border-left: 6px solid #a990e8;
            padding-left: 15px;
        }
        h3 {
            font-size: clamp(1.5rem, 3vw, 1.9rem);
            color: #5a3f9c;
        }
        h4 {
            font-size: 1.4rem;
            color: #7c5cd1;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .site-header {
            background: linear-gradient(135deg, #2a1b5f 0%, #5a3f9c 100%);
            color: white;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-family: 'Brush Script MT', cursive;
            font-size: 2.8rem;
            font-weight: bold;
            color: #ffcc00;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
        .my-logo a {
            color: inherit;
            text-decoration: none;
        }
        .my-logo a:hover {
            text-decoration: none;
            color: #fff;
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            color: #e0c3fc;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 0.5rem 1rem;
            border-radius: 30px;
        }
        .main-nav a:hover {
            background-color: rgba(255, 255, 255, 0.15);
            text-decoration: none;
            color: white;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
            padding: 0.5rem;
        }
        .breadcrumb {
            padding: 1rem 0;
            background-color: #f0ebfa;
            font-size: 0.95rem;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
        }
        .breadcrumb li:not(:last-child)::after {
            content: "›";
            margin: 0 10px;
            color: #7c5cd1;
        }
        .breadcrumb a {
            color: #5a3f9c;
        }
        .search-section {
            background: linear-gradient(to right, #8ec5fc, #e0c3fc);
            padding: 2rem 0;
            margin: 2rem 0;
            border-radius: 15px;
        }
        .search-form {
            max-width: 700px;
            margin: 0 auto;
            display: flex;
            gap: 10px;
        }
        .search-input {
            flex: 1;
            padding: 1rem 1.5rem;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .search-btn {
            background-color: #2a1b5f;
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 50px;
            cursor: pointer;
            font-weight: bold;
            transition: background 0.3s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-btn:hover {
            background-color: #5a3f9c;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            padding: 2rem 0;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background: white;
            padding: 3rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        }
        .article-meta {
            display: flex;
            justify-content: space-between;
            color: #666;
            font-size: 0.95rem;
            border-bottom: 1px dashed #ddd;
            padding-bottom: 1rem;
            margin-bottom: 2rem;
        }
        .featured-image {
            margin: 2.5rem 0;
            text-align: center;
        }
        .featured-image img {
            border-radius: 15px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
            border: 8px solid white;
            max-height: 500px;
            object-fit: cover;
            width: 100%;
        }
        .image-caption {
            font-style: italic;
            color: #666;
            margin-top: 10px;
            font-size: 0.95rem;
        }
        blockquote {
            border-left: 5px solid #a990e8;
            padding: 1.5rem 2rem;
            margin: 2.5rem 0;
            background-color: #f8f5ff;
            font-style: italic;
            border-radius: 0 10px 10px 0;
        }
        blockquote p {
            font-size: 1.2rem;
            color: #2a1b5f;
            margin-bottom: 0;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .sidebar-widget {
            background: white;
            padding: 1.8rem;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .sidebar-widget h3 {
            margin-top: 0;
            border-bottom: 3px solid #e0c3fc;
            padding-bottom: 10px;
            margin-bottom: 1.5rem;
        }
        .related-links ul {
            list-style: none;
        }
        .related-links li {
            margin-bottom: 1rem;
            padding-bottom: 1rem;
            border-bottom: 1px dotted #eee;
        }
        .related-links a {
            display: flex;
            align-items: center;
            gap: 10px;
            color: #333;
            font-weight: 500;
        }
        .related-links a:hover {
            color: #7c5cd1;
        }
        .user-interaction {
            margin-top: 4rem;
            background: #f8f5ff;
            padding: 2.5rem;
            border-radius: 20px;
            border: 2px solid #e0c3fc;
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        .star-rating {
            display: flex;
            gap: 5px;
            font-size: 2rem;
            color: #ffcc00;
            cursor: pointer;
        }
        .star-rating span:hover,
        .star-rating span:hover ~ span {
            color: #ff9900;
        }
        .form-group {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }
        .form-group label {
            font-weight: bold;
            color: #2a1b5f;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            padding: 1rem;
            border: 2px solid #ddd;
            border-radius: 10px;
            font-size: 1rem;
            transition: border 0.3s;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            border-color: #7c5cd1;
            outline: none;
        }
        .submit-btn {
            background: linear-gradient(to right, #7c5cd1, #5a3f9c);
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 50px;
            font-weight: bold;
            cursor: pointer;
            align-self: flex-start;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(122, 92, 209, 0.4);
        }
        .site-footer {
            background: #2a1b5f;
            color: #e0c3fc;
            padding: 3rem 0 1.5rem;
            margin-top: 4rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2.5rem;
            margin-bottom: 2.5rem;
        }
        .footer-logo {
            font-family: 'Brush Script MT', cursive;
            font-size: 2.5rem;
            color: #ffcc00;
            margin-bottom: 1rem;
        }
        .footer-nav h4,
        .friend-links h4 {
            color: white;
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
        }
        .footer-nav ul,
        friend-links {
            list-style: none;
        }
        .footer-nav li,
        friend-link {
            margin-bottom: 0.8rem;
        }
        .footer-nav a,
        friend-link a {
            color: #c5b4e3;
        }
        .footer-nav a:hover,
        friend-link a:hover {
            color: white;
            text-decoration: underline;
        }
        friend-link {
            display: block;
            padding: 0.5rem 0;
            border-bottom: 1px dotted rgba(255,255,255,0.1);
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 0.9rem;
            color: #a990e8;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .main-nav {
                position: fixed;
                top: 80px;
                left: 0;
                width: 100%;
                background-color: #2a1b5f;
                padding: 1rem;
                transform: translateY(-100%);
                opacity: 0;
                visibility: hidden;
                transition: all 0.3s ease;
                box-shadow: 0 10px 15px rgba(0,0,0,0.1);
                z-index: 999;
            }
            .main-nav.active {
                transform: translateY(0);
                opacity: 1;
                visibility: visible;
            }
            .main-nav ul {
                flex-direction: column;
                gap: 0;
            }
            .main-nav li {
                width: 100%;
            }
            .main-nav a {
                display: block;
                padding: 1rem;
                border-radius: 0;
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
            .header-container {
                padding: 0 15px;
            }
            .article-content {
                padding: 2rem 1.5rem;
            }
            .search-form {
                flex-direction: column;
            }
            .search-input,
            .search-btn {
                width: 100%;
                border-radius: 10px;
            }
        }
        @media print {
            .site-header, .sidebar, .search-section, .user-interaction, .site-footer {
                display: none;
            }
            body {
                background: white;
                color: black;
                font-size: 12pt;
            }
            .article-content {
                box-shadow: none;
                padding: 0;
            }
            a {
                color: black;
                text-decoration: underline;
            }
        }
