        * { 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.6;
            color: #333;
            background: linear-gradient(135deg, #f5f7fa 0%, #f0f4f8 100%);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a { color: #ff6b9d; text-decoration: none; transition: color 0.3s ease, transform 0.2s ease; }
        a:hover { color: #ff3d7f; transform: translateY(-2px); }
        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(90deg, #5c2d91 0%, #ff6b9d 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: 2rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 1px;
            background: linear-gradient(45deg, #fff, #ffde59);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }
        .my-logo:hover { transform: scale(1.05); }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 1.5rem;
        }
        .main-nav a {
            color: white;
            font-weight: 600;
            padding: 0.5rem 0;
            border-bottom: 2px solid transparent;
        }
        .main-nav a:hover, .main-nav a.active {
            border-bottom-color: #ffde59;
        }
        .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.9rem;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '›';
            margin-left: 0.5rem;
            color: #888;
        }
        .search-bar {
            background-color: #5c2d91;
            padding: 1.5rem 0;
            text-align: center;
        }
        .search-form {
            max-width: 600px;
            margin: 0 auto;
            display: flex;
            border-radius: 50px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }
        .search-input {
            flex-grow: 1;
            padding: 0.9rem 1.5rem;
            border: none;
            font-size: 1rem;
        }
        .search-btn {
            background: #ffde59;
            color: #5c2d91;
            border: none;
            padding: 0 1.8rem;
            font-weight: bold;
            cursor: pointer;
            transition: background 0.3s;
        }
        .search-btn:hover { background: #ffd324; }
        main { flex: 1; padding: 2rem 0; }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
        }
        @media (max-width: 992px) {
            .content-grid { grid-template-columns: 1fr; }
        }
        article { background: white; border-radius: 16px; padding: 2.5rem; box-shadow: 0 8px 30px rgba(0,0,0,0.08); }
        .article-header { margin-bottom: 2rem; border-bottom: 2px solid #f0f0f0; padding-bottom: 1.5rem; }
        .article-header h1 { font-size: 2.8rem; color: #5c2d91; margin-bottom: 0.5rem; line-height: 1.2; }
        .meta-info { color: #666; font-size: 0.95rem; display: flex; gap: 1rem; flex-wrap: wrap; }
        .meta-info i { margin-right: 0.3rem; }
        .featured-image {
            width: 100%;
            border-radius: 12px;
            overflow: hidden;
            margin: 2rem 0;
            box-shadow: 0 6px 20px rgba(0,0,0,0.1);
        }
        .featured-image img { width: 100%; height: auto; transition: transform 0.5s ease; }
        .featured-image:hover img { transform: scale(1.03); }
        article h2 {
            font-size: 2rem;
            color: #ff6b9d;
            margin: 2.5rem 0 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px dashed #ddd;
        }
        article h3 {
            font-size: 1.6rem;
            color: #5c2d91;
            margin: 2rem 0 1rem;
        }
        article h4 {
            font-size: 1.3rem;
            color: #333;
            margin: 1.5rem 0 0.8rem;
        }
        article p {
            margin-bottom: 1.2rem;
            text-align: justify;
            font-size: 1.05rem;
        }
        .highlight {
            background: linear-gradient(120deg, #ffde5922 0%, #ff6b9d22 100%);
            border-left: 4px solid #ff6b9d;
            padding: 1.5rem;
            margin: 1.5rem 0;
            border-radius: 0 8px 8px 0;
        }
        .tip-box {
            background-color: #e8f4ff;
            border: 1px solid #b3d9ff;
            border-radius: 10px;
            padding: 1.2rem;
            margin: 1.2rem 0;
        }
        .tip-box::before { content: "💡 Pro Tip: "; font-weight: bold; }
        .internal-links {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin: 1.5rem 0;
            padding: 1rem;
            background-color: #f9f9f9;
            border-radius: 10px;
        }
        .internal-links a {
            background: #5c2d91;
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 600;
        }
        .internal-links a:hover {
            background: #ff6b9d;
            transform: translateY(-3px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        }
        aside { background: white; border-radius: 16px; padding: 1.8rem; box-shadow: 0 8px 30px rgba(0,0,0,0.08); align-self: start; }
        .sidebar-widget { margin-bottom: 2.5rem; }
        .sidebar-widget h3 {
            font-size: 1.4rem;
            color: #5c2d91;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #ffde59;
        }
        .rating-widget { text-align: center; }
        .stars { font-size: 2rem; color: #ffd324; margin: 0.5rem 0; cursor: pointer; }
        .stars .star:hover { transform: scale(1.2); }
        .rating-form { display: flex; flex-direction: column; gap: 1rem; margin-top: 1rem; }
        .rating-form input, .rating-form textarea {
            padding: 0.8rem;
            border: 1px solid #ccc;
            border-radius: 8px;
            font-family: inherit;
        }
        .rating-form button {
            background: #5c2d91;
            color: white;
            border: none;
            padding: 0.8rem;
            border-radius: 8px;
            font-weight: bold;
            cursor: pointer;
            transition: background 0.3s;
        }
        .rating-form button:hover { background: #ff6b9d; }
        .comment { border-bottom: 1px solid #eee; padding: 1rem 0; }
        .comment:last-child { border-bottom: none; }
        .comment-author { font-weight: bold; color: #5c2d91; }
        .comment-date { font-size: 0.85rem; color: #888; }
        .comment-text { margin-top: 0.5rem; }
        .site-footer {
            background: linear-gradient(90deg, #2d1b4e 0%, #5c2d91 100%);
            color: white;
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }
        .footer-widget h4 {
            font-size: 1.3rem;
            margin-bottom: 1.2rem;
            color: #ffde59;
        }
        .footer-links { list-style: none; }
        .footer-links li { margin-bottom: 0.7rem; }
        .footer-links a { color: #ccc; }
        .footer-links a:hover { color: #ffde59; }
        friend-link {
            display: block;
            padding: 0.8rem;
            background: rgba(255,255,255,0.05);
            border-radius: 8px;
            margin-bottom: 0.5rem;
            transition: background 0.3s;
        }
        friend-link:hover { background: rgba(255,255,255,0.1); }
        .copyright {
            text-align: center;
            margin-top: 2.5rem;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 0.9rem;
            color: #aaa;
        }
        @media (max-width: 768px) {
            .hamburger { display: block; }
            .main-nav ul {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: #5c2d91;
                padding: 1rem;
                box-shadow: 0 5px 10px rgba(0,0,0,0.2);
            }
            .main-nav.active ul { display: flex; }
            .article-header h1 { font-size: 2rem; }
            article, aside { padding: 1.5rem; }
            .content-grid { gap: 1.5rem; }
            .search-form { flex-direction: column; border-radius: 12px; }
            .search-input, .search-btn { width: 100%; border-radius: 0; padding: 1rem; }
        }
