        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background: linear-gradient(135deg, #f9f3ff 0%, #e6f0ff 100%);
            color: #333;
            line-height: 1.7;
            min-height: 100vh;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            color: #7c4dff;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        a:hover {
            color: #ff4081;
            text-decoration: underline;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(90deg, #6a11cb 0%, #2575fc 100%);
            color: white;
            box-shadow: 0 4px 20px rgba(106, 17, 203, 0.3);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .logo a {
            font-size: 2rem;
            font-weight: 800;
            color: white;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo i {
            color: #ffcc00;
        }
        .logo a:hover {
            text-decoration: none;
            transform: scale(1.02);
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .desktop-nav a {
            color: white;
            font-weight: 600;
            padding: 8px 12px;
            border-radius: 5px;
        }
        .desktop-nav a:hover {
            background: rgba(255, 255, 255, 0.2);
            text-decoration: none;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            background: #4a1e9e;
            padding: 20px;
            flex-direction: column;
            gap: 15px;
            border-top: 1px solid rgba(255,255,255,0.1);
        }
        .mobile-nav.active {
            display: flex;
        }
        .breadcrumb {
            background: rgba(255,255,255,0.1);
            padding: 12px 0;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: #ffcc00;
        }
        main {
            padding: 40px 0;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        @media (max-width: 992px) {
            main {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background: white;
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        }
        .article-content h1 {
            color: #6a11cb;
            font-size: 2.8rem;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        .article-meta {
            color: #666;
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 2px dashed #eee;
        }
        .article-meta i {
            margin-right: 8px;
            color: #7c4dff;
        }
        .featured-img {
            border-radius: 15px;
            overflow: hidden;
            margin: 30px 0;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        .featured-img figcaption {
            text-align: center;
            font-style: italic;
            padding: 10px;
            color: #666;
            background: #f9f9f9;
        }
        .article-content h2 {
            color: #2575fc;
            font-size: 1.8rem;
            margin: 35px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #e6f0ff;
        }
        .article-content h3 {
            color: #ff4081;
            font-size: 1.4rem;
            margin: 25px 0 15px;
        }
        .article-content p {
            margin-bottom: 20px;
            text-align: justify;
        }
        .highlight-box {
            background: linear-gradient(to right, #e6f7ff, #f0e6ff);
            border-left: 5px solid #7c4dff;
            padding: 25px;
            margin: 30px 0;
            border-radius: 0 10px 10px 0;
        }
        .highlight-box strong {
            color: #6a11cb;
        }
        .cheat-list {
            list-style: none;
            margin: 25px 0;
        }
        .cheat-list li {
            padding: 12px 0 12px 40px;
            position: relative;
            border-bottom: 1px dotted #ddd;
        }
        .cheat-list li:before {
            content: '🍬';
            position: absolute;
            left: 0;
            font-size: 1.2rem;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .widget {
            background: white;
            padding: 25px;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .widget h3 {
            color: #6a11cb;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .search-form {
            display: flex;
            margin-top: 15px;
        }
        .search-form input {
            flex: 1;
            padding: 12px 15px;
            border: 2px solid #7c4dff;
            border-radius: 8px 0 0 8px;
            font-size: 1rem;
        }
        .search-form button {
            background: #7c4dff;
            color: white;
            border: none;
            padding: 0 20px;
            border-radius: 0 8px 8px 0;
            cursor: pointer;
            font-size: 1.1rem;
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            font-size: 2rem;
            color: #ffcc00;
            margin: 15px 0;
            cursor: pointer;
        }
        .stars i {
            transition: transform 0.2s;
        }
        .stars i:hover {
            transform: scale(1.2);
        }
        .comment-form textarea {
            width: 100%;
            padding: 15px;
            border: 2px solid #e0e0e0;
            border-radius: 10px;
            margin: 15px 0;
            resize: vertical;
            min-height: 120px;
            font-size: 1rem;
        }
        .btn {
            background: linear-gradient(90deg, #ff4081, #7c4dff);
            color: white;
            border: none;
            padding: 14px 28px;
            border-radius: 10px;
            cursor: pointer;
            font-weight: 600;
            display: inline-block;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(124, 77, 255, 0.4);
            text-decoration: none;
        }
        .related-links {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .related-links a {
            padding: 12px 15px;
            background: #f8f5ff;
            border-radius: 8px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .related-links a:hover {
            background: #e6ddff;
        }
        .footer-links {
            background: white;
            padding: 40px 0 20px;
            margin-top: 50px;
        }
        .web-link {
            display: inline-block;
            margin: 0 15px 15px 0;
            padding: 10px 20px;
            background: #f0f5ff;
            border-radius: 50px;
            border: 1px solid #d1e0ff;
        }
        .web-link:hover {
            background: #e1ebff;
        }
        footer {
            background: linear-gradient(90deg, #1a1a2e, #16213e);
            color: #ccc;
            padding: 40px 0 20px;
            text-align: center;
        }
        .footer-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 30px;
            margin-bottom: 30px;
        }
        .footer-section {
            flex: 1;
            min-width: 250px;
        }
        .footer-section h4 {
            color: #7c4dff;
            margin-bottom: 20px;
        }
        .footer-links-list {
            list-style: none;
        }
        .footer-links-list li {
            margin-bottom: 10px;
        }
        .copyright {
            padding-top: 20px;
            border-top: 1px solid #2d3748;
            color: #aaa;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .header-top {
                flex-wrap: wrap;
            }
            .desktop-nav {
                display: none;
            }
            .hamburger {
                display: block;
            }
            .article-content h1 {
                font-size: 2.2rem;
            }
            .article-content {
                padding: 25px;
            }
            .footer-content {
                flex-direction: column;
                text-align: center;
            }
        }
