        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #f8f9fa;
            color: #333;
            line-height: 1.7;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }
        a {
            color: #6a5acd;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #4b0082;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 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-size: 2.2rem;
            font-weight: 800;
            letter-spacing: 1px;
            color: white;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        .my-logo span {
            color: #ffdd40;
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 1.8rem;
        }
        .main-nav a {
            color: white;
            font-weight: 600;
            padding: 0.5rem 0.8rem;
            border-radius: 4px;
            font-size: 1.05rem;
        }
        .main-nav a:hover,
        .main-nav a.active {
            background-color: rgba(255, 255, 255, 0.2);
            text-decoration: none;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
        }
        .breadcrumb {
            background-color: #e9ecef;
            padding: 0.8rem 0;
            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: #6c757d;
        }
        .main-content {
            flex: 1;
            padding: 2.5rem 0;
        }
        .article-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
        }
        @media (max-width: 992px) {
            .article-grid {
                grid-template-columns: 1fr;
            }
        }
        article {
            background: white;
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: 0 6px 15px rgba(0,0,0,0.05);
        }
        article h1 {
            font-size: 2.8rem;
            color: #343a40;
            margin-bottom: 1.2rem;
            line-height: 1.2;
            border-bottom: 3px solid #6a5acd;
            padding-bottom: 0.7rem;
        }
        article h2 {
            font-size: 2rem;
            color: #495057;
            margin-top: 2.5rem;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px dashed #adb5bd;
        }
        article h3 {
            font-size: 1.6rem;
            color: #6c757d;
            margin-top: 2rem;
            margin-bottom: 0.8rem;
        }
        article h4 {
            font-size: 1.3rem;
            color: #868e96;
            margin-top: 1.5rem;
            margin-bottom: 0.6rem;
        }
        article p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        article strong {
            color: #4a5568;
            background-color: #f1f3f5;
            padding: 0 4px;
            border-radius: 3px;
        }
        article em {
            color: #e83e8c;
            font-style: italic;
        }
        .featured-image {
            margin: 2rem 0;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        .featured-image figcaption {
            text-align: center;
            font-style: italic;
            color: #6c757d;
            padding: 0.8rem;
            background-color: #f8f9fa;
        }
        .last-updated {
            background-color: #fff3cd;
            border-left: 5px solid #ffc107;
            padding: 1rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .last-updated i {
            color: #856404;
            margin-right: 10px;
        }
        .sidebar {
            background: white;
            padding: 1.8rem;
            border-radius: 12px;
            box-shadow: 0 6px 15px rgba(0,0,0,0.05);
            align-self: start;
        }
        .sidebar h3 {
            color: #495057;
            margin-bottom: 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #6a5acd;
        }
        .widget {
            margin-bottom: 2.2rem;
        }
        .search-form {
            display: flex;
        }
        .search-form input {
            flex: 1;
            padding: 0.8rem;
            border: 2px solid #ced4da;
            border-right: none;
            border-radius: 6px 0 0 6px;
            font-size: 1rem;
        }
        .search-form button {
            background-color: #6a5acd;
            color: white;
            border: none;
            padding: 0 1.2rem;
            border-radius: 0 6px 6px 0;
            cursor: pointer;
            transition: background 0.3s;
        }
        .search-form button:hover {
            background-color: #5a4bbf;
        }
        .rating-widget form,
        .comment-widget form {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
        }
        .rating-widget input,
        .comment-widget textarea,
        .comment-widget input {
            padding: 0.8rem;
            border: 2px solid #ced4da;
            border-radius: 6px;
            font-size: 1rem;
        }
        .rating-widget textarea {
            min-height: 100px;
            resize: vertical;
        }
        .comment-widget textarea {
            min-height: 120px;
            resize: vertical;
        }
        .btn-submit {
            background-color: #28a745;
            color: white;
            border: none;
            padding: 0.9rem;
            border-radius: 6px;
            font-weight: bold;
            cursor: pointer;
            transition: background 0.3s;
        }
        .btn-submit:hover {
            background-color: #218838;
        }
        .stars {
            display: flex;
            gap: 5px;
            margin-bottom: 10px;
        }
        .stars i {
            color: #ffc107;
            cursor: pointer;
            font-size: 1.5rem;
        }
        .stars i:hover {
            transform: scale(1.1);
        }
        .related-links {
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 2px solid #dee2e6;
        }
        .related-links h3 {
            color: #495057;
            margin-bottom: 1.5rem;
        }
        .links-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1rem;
        }
        .links-grid a {
            display: block;
            background: #f8f9fa;
            padding: 1rem;
            border-radius: 8px;
            border-left: 4px solid #6a5acd;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .links-grid a:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 15px rgba(0,0,0,0.1);
            text-decoration: none;
        }
        .site-footer {
            background-color: #343a40;
            color: #adb5bd;
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2.5rem;
        }
        .footer-logo {
            font-size: 2rem;
            font-weight: 800;
            color: white;
            margin-bottom: 1rem;
        }
        .footer-links h4 {
            color: white;
            margin-bottom: 1.2rem;
            font-size: 1.2rem;
        }
        .footer-links ul {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 0.7rem;
        }
        .footer-links a {
            color: #adb5bd;
        }
        .footer-links a:hover {
            color: white;
        }
        friend-link {
            display: block;
            margin-top: 1rem;
            padding: 1rem;
            background-color: #495057;
            border-radius: 6px;
            text-align: center;
        }
        friend-link a {
            color: #ffdd40;
            font-weight: bold;
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid #495057;
            font-size: 0.9rem;
            color: #6c757d;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .main-nav ul {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: #764ba2;
                padding: 1rem;
                box-shadow: 0 10px 15px rgba(0,0,0,0.1);
                border-radius: 0 0 12px 12px;
            }
            .main-nav.active ul {
                display: flex;
            }
            .header-container {
                flex-wrap: wrap;
            }
            article {
                padding: 1.5rem;
            }
            article h1 {
                font-size: 2.2rem;
            }
            article h2 {
                font-size: 1.8rem;
            }
            .article-grid {
                gap: 1.5rem;
            }
        }
