        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #f9f7ff;
            color: #333;
            line-height: 1.7;
            max-width: 100%;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: #7b1fa2;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #4a0072;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        ul, ol {
            padding-left: 1.5rem;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #ff4081, #7b1fa2);
            color: white;
            padding: 1.2rem 0;
            box-shadow: 0 4px 12px rgba(123, 31, 162, 0.2);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 1.8rem;
            font-weight: 800;
            color: white;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo i {
            color: #ffeb3b;
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 1.8rem;
        }
        .desktop-nav a {
            color: white;
            font-weight: 600;
            padding: 0.5rem 0.8rem;
            border-radius: 4px;
        }
        .desktop-nav a:hover {
            background-color: rgba(255, 255, 255, 0.15);
        }
        .hamburger {
            display: none;
            font-size: 1.5rem;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background-color: #7b1fa2;
            padding: 1rem;
            box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        }
        .mobile-nav.active {
            display: block;
        }
        .mobile-nav ul {
            list-style: none;
        }
        .mobile-nav li {
            margin-bottom: 0.8rem;
        }
        .mobile-nav a {
            color: white;
            display: block;
            padding: 0.6rem;
            border-radius: 4px;
        }
        .mobile-nav a:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }
        .breadcrumb {
            padding: 1rem 0;
            background-color: #f0e6f5;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: #555;
        }
        .breadcrumb a:hover {
            color: #7b1fa2;
        }
        .breadcrumb span {
            color: #777;
        }
        main {
            padding: 2rem 0;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
        }
        .article-content {
            background: white;
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: 0 6px 20px rgba(123, 31, 162, 0.08);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        h1 {
            font-size: 2.5rem;
            color: #4a0072;
            margin-bottom: 1.2rem;
            line-height: 1.2;
        }
        h2 {
            font-size: 1.8rem;
            color: #7b1fa2;
            margin: 2rem 0 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px dashed #e1bee7;
        }
        h3 {
            font-size: 1.4rem;
            color: #9c27b0;
            margin: 1.5rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.2rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.2rem;
            font-weight: 600;
            color: #555;
            background-color: #f3e5f5;
            padding: 1.2rem;
            border-left: 5px solid #7b1fa2;
            border-radius: 0 8px 8px 0;
            margin-bottom: 2rem;
        }
        .highlight {
            background-color: #fff9c4;
            padding: 0.2rem 0.5rem;
            border-radius: 3px;
            font-weight: 600;
        }
        .note {
            background-color: #e8f5e9;
            border-left: 4px solid #4caf50;
            padding: 1rem;
            margin: 1.5rem 0;
            border-radius: 0 8px 8px 0;
        }
        .warning {
            background-color: #ffebee;
            border-left: 4px solid #f44336;
            padding: 1rem;
            margin: 1.5rem 0;
            border-radius: 0 8px 8px 0;
        }
        .stats-box {
            background: linear-gradient(to right, #7b1fa2, #ff4081);
            color: white;
            padding: 1.5rem;
            border-radius: 10px;
            text-align: center;
            margin: 1.5rem 0;
        }
        .stats-box h3 {
            color: white;
            margin-top: 0;
        }
        .article-image {
            margin: 2rem auto;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 8px 16px rgba(0,0,0,0.1);
            max-width: 800px;
        }
        .article-image figcaption {
            text-align: center;
            font-style: italic;
            color: #666;
            padding: 0.5rem;
            background-color: #f5f5f5;
        }
        .feature-list {
            list-style: none;
            padding-left: 0;
        }
        .feature-list li {
            padding: 0.5rem 0;
            padding-left: 2rem;
            position: relative;
        }
        .feature-list li:before {
            content: '🍬';
            position: absolute;
            left: 0;
        }
        .search-widget, .comment-widget, .rating-widget {
            background: white;
            padding: 1.5rem;
            border-radius: 10px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.05);
        }
        .widget-title {
            display: flex;
            align-items: center;
            gap: 10px;
            color: #7b1fa2;
            margin-bottom: 1rem;
        }
        .widget-title i {
            font-size: 1.2rem;
        }
        .search-form input {
            width: 100%;
            padding: 0.8rem;
            border: 2px solid #e1bee7;
            border-radius: 6px;
            margin-bottom: 0.8rem;
        }
        .search-form button {
            width: 100%;
            background: linear-gradient(to right, #7b1fa2, #ff4081);
            color: white;
            border: none;
            padding: 0.8rem;
            border-radius: 6px;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.2s;
        }
        .search-form button:hover {
            transform: translateY(-2px);
        }
        .comment-form textarea {
            width: 100%;
            padding: 0.8rem;
            border: 2px solid #e1bee7;
            border-radius: 6px;
            margin-bottom: 0.8rem;
            min-height: 100px;
            resize: vertical;
        }
        .rating-stars {
            display: flex;
            justify-content: center;
            gap: 5px;
            margin-bottom: 1rem;
        }
        .rating-stars i {
            font-size: 1.8rem;
            color: #ddd;
            cursor: pointer;
            transition: color 0.2s;
        }
        .rating-stars i.active {
            color: #ff9800;
        }
        .footer-links {
            background-color: #4a0072;
            color: white;
            padding: 2.5rem 0;
        }
        .footer-links .container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 1.5rem;
        }
        .web-link {
            background-color: rgba(255, 255, 255, 0.05);
            padding: 1rem;
            border-radius: 6px;
            transition: background-color 0.3s;
        }
        .web-link:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }
        .web-link a {
            color: #ffcc80;
        }
        footer {
            background-color: #311b92;
            color: #e1bee7;
            text-align: center;
            padding: 1.5rem 0;
            font-size: 0.9rem;
        }
        .footer-content {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
        }
        .social-links {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-top: 0.5rem;
        }
        .social-links a {
            color: #e1bee7;
            font-size: 1.2rem;
        }
        .social-links a:hover {
            color: #ff4081;
        }
        @media (max-width: 992px) {
            main {
                grid-template-columns: 1fr;
            }
            .sidebar {
                order: -1;
            }
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            .desktop-nav {
                display: none;
            }
            .hamburger {
                display: block;
            }
            .article-content {
                padding: 1.5rem;
            }
            .header-content, .footer-links .container {
                padding: 0 15px;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 10px;
            }
            .stats-box {
                padding: 1rem;
            }
            .widget-title {
                font-size: 1rem;
            }
        }
