        * {
            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: #f9f7fe;
            background-image: linear-gradient(to bottom right, #f0ecff, #fff8fd);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #7b68ee 0%, #ba55d3 100%);
            color: white;
            padding: 1.2rem 0;
            box-shadow: 0 4px 12px rgba(123, 104, 238, 0.3);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 900;
            text-decoration: none;
            color: white;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
            transition: transform 0.3s ease, text-shadow 0.3s ease;
            font-family: 'Comic Sans MS', cursive, sans-serif;
        }
        .my-logo:hover {
            transform: scale(1.05);
            text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
        }
        .my-logo i {
            margin-right: 10px;
            color: #ffeb3b;
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        nav a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 30px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        nav a:hover, nav a.active {
            background-color: rgba(255, 255, 255, 0.2);
            box-shadow: inset 0 0 0 2px white;
        }
        nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: #ffeb3b;
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        nav a:hover::after {
            width: 80%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: white;
            background: none;
            border: none;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            nav ul {
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: linear-gradient(135deg, #7b68ee 0%, #ba55d3 100%);
                padding: 1rem 0;
                clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
                transition: clip-path 0.5s ease-in-out;
                box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            }
            nav ul.open {
                clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            }
            nav ul li {
                text-align: center;
                margin: 0.5rem 0;
            }
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.9rem;
            color: #666;
            background-color: #f1efff;
            margin-bottom: 2rem;
            border-radius: 0 0 10px 10px;
        }
        .breadcrumb a {
            color: #7b68ee;
            text-decoration: none;
            transition: color 0.2s;
        }
        .breadcrumb a:hover {
            color: #ba55d3;
            text-decoration: underline;
        }
        .breadcrumb i {
            margin: 0 8px;
            color: #aaa;
        }
        main {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            margin: 2rem 0;
        }
        @media (max-width: 992px) {
            main {
                grid-template-columns: 1fr;
            }
        }
        article {
            background: white;
            padding: 2.5rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(123, 104, 238, 0.1);
            border: 1px solid #e9e1ff;
        }
        h1 {
            color: #5d4ac9;
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            border-bottom: 3px solid #ffcc00;
            padding-bottom: 0.5rem;
        }
        h2 {
            color: #7b68ee;
            margin: 2.5rem 0 1.2rem;
            font-size: 2rem;
            padding-left: 15px;
            border-left: 5px solid #ba55d3;
        }
        h3 {
            color: #9b6bd4;
            margin: 2rem 0 1rem;
            font-size: 1.6rem;
        }
        h4 {
            color: #c17ce0;
            margin: 1.5rem 0 0.8rem;
            font-size: 1.3rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
            font-size: 1.1rem;
        }
        .highlight {
            background: linear-gradient(120deg, #e0c3ff 0%, #fff0d4 100%);
            padding: 1.5rem;
            border-radius: 15px;
            margin: 2rem 0;
            border-left: 5px solid #7b68ee;
            font-weight: 600;
            color: #333;
        }
        .inline-link {
            color: #7b68ee;
            text-decoration: none;
            font-weight: 600;
            border-bottom: 2px dashed #ba55d3;
            transition: all 0.2s;
        }
        .inline-link:hover {
            color: #ba55d3;
            border-bottom-style: solid;
            background-color: #f9f5ff;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .stats-box {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }
        .stat {
            background: #7b68ee;
            color: white;
            padding: 1.5rem;
            border-radius: 12px;
            text-align: center;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .stat:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(123, 104, 238, 0.4);
        }
        .stat h4 {
            color: white;
            margin-top: 0;
            font-size: 1.8rem;
            margin-bottom: 0.5rem;
        }
        .image-container {
            margin: 2.5rem 0;
            text-align: center;
        }
        .feature-img {
            max-width: 100%;
            height: auto;
            border-radius: 15px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
            border: 5px solid white;
            transition: transform 0.5s ease, box-shadow 0.5s ease;
        }
        .feature-img:hover {
            transform: scale(1.02);
            box-shadow: 0 15px 35px rgba(0,0,0,0.25);
        }
        .img-caption {
            font-style: italic;
            color: #666;
            margin-top: 0.8rem;
            font-size: 0.95rem;
        }
        .last-updated {
            background: #f1efff;
            padding: 1rem;
            border-radius: 10px;
            margin-top: 3rem;
            text-align: center;
            font-weight: bold;
            color: #7b68ee;
        }
        aside {
            background: white;
            padding: 2rem;
            border-radius: 20px;
            box-shadow: 0 8px 25px rgba(123, 104, 238, 0.1);
            align-self: start;
            border: 1px solid #e9e1ff;
        }
        .sidebar-widget {
            margin-bottom: 2.5rem;
        }
        .sidebar-widget h3 {
            color: #7b68ee;
            margin-bottom: 1.2rem;
            font-size: 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #ffcc00;
        }
        .search-box {
            display: flex;
            margin-bottom: 1.5rem;
        }
        .search-box input {
            flex: 1;
            padding: 0.9rem;
            border: 2px solid #7b68ee;
            border-radius: 30px 0 0 30px;
            font-size: 1rem;
            outline: none;
        }
        .search-box button {
            background: linear-gradient(to right, #7b68ee, #ba55d3);
            color: white;
            border: none;
            padding: 0 1.5rem;
            border-radius: 0 30px 30px 0;
            cursor: pointer;
            font-size: 1.2rem;
            transition: all 0.3s;
        }
        .search-box button:hover {
            background: linear-gradient(to right, #6a5acd, #a64ac9);
        }
        .rating-widget, .comment-widget {
            background: #f9f7fe;
            padding: 1.5rem;
            border-radius: 15px;
            border: 1px solid #e0d6ff;
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin: 1rem 0;
            font-size: 1.8rem;
            color: #ffcc00;
        }
        .stars i {
            cursor: pointer;
            transition: transform 0.2s;
        }
        .stars i:hover {
            transform: scale(1.2);
        }
        .rating-form input, .comment-form textarea {
            width: 100%;
            padding: 0.8rem;
            margin-bottom: 1rem;
            border: 1px solid #ccc;
            border-radius: 8px;
            font-family: inherit;
        }
        .rating-form button, .comment-form button {
            width: 100%;
            padding: 0.9rem;
            background: linear-gradient(to right, #7b68ee, #ba55d3);
            color: white;
            border: none;
            border-radius: 30px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
        }
        .rating-form button:hover, .comment-form button:hover {
            background: linear-gradient(to right, #6a5acd, #a64ac9);
            box-shadow: 0 5px 15px rgba(123, 104, 238, 0.4);
        }
        footer {
            background: linear-gradient(135deg, #2d1b69 0%, #4a2a7a 100%);
            color: white;
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2.5rem;
            margin-bottom: 2rem;
        }
        .footer-section h3 {
            color: #ffcc00;
            margin-bottom: 1.5rem;
            font-size: 1.5rem;
        }
        .footer-links a {
            color: #d0c6ff;
            text-decoration: none;
            display: block;
            margin-bottom: 0.8rem;
            transition: color 0.3s, padding-left 0.3s;
        }
        .footer-links a:hover {
            color: white;
            padding-left: 8px;
        }
        .friend-links {
            background: rgba(255, 255, 255, 0.05);
            padding: 1.5rem;
            border-radius: 10px;
            margin-top: 1rem;
        }
        .friend-links a {
            color: #ffcc00;
            font-weight: bold;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            color: #b8a9ff;
        }
        @media (max-width: 768px) {
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.7rem; }
            article, aside { padding: 1.8rem; }
            .header-content { flex-wrap: wrap; }
        }
