        * {
            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: #fef9ff;
            background-image: linear-gradient(to bottom, #fffafc 0%, #fff0ff 100%);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            text-decoration: none;
            color: inherit;
            transition: color 0.3s ease;
        }
        .site-header {
            background: linear-gradient(135deg, #ff66a3 0%, #cc33cc 100%);
            color: white;
            padding: 1rem 0;
            box-shadow: 0 4px 12px rgba(204, 51, 204, 0.2);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 800;
            color: white;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            letter-spacing: 1px;
        }
        .logo span {
            color: #ffff66;
        }
        .nav-desktop ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .nav-desktop a {
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 20px;
        }
        .nav-desktop a:hover {
            background-color: rgba(255,255,255,0.2);
            color: #ffff66;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: white;
        }
        .nav-mobile {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background-color: #cc33cc;
            flex-direction: column;
            padding: 1rem;
            box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile ul {
            list-style: none;
            width: 100%;
        }
        .nav-mobile li {
            margin-bottom: 1rem;
        }
        .nav-mobile a {
            display: block;
            padding: 0.8rem;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        .nav-mobile a:hover {
            background-color: rgba(255,255,255,0.1);
        }
        .breadcrumb {
            background-color: #f5e6ff;
            padding: 0.8rem 20px;
            font-size: 0.9rem;
            border-bottom: 1px solid #e0c2ff;
        }
        .breadcrumb a {
            color: #9933cc;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb i {
            margin: 0 0.5rem;
        }
        .search-container {
            background-color: #fff;
            padding: 2rem;
            margin: 2rem auto;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(204, 51, 204, 0.08);
            max-width: 800px;
        }
        .search-form {
            display: flex;
        }
        .search-form input {
            flex: 1;
            padding: 1rem;
            border: 2px solid #cc99ff;
            border-radius: 8px 0 0 8px;
            font-size: 1rem;
        }
        .search-form button {
            background: linear-gradient(to right, #ff66a3, #cc33cc);
            color: white;
            border: none;
            padding: 0 1.5rem;
            border-radius: 0 8px 8px 0;
            cursor: pointer;
            font-weight: 600;
        }
        .search-form button:hover {
            background: linear-gradient(to right, #ff3385, #b300b3);
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            padding: 2rem 0;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background: white;
            padding: 2.5rem;
            border-radius: 16px;
            box-shadow: 0 10px 30px rgba(204, 51, 204, 0.05);
        }
        .article-header h1 {
            color: #cc33cc;
            font-size: 2.8rem;
            margin-bottom: 1rem;
            line-height: 1.2;
        }
        .article-meta {
            color: #666;
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 2px dashed #f0e6ff;
        }
        .article-meta span {
            margin-right: 1.5rem;
        }
        .article-meta i {
            color: #ff66a3;
            margin-right: 0.5rem;
        }
        .article-section {
            margin-bottom: 3rem;
        }
        h2 {
            color: #9933cc;
            font-size: 2rem;
            margin: 2rem 0 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 3px solid #ffccff;
        }
        h3 {
            color: #ff66a3;
            font-size: 1.5rem;
            margin: 1.5rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.2rem;
            font-size: 1.1rem;
            line-height: 1.7;
        }
        strong {
            color: #cc33cc;
            font-weight: 700;
        }
        em {
            color: #ff66a3;
            font-style: italic;
        }
        .highlight-box {
            background: linear-gradient(to right, #fff0ff, #fffaf0);
            border-left: 5px solid #ffcc00;
            padding: 1.5rem;
            margin: 1.5rem 0;
            border-radius: 0 8px 8px 0;
            box-shadow: 0 3px 8px rgba(0,0,0,0.05);
        }
        .tip-list {
            list-style-type: none;
            margin: 1.5rem 0;
        }
        .tip-list li {
            padding: 0.8rem 0 0.8rem 2.5rem;
            position: relative;
        }
        .tip-list li:before {
            content: '🍬';
            position: absolute;
            left: 0;
            top: 0.8rem;
            font-size: 1.2rem;
        }
        .featured-img {
            margin: 2rem 0;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        .caption {
            text-align: center;
            font-style: italic;
            color: #666;
            margin-top: 0.5rem;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .widget {
            background: white;
            padding: 1.8rem;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(204, 51, 204, 0.05);
        }
        .widget-title {
            color: #9933cc;
            font-size: 1.3rem;
            margin-bottom: 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #ffccff;
        }
        .popular-levels {
            list-style: none;
        }
        .popular-levels li {
            padding: 0.8rem 0;
            border-bottom: 1px dashed #eee;
        }
        .popular-levels a:hover {
            color: #ff66a3;
        }
        .social-share {
            display: flex;
            gap: 1rem;
            justify-content: center;
        }
        .social-share a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            color: white;
            font-size: 1.2rem;
        }
        .fb { background-color: #3b5998; }
        .tw { background-color: #1da1f2; }
        .wa { background-color: #25d366; }
        .pin { background-color: #bd081c; }
        .interaction-section {
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 3px solid #ffccff;
        }
        .rating-widget {
            text-align: center;
            margin-bottom: 2rem;
        }
        .stars {
            font-size: 2rem;
            color: #ddd;
            cursor: pointer;
            margin-bottom: 1rem;
        }
        .stars .star {
            transition: color 0.2s;
        }
        .stars .star:hover,
        .stars .star.active {
            color: #ffcc00;
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: #9933cc;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 0.8rem;
            border: 2px solid #e0c2ff;
            border-radius: 8px;
            font-size: 1rem;
            transition: border 0.3s;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            border-color: #cc33cc;
            outline: none;
        }
        .submit-btn {
            background: linear-gradient(to right, #ff66a3, #cc33cc);
            color: white;
            border: none;
            padding: 1rem 2.5rem;
            border-radius: 30px;
            cursor: pointer;
            font-size: 1.1rem;
            font-weight: 600;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(204, 51, 204, 0.4);
        }
        .footer-links {
            background: linear-gradient(135deg, #330033 0%, #660066 100%);
            color: white;
            padding: 3rem 0;
            margin-top: 3rem;
        }
        .web-links-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 1.5rem;
            margin-bottom: 2rem;
        }
        .web-link {
            background: rgba(255,255,255,0.05);
            padding: 1.2rem;
            border-radius: 8px;
            border-left: 3px solid #ff66a3;
            transition: transform 0.3s, background 0.3s;
        }
        .web-link:hover {
            transform: translateY(-5px);
            background: rgba(255,255,255,0.1);
        }
        .web-link a {
            color: #ffccff;
        }
        .web-link a:hover {
            color: white;
        }
        .copyright {
            text-align: center;
            padding: 1.5rem;
            background-color: #220022;
            color: #cc99cc;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .header-container {
                flex-wrap: wrap;
            }
            .nav-desktop {
                display: none;
            }
            .hamburger {
                display: block;
            }
            .article-header h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            .article-content {
                padding: 1.5rem;
            }
            .search-container {
                padding: 1.5rem;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form input,
            .search-form button {
                width: 100%;
                border-radius: 8px;
                margin-bottom: 0.5rem;
            }
        }
