        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background: linear-gradient(135deg, #f9f7fe 0%, #f0edff 100%);
            color: #333;
            line-height: 1.7;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            text-decoration: none;
            color: #7b68ee;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #5a4fcf;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 10px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: #fff;
            box-shadow: 0 4px 12px rgba(123, 104, 238, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .logo a {
            font-size: 2rem;
            font-weight: 800;
            background: linear-gradient(90deg, #7b68ee, #5a4fcf);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo i {
            font-size: 2.2rem;
            color: #7b68ee;
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .nav-links a {
            font-weight: 600;
            font-size: 1.05rem;
            padding: 8px 5px;
            position: relative;
        }
        .nav-links a:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: #7b68ee;
            transition: width 0.3s ease;
        }
        .nav-links a:hover:after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #7b68ee;
        }
        .breadcrumb {
            background: #f0edff;
            padding: 12px 0;
            font-size: 0.9rem;
            margin-bottom: 30px;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
            gap: 10px;
        }
        .breadcrumb li:not(:last-child):after {
            content: '›';
            margin-left: 10px;
            color: #888;
        }
        main {
            flex: 1;
            padding: 30px 0 60px;
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        @media (max-width: 992px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
        }
        article {
            background: #fff;
            border-radius: 16px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        }
        article h1 {
            font-size: 2.8rem;
            margin-bottom: 25px;
            color: #2d2a5e;
            line-height: 1.2;
        }
        article h2 {
            font-size: 2rem;
            margin: 40px 0 20px;
            color: #3a3570;
            padding-bottom: 10px;
            border-bottom: 2px solid #f0edff;
        }
        article h3 {
            font-size: 1.5rem;
            margin: 30px 0 15px;
            color: #5a4fcf;
        }
        article p {
            margin-bottom: 22px;
            font-size: 1.1rem;
            color: #444;
            text-align: justify;
        }
        article strong {
            color: #5a4fcf;
            font-weight: 700;
        }
        article em {
            background: #f9f7fe;
            padding: 2px 5px;
            border-radius: 4px;
            font-style: italic;
        }
        .highlight-box {
            background: linear-gradient(135deg, #f0edff, #e6e2ff);
            border-left: 5px solid #7b68ee;
            padding: 25px;
            margin: 30px 0;
            border-radius: 0 12px 12px 0;
        }
        .image-container {
            margin: 35px 0;
            text-align: center;
        }
        .image-container img {
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
            transition: transform 0.5s ease;
        }
        .image-container img:hover {
            transform: scale(1.02);
        }
        .image-caption {
            font-size: 0.95rem;
            color: #666;
            margin-top: 10px;
            font-style: italic;
        }
        aside {
            background: #fff;
            border-radius: 16px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            align-self: start;
            position: sticky;
            top: 120px;
        }
        aside h3 {
            font-size: 1.5rem;
            margin-bottom: 25px;
            color: #3a3570;
            padding-bottom: 10px;
            border-bottom: 2px solid #f0edff;
        }
        .widget {
            margin-bottom: 35px;
        }
        .search-box input {
            width: 100%;
            padding: 14px;
            border: 2px solid #ddd;
            border-radius: 50px;
            font-size: 1rem;
            outline: none;
            transition: border 0.3s ease;
        }
        .search-box input:focus {
            border-color: #7b68ee;
        }
        .search-box button {
            width: 100%;
            margin-top: 15px;
            padding: 14px;
            background: linear-gradient(90deg, #7b68ee, #5a4fcf);
            color: white;
            border: none;
            border-radius: 50px;
            font-size: 1.05rem;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.3s ease;
        }
        .search-box button:hover {
            transform: translateY(-3px);
        }
        .rating-widget .stars {
            display: flex;
            gap: 8px;
            margin-bottom: 20px;
        }
        .rating-widget .stars i {
            font-size: 1.8rem;
            color: #ddd;
            cursor: pointer;
            transition: color 0.3s ease;
        }
        .rating-widget .stars i:hover,
        .rating-widget .stars i.active {
            color: #ffc107;
        }
        .rating-widget button {
            width: 100%;
            padding: 14px;
            background: #2d2a5e;
            color: white;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s ease;
        }
        .rating-widget button:hover {
            background: #3a3570;
        }
        .comment-form textarea {
            width: 100%;
            height: 150px;
            padding: 15px;
            border: 2px solid #ddd;
            border-radius: 12px;
            font-size: 1rem;
            resize: vertical;
            outline: none;
            transition: border 0.3s ease;
        }
        .comment-form textarea:focus {
            border-color: #7b68ee;
        }
        .comment-form button {
            width: 100%;
            margin-top: 15px;
            padding: 14px;
            background: linear-gradient(90deg, #5a4fcf, #7b68ee);
            color: white;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.3s ease;
        }
        .comment-form button:hover {
            transform: translateY(-3px);
        }
        .footer-links {
            background: #2d2a5e;
            padding: 50px 0 30px;
            margin-top: 60px;
        }
        .web-link {
            display: inline-block;
            background: rgba(255,255,255,0.1);
            color: #e6e2ff;
            padding: 12px 25px;
            margin: 0 15px 20px 0;
            border-radius: 50px;
            font-size: 0.95rem;
            transition: all 0.3s ease;
        }
        .web-link:hover {
            background: #7b68ee;
            color: white;
            transform: translateY(-3px);
        }
        footer {
            background: #1f1d3a;
            color: #b0a9ff;
            text-align: center;
            padding: 30px 0;
        }
        .footer-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;
        }
        .copyright {
            font-size: 0.95rem;
            line-height: 1.6;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .nav-links {
                position: fixed;
                top: 80px;
                left: 0;
                background: #fff;
                width: 100%;
                flex-direction: column;
                align-items: center;
                padding: 30px 0;
                gap: 25px;
                box-shadow: 0 10px 20px rgba(0,0,0,0.1);
                transform: translateY(-150%);
                opacity: 0;
                transition: transform 0.5s ease, opacity 0.3s ease;
                z-index: 999;
            }
            .nav-links.active {
                transform: translateY(0);
                opacity: 1;
            }
            article {
                padding: 30px 25px;
            }
            article h1 {
                font-size: 2.2rem;
            }
            article h2 {
                font-size: 1.8rem;
            }
            .content-wrapper {
                gap: 30px;
            }
        }
        @media (max-width: 480px) {
            article h1 {
                font-size: 1.9rem;
            }
            .header-container {
                padding: 12px 0;
            }
            .logo a {
                font-size: 1.7rem;
            }
        }
