        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f9f7ff;
            background-image: radial-gradient(#e0d6ff 1px, transparent 1px);
            background-size: 20px 20px;
            overflow-x: hidden;
        }
        img { max-width: 100%; height: auto; display: block; }
        h1, h2, h3, h4 {
            font-family: 'Comic Sans MS', 'Chalkboard SE', cursive;
            color: #ff66a3;
            margin-bottom: 1rem;
            line-height: 1.3;
        }
        h1 {
            font-size: clamp(2rem, 5vw, 3.2rem);
            text-shadow: 2px 2px 0 #ffcc00;
        }
        h2 {
            font-size: clamp(1.5rem, 4vw, 2.2rem);
            border-left: 5px solid #9b5de5;
            padding-left: 15px;
            margin-top: 2.5rem;
        }
        h3 {
            font-size: clamp(1.2rem, 3vw, 1.6rem);
            color: #9b5de5;
        }
        p {
            margin-bottom: 1.2rem;
            font-size: clamp(1rem, 2.5vw, 1.1rem);
            text-align: justify;
        }
        .lead {
            font-size: 1.3rem;
            font-weight: 600;
            color: #555;
            background: #fffacd;
            padding: 15px;
            border-radius: 10px;
            border-left: 4px solid #ffcc00;
        }
        .highlight {
            background: linear-gradient(90deg, #ffcc00 0%, #ffcc00 100%);
            background-position: 0 90%;
            background-repeat: no-repeat;
            background-size: 100% 0.4em;
            padding: 0 0.2em;
            font-weight: 700;
        }
        emoji { font-size: 1.2em; }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        header {
            background: linear-gradient(135deg, #ff66a3 0%, #9b5de5 100%);
            padding: 1rem 0;
            box-shadow: 0 4px 12px rgba(155, 93, 229, 0.3);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-family: 'Comic Sans MS', cursive;
            font-size: clamp(1.5rem, 4vw, 2.2rem);
            font-weight: 900;
            color: white;
            text-decoration: none;
            text-shadow: 2px 2px 0 #ffcc00, 4px 4px 0 rgba(0,0,0,0.1);
        }
        .logo span { color: #ffcc00; }
        nav ul {
            display: flex;
            list-style: none;
            gap: 1.5rem;
        }
        nav a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        nav a:hover, nav a.active {
            background-color: rgba(255, 255, 255, 0.2);
            transform: translateY(-2px);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            color: white;
            background: none;
            border: none;
            cursor: pointer;
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.9rem;
            color: #666;
        }
        .breadcrumb a {
            color: #9b5de5;
            text-decoration: none;
        }
        .breadcrumb a:hover { text-decoration: underline; }
        main {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            padding: 2rem 0;
        }
        article {
            background: white;
            padding: 2rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(155, 93, 229, 0.1);
        }
        .article-meta {
            display: flex;
            gap: 1rem;
            color: #777;
            font-size: 0.9rem;
            margin-bottom: 2rem;
            border-bottom: 1px dashed #ddd;
            padding-bottom: 1rem;
        }
        .article-meta i { color: #ff66a3; }
        aside {
            background: white;
            padding: 1.5rem;
            border-radius: 20px;
            box-shadow: 0 5px 20px rgba(155, 93, 229, 0.1);
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .sidebar-widget {
            margin-bottom: 2rem;
        }
        .sidebar-widget h3 {
            font-size: 1.2rem;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #ffcc00;
        }
        .widget-list {
            list-style: none;
        }
        .widget-list li {
            margin-bottom: 0.8rem;
            padding-left: 1.2rem;
            position: relative;
        }
        .widget-list li:before {
            content: '🍬';
            position: absolute;
            left: 0;
        }
        .widget-list a {
            color: #555;
            text-decoration: none;
            transition: color 0.3s;
        }
        .widget-list a:hover {
            color: #ff66a3;
            text-decoration: underline;
        }
        .feature-box {
            background: linear-gradient(to right, #e0d6ff, #fff0f7);
            border-radius: 15px;
            padding: 1.5rem;
            margin: 2rem 0;
            border-left: 5px solid #ff66a3;
        }
        .feature-box h3 { margin-top: 0; }
        .form-group {
            margin-bottom: 1rem;
        }
        input, textarea, select {
            width: 100%;
            padding: 0.8rem;
            border: 2px solid #ddd;
            border-radius: 10px;
            font-family: inherit;
            font-size: 1rem;
            transition: border 0.3s;
        }
        input:focus, textarea:focus {
            border-color: #9b5de5;
            outline: none;
        }
        button, .btn {
            background: linear-gradient(135deg, #ff66a3, #9b5de5);
            color: white;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 10px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }
        button:hover, .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(155, 93, 229, 0.4);
        }
        .rating-stars {
            display: flex;
            gap: 0.5rem;
            font-size: 1.5rem;
            color: #ffcc00;
            cursor: pointer;
            margin-bottom: 1rem;
        }
        .rating-stars .star:hover { transform: scale(1.2); }
        .comment {
            background: #f9f9ff;
            padding: 1rem;
            border-radius: 10px;
            margin-bottom: 1.5rem;
            border-left: 3px solid #9b5de5;
        }
        .comment-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 0.5rem;
            font-size: 0.9rem;
            color: #666;
        }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 1rem;
            margin: 3rem 0;
        }
        .web-link {
            background: white;
            padding: 1rem;
            border-radius: 10px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
        }
        .web-link a {
            color: #555;
            text-decoration: none;
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .web-link a:hover {
            color: #ff66a3;
            text-decoration: underline;
        }
        .web-link a:before {
            content: '🔗';
        }
        footer {
            background: #2d1b5e;
            color: #ddd;
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
        }
        .footer-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 2rem;
        }
        .footer-col {
            flex: 1;
            min-width: 200px;
        }
        .footer-col h4 {
            color: #ffcc00;
            margin-bottom: 1.5rem;
            font-size: 1.2rem;
        }
        .footer-col a {
            color: #ddd;
            text-decoration: none;
            display: block;
            margin-bottom: 0.8rem;
            transition: color 0.3s;
        }
        .footer-col a:hover {
            color: #ff66a3;
            padding-left: 5px;
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid #443385;
            font-size: 0.9rem;
            color: #aaa;
        }
        @media (max-width: 992px) {
            main {
                grid-template-columns: 1fr;
            }
            aside {
                position: static;
            }
        }
        @media (max-width: 768px) {
            .header-container {
                flex-wrap: wrap;
            }
            nav {
                width: 100%;
                order: 3;
                margin-top: 1rem;
                display: none;
            }
            nav.active {
                display: block;
            }
            nav ul {
                flex-direction: column;
                gap: 0;
            }
            nav li {
                width: 100%;
            }
            nav a {
                padding: 0.8rem;
                border-radius: 0;
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
            .hamburger {
                display: block;
            }
            .footer-container {
                flex-direction: column;
            }
        }
        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }
        .float {
            animation: float 3s ease-in-out infinite;
        }
        .pulse {
            display: inline-block;
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
        .text-center { text-align: center; }
        .mb-1 { margin-bottom: 1rem; }
        .mb-2 { margin-bottom: 2rem; }
        .mt-2 { margin-top: 2rem; }
        .py-2 { padding-top: 2rem; padding-bottom: 2rem; }
        .hidden { display: none; }
