        * {
            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-color: #f8f9fa;
            max-width: 100vw;
            overflow-x: hidden;
        }
        a {
            color: #4361ee;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #3a0ca3;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        ul, ol {
            padding-left: 1.5rem;
            margin: 1rem 0;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #7209b7 0%, #4361ee 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;
            color: white;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
            font-family: 'Arial Black', sans-serif;
            letter-spacing: -1px;
        }
        .my-logo span {
            background: #f72585;
            padding: 5px 10px;
            border-radius: 10px;
            transform: rotate(-5deg);
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .desktop-nav a {
            color: white;
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 5px;
            transition: background 0.3s;
        }
        .desktop-nav a:hover {
            background: rgba(255,255,255,0.15);
        }
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 4px;
        }
        .hamburger span {
            width: 25px;
            height: 3px;
            background: white;
            border-radius: 2px;
            transition: 0.3s;
        }
        .mobile-nav {
            display: none;
            position: fixed;
            top: 70px;
            left: 0;
            width: 100%;
            background: #3a0ca3;
            padding: 1rem;
            z-index: 999;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        .mobile-nav.active {
            display: block;
        }
        .mobile-nav ul {
            list-style: none;
        }
        .mobile-nav li {
            margin: 1rem 0;
        }
        .mobile-nav a {
            color: white;
            display: block;
            padding: 0.8rem;
            border-radius: 5px;
            font-weight: 600;
        }
        .mobile-nav a:hover {
            background: rgba(255,255,255,0.15);
        }
        .breadcrumb {
            padding: 1rem 0;
            background: #e9ecef;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: #6c757d;
        }
        .breadcrumb a:hover {
            color: #4361ee;
        }
        main {
            padding: 2rem 0;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
        }
        @media (max-width: 992px) {
            main {
                grid-template-columns: 1fr;
            }
        }
        article {
            background: white;
            border-radius: 15px;
            padding: 2.5rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        h1 {
            font-size: 2.8rem;
            color: #3a0ca3;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }
        h2 {
            font-size: 2rem;
            color: #7209b7;
            margin: 2.5rem 0 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 3px solid #f72585;
        }
        h3 {
            font-size: 1.6rem;
            color: #4361ee;
            margin: 2rem 0 1rem;
        }
        h4 {
            font-size: 1.3rem;
            color: #4cc9f0;
            margin: 1.5rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.2rem;
            text-align: justify;
            font-size: 1.1rem;
        }
        .lead {
            font-size: 1.3rem;
            font-weight: 600;
            color: #555;
            background: #f8f9fa;
            padding: 1.2rem;
            border-left: 5px solid #f72585;
            border-radius: 0 8px 8px 0;
            margin: 2rem 0;
        }
        .highlight {
            background: linear-gradient(120deg, #f72585 0%, #f72585 50%, transparent 50%);
            background-size: 200% 100%;
            background-position: 100% 0;
            transition: background-position 0.5s ease;
            padding: 0.2rem 0.5rem;
            border-radius: 3px;
            font-weight: 700;
        }
        .highlight:hover {
            background-position: 0 0;
            color: white;
        }
        .feature-list {
            list-style: none;
            padding-left: 0;
        }
        .feature-list li {
            padding: 0.8rem 0 0.8rem 2.5rem;
            position: relative;
            border-bottom: 1px dashed #dee2e6;
        }
        .feature-list li:before {
            content: '🎯';
            position: absolute;
            left: 0;
            top: 0.8rem;
        }
        .article-img {
            width: 100%;
            border-radius: 12px;
            margin: 2rem auto;
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
            transition: transform 0.5s ease;
        }
        .article-img:hover {
            transform: scale(1.02);
        }
        .caption {
            text-align: center;
            font-style: italic;
            color: #6c757d;
            margin-top: 0.5rem;
            font-size: 0.95rem;
        }
        aside {
            background: white;
            border-radius: 15px;
            padding: 2rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            height: fit-content;
            position: sticky;
            top: 100px;
        }
        .sidebar-widget {
            margin-bottom: 2rem;
        }
        .sidebar-widget h3 {
            font-size: 1.3rem;
            color: #3a0ca3;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #f72585;
        }
        .search-box {
            position: relative;
        }
        .search-box input {
            width: 100%;
            padding: 12px 20px;
            border: 2px solid #dee2e6;
            border-radius: 50px;
            font-size: 1rem;
            transition: border 0.3s;
        }
        .search-box input:focus {
            outline: none;
            border-color: #4361ee;
        }
        .search-box button {
            position: absolute;
            right: 10px;
            top: 50%;
            transform: translateY(-50%);
            background: #4361ee;
            color: white;
            border: none;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            cursor: pointer;
            transition: background 0.3s;
        }
        .search-box button:hover {
            background: #3a0ca3;
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            font-size: 2rem;
            color: #ffd700;
            margin: 1rem 0;
        }
        .stars i {
            cursor: pointer;
            margin: 0 2px;
            transition: transform 0.2s;
        }
        .stars i:hover {
            transform: scale(1.2);
        }
        .rating-form input, .rating-form textarea, .rating-form button {
            width: 100%;
            padding: 10px;
            margin-top: 10px;
            border: 1px solid #dee2e6;
            border-radius: 5px;
        }
        .rating-form button {
            background: #7209b7;
            color: white;
            font-weight: bold;
            border: none;
            cursor: pointer;
            transition: background 0.3s;
        }
        .rating-form button:hover {
            background: #3a0ca3;
        }
        .comment {
            border-bottom: 1px solid #dee2e6;
            padding: 1rem 0;
        }
        .comment-author {
            font-weight: bold;
            color: #3a0ca3;
        }
        .comment-date {
            font-size: 0.8rem;
            color: #6c757d;
        }
        footer {
            background: #212529;
            color: #adb5bd;
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-logo {
            font-size: 2rem;
            font-weight: 800;
            color: white;
            margin-bottom: 1rem;
        }
        .footer-links h4 {
            color: white;
            margin-bottom: 1rem;
            font-size: 1.2rem;
        }
        .footer-links ul {
            list-style: none;
            padding-left: 0;
        }
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        .footer-links a {
            color: #adb5bd;
        }
        .footer-links a:hover {
            color: white;
        }
        friend-link {
            display: block;
            background: #343a40;
            padding: 1rem;
            border-radius: 8px;
            margin: 1rem 0;
            border-left: 4px solid #f72585;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #495057;
            font-size: 0.9rem;
        }
        .last-updated {
            background: #e7f5ff;
            padding: 1rem;
            border-radius: 8px;
            margin: 2rem 0;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .last-updated i {
            color: #f72585;
        }
        .btn {
            display: inline-block;
            background: linear-gradient(to right, #4361ee, #3a0ca3);
            color: white;
            padding: 0.8rem 1.5rem;
            border-radius: 50px;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 14px rgba(67, 97, 238, 0.3);
            color: white;
        }
        .tag {
            display: inline-block;
            background: #f1f3f5;
            color: #495057;
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            font-size: 0.85rem;
            margin-right: 0.5rem;
            margin-bottom: 0.5rem;
        }
        @media (max-width: 768px) {
            .header-container {
                flex-wrap: wrap;
            }
            .desktop-nav {
                display: none;
            }
            .hamburger {
                display: flex;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            article {
                padding: 1.5rem;
            }
            aside {
                position: static;
            }
        }
