        * {
            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: #f5f7fa;
            max-width: 100vw;
            overflow-x: hidden;
        }
        a {
            color: #6c5ce7;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #a29bfe;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        h1, h2, h3, h4 {
            font-family: 'Arial Rounded MT Bold', 'Arial', sans-serif;
            color: #2d3436;
            margin-bottom: 1rem;
            line-height: 1.3;
        }
        h1 {
            font-size: clamp(2.5rem, 5vw, 3.5rem);
            color: #6c5ce7;
            border-bottom: 3px solid #a29bfe;
            padding-bottom: 0.5rem;
        }
        h2 {
            font-size: clamp(1.8rem, 4vw, 2.5rem);
            margin-top: 2.5rem;
            color: #0984e3;
        }
        h3 {
            font-size: clamp(1.5rem, 3vw, 1.9rem);
            margin-top: 2rem;
            color: #00b894;
        }
        h4 {
            font-size: 1.3rem;
            margin-top: 1.5rem;
            color: #e17055;
        }
        p {
            margin-bottom: 1.2rem;
            font-size: 1.05rem;
        }
        strong {
            color: #2d3436;
            font-weight: 700;
        }
        .lead {
            font-size: 1.2rem;
            color: #636e72;
            font-weight: 500;
        }
        .last-updated {
            font-style: italic;
            color: #888;
            background: #eee;
            padding: 5px 10px;
            border-radius: 5px;
            display: inline-block;
            margin-bottom: 2rem;
        }
        header {
            background: linear-gradient(135deg, #2d3436 0%, #6c5ce7 100%);
            color: white;
            padding: 1rem 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-family: 'Comic Sans MS', cursive, sans-serif;
            font-size: 1.8rem;
            font-weight: bold;
            color: #fd79a8;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .my-logo:hover {
            color: #ffafcc;
            text-decoration: none;
        }
        .my-logo i {
            font-size: 2rem;
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .nav-links a {
            color: white;
            font-weight: 600;
            padding: 0.5rem 0;
            border-bottom: 2px solid transparent;
        }
        .nav-links a:hover {
            color: #fd79a8;
            border-bottom-color: #fd79a8;
            text-decoration: none;
        }
        .burger {
            display: none;
            cursor: pointer;
            font-size: 1.8rem;
            color: white;
        }
        .breadcrumb {
            padding: 1rem 0;
            background-color: #dfe6e9;
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        .breadcrumb li:not(:last-child)::after {
            content: ">";
            margin-left: 0.5rem;
            color: #636e72;
        }
        main {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            padding: 2rem 0;
        }
        @media (max-width: 992px) {
            main {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background: white;
            padding: 2.5rem;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(108, 92, 231, 0.08);
        }
        .sidebar {
            background: white;
            padding: 1.5rem;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(108, 92, 231, 0.08);
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .interactive-module {
            background: #f8f9fa;
            border-left: 5px solid #6c5ce7;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 10px 10px 0;
        }
        .module-title {
            display: flex;
            align-items: center;
            gap: 10px;
            color: #2d3436;
            margin-bottom: 1rem;
        }
        form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        input, textarea, select {
            padding: 0.8rem;
            border: 1px solid #b2bec3;
            border-radius: 8px;
            font-family: inherit;
            font-size: 1rem;
            transition: border 0.3s;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: #6c5ce7;
            box-shadow: 0 0 0 3px rgba(108, 92, 231, 0.2);
        }
        button {
            background: linear-gradient(to right, #6c5ce7, #a29bfe);
            color: white;
            border: none;
            padding: 0.9rem 1.5rem;
            border-radius: 8px;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        button:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 14px rgba(108, 92, 231, 0.3);
            text-decoration: none;
        }
        .star-rating {
            display: flex;
            gap: 5px;
            font-size: 1.8rem;
            color: #ffd700;
            margin: 0.5rem 0;
            cursor: pointer;
        }
        .star-rating .star:hover {
            transform: scale(1.2);
        }
        .article-image {
            margin: 2rem 0;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
            transition: transform 0.5s ease;
        }
        .article-image:hover {
            transform: scale(1.02);
        }
        .img-caption {
            text-align: center;
            font-style: italic;
            color: #636e72;
            padding: 0.5rem;
            background: #f8f9fa;
        }
        .content-link {
            background-color: #e3f2fd;
            padding: 2px 6px;
            border-radius: 4px;
            font-weight: 600;
        }
        .content-link:hover {
            background-color: #bbdefb;
        }
        footer {
            background: #2d3436;
            color: #dfe6e9;
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
        }
        .footer-container {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .friend-links {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            justify-content: center;
            margin-bottom: 1.5rem;
        }
        friend-link a {
            color: #a29bfe;
            font-weight: bold;
            padding: 0.5rem 1rem;
            border: 1px solid #555;
            border-radius: 20px;
            transition: all 0.3s;
        }
        friend-link a:hover {
            background-color: #6c5ce7;
            color: white;
            text-decoration: none;
            border-color: #6c5ce7;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #555;
            color: #b2bec3;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .header-container {
                flex-wrap: wrap;
            }
            .burger {
                display: block;
                order: 1;
            }
            .my-logo {
                order: 0;
            }
            nav {
                order: 2;
                flex-basis: 100%;
                margin-top: 1rem;
                display: none;
            }
            .nav-active {
                display: block;
            }
            .nav-links {
                flex-direction: column;
                gap: 1rem;
                align-items: center;
            }
            .article-content, .sidebar {
                padding: 1.5rem;
            }
            .friend-links {
                flex-direction: column;
                align-items: center;
            }
        }
