        * { 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: #f9f7f8;
            background-image: linear-gradient(to bottom right, #f0e6f5, #e3f2fd);
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        a { color: #8a4baf; text-decoration: none; transition: color 0.3s ease; }
        a:hover { color: #6a1b9a; text-decoration: underline; }
        img { max-width: 100%; height: auto; display: block; }
        ul, ol { padding-left: 2em; margin: 1em 0; }
        .site-header {
            background: linear-gradient(135deg, #6a1b9a 0%, #283593 100%);
            color: white;
            padding: 1.5rem 0;
            border-radius: 0 0 15px 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            margin-bottom: 2rem;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .my-logo {
            font-family: 'Comic Sans MS', cursive, sans-serif;
            font-size: 2.5rem;
            font-weight: bold;
            background: linear-gradient(to right, #ffcc80, #ffab91);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
            padding: 0 1rem;
        }
        .my-logo:hover { transform: scale(1.03); }
        .main-nav { display: flex; align-items: center; }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 1.8rem;
        }
        .nav-links a {
            color: #e1bee7;
            font-weight: 600;
            padding: 0.5rem 0.8rem;
            border-radius: 5px;
        }
        .nav-links a:hover {
            background-color: rgba(255, 255, 255, 0.15);
            color: white;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
            padding: 0.5rem;
        }
        .breadcrumb {
            padding: 1rem;
            background-color: #ede7f6;
            border-radius: 8px;
            margin: 1rem 0;
            font-size: 0.9rem;
        }
        .breadcrumb a { color: #5e35b1; }
        .breadcrumb span { color: #7e57c2; }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            margin-bottom: 3rem;
        }
        @media (max-width: 768px) {
            .content-wrapper { grid-template-columns: 1fr; }
        }
        main {
            background: white;
            padding: 2.5rem;
            border-radius: 15px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
        }
        h1 {
            font-size: 2.8rem;
            color: #4527a0;
            margin-bottom: 1rem;
            border-bottom: 4px solid #d1c4e9;
            padding-bottom: 0.5rem;
        }
        h2 {
            font-size: 2rem;
            color: #5e35b1;
            margin: 2.5rem 0 1rem;
            padding-left: 0.5rem;
            border-left: 5px solid #ab47bc;
        }
        h3 {
            font-size: 1.6rem;
            color: #7b1fa2;
            margin: 2rem 0 1rem;
        }
        h4 {
            font-size: 1.3rem;
            color: #8e24aa;
            margin: 1.5rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
            font-size: 1.1rem;
        }
        .lead {
            font-size: 1.3rem;
            color: #555;
            font-weight: 500;
            background-color: #f3e5f5;
            padding: 1.5rem;
            border-radius: 10px;
            border-left: 5px solid #8a4baf;
        }
        .highlight {
            background-color: #fff9c4;
            padding: 0.3rem 0.6rem;
            border-radius: 4px;
            font-weight: bold;
        }
        .emoji { font-size: 1.2em; margin-right: 0.3em; }
        .last-updated {
            font-style: italic;
            color: #777;
            text-align: right;
            font-size: 0.95rem;
            margin-top: 3rem;
            padding-top: 1rem;
            border-top: 1px dashed #ccc;
        }
        .article-image {
            margin: 2rem auto;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            max-width: 800px;
        }
        .article-image img { width: 100%; transition: transform 0.5s ease; }
        .article-image img:hover { transform: scale(1.02); }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: #666;
            padding: 0.8rem;
            background-color: #f5f5f5;
        }
        aside {
            background: white;
            padding: 1.8rem;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .sidebar-widget {
            margin-bottom: 2.5rem;
        }
        .sidebar-widget h3 {
            font-size: 1.4rem;
            color: #4527a0;
            margin-bottom: 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #e1bee7;
        }
        .search-form { display: flex; }
        .search-form input[type="search"] {
            flex-grow: 1;
            padding: 0.8rem;
            border: 2px solid #d1c4e9;
            border-radius: 8px 0 0 8px;
            font-size: 1rem;
        }
        .search-form button {
            background-color: #7e57c2;
            color: white;
            border: none;
            padding: 0 1.5rem;
            border-radius: 0 8px 8px 0;
            cursor: pointer;
            font-size: 1.2rem;
            transition: background-color 0.3s;
        }
        .search-form button:hover { background-color: #5e35b1; }
        .rating-widget, .comment-widget { background-color: #f9f9f9; padding: 1.5rem; border-radius: 10px; }
        .stars {
            display: flex;
            gap: 0.5rem;
            margin: 1rem 0;
            font-size: 1.8rem;
            color: #ffcc00;
            cursor: pointer;
        }
        .stars span:hover { transform: scale(1.2); }
        .comment-form textarea, .comment-form input {
            width: 100%;
            padding: 0.8rem;
            margin-bottom: 1rem;
            border: 1px solid #ccc;
            border-radius: 8px;
            font-family: inherit;
        }
        .comment-form button {
            background-color: #388e3c;
            color: white;
            padding: 0.8rem 1.5rem;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            font-weight: bold;
            width: 100%;
        }
        .comment-form button:hover { background-color: #2e7d32; }
        .site-footer {
            background: linear-gradient(to right, #311b92, #4a148c);
            color: #e1bee7;
            padding: 3rem 0 1.5rem;
            border-radius: 15px 15px 0 0;
            margin-top: 4rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-section h4 {
            color: #ffcc80;
            margin-bottom: 1.5rem;
        }
        .footer-links { list-style: none; }
        .footer-links li { margin-bottom: 0.8rem; }
        friend-link {
            display: block;
            background: rgba(255,255,255,0.05);
            padding: 1rem;
            border-radius: 8px;
            margin: 0.5rem 0;
            border-left: 3px solid #ab47bc;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #5c35b1;
            font-size: 0.9rem;
            color: #b39ddb;
        }
        @media (max-width: 992px) {
            h1 { font-size: 2.4rem; }
            .nav-links { gap: 1rem; }
        }
        @media (max-width: 768px) {
            .hamburger { display: block; }
            .nav-links {
                display: none;
                flex-direction: column;
                width: 100%;
                background-color: #4527a0;
                position: absolute;
                top: 100%;
                left: 0;
                padding: 1rem;
                border-radius: 0 0 15px 15px;
                box-shadow: 0 10px 15px rgba(0,0,0,0.2);
            }
            .nav-links.active { display: flex; }
            .header-container { flex-direction: column; align-items: flex-start; }
            .main-nav { width: 100%; justify-content: space-between; margin-top: 1rem; }
            main, aside { padding: 1.5rem; }
        }
        @media (max-width: 480px) {
            h1 { font-size: 2rem; }
            h2 { font-size: 1.7rem; }
            .lead { font-size: 1.1rem; }
        }
