        * { 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.7;
            color: #333;
            background-color: #f9f7ff;
            background-image: linear-gradient(to bottom right, #f0edff, #ffffff);
            max-width: 1280px;
            margin: 0 auto;
            box-shadow: 0 0 30px rgba(0, 0, 150, 0.05);
        }
        h1, h2, h3, h4 { color: #3a2c6e; margin-bottom: 1rem; font-weight: 700; }
        h1 { font-size: 2.8rem; line-height: 1.2; text-align: center; padding-top: 1.5rem; }
        h2 { font-size: 2.2rem; border-left: 5px solid #ff6b8b; padding-left: 1rem; margin-top: 3rem; }
        h3 { font-size: 1.8rem; color: #5a4a9a; margin-top: 2.5rem; }
        p { margin-bottom: 1.5rem; font-size: 1.1rem; text-align: justify; }
        .lead { font-size: 1.3rem; color: #555; font-weight: 300; text-align: center; max-width: 900px; margin: 0 auto 2rem; }
        .emoji { font-size: 1.2em; margin-right: 5px; }
        strong { color: #3a2c6e; font-weight: 700; }
        a { color: #5a4a9a; text-decoration: none; transition: color 0.3s, background-color 0.3s; }
        a:hover { color: #ff6b8b; text-decoration: underline; }
        .container {
            width: 95%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            padding: 2rem 0;
        }
        @media (max-width: 992px) {
            .main-content { grid-template-columns: 1fr; }
        }
        .site-header {
            background: linear-gradient(135deg, #3a2c6e 0%, #5a4a9a 100%);
            color: white;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            color: #ffde59;
            font-size: 2.2rem;
            font-weight: 800;
            text-decoration: none;
            display: flex;
            align-items: center;
        }
        .logo i { margin-right: 10px; color: #ff9e6d; }
        .nav-desktop {
            display: flex;
            gap: 2rem;
        }
        @media (max-width: 768px) {
            .nav-desktop { display: none; }
        }
        .nav-desktop a {
            color: #fff;
            font-weight: 500;
            padding: 0.5rem 1rem;
            border-radius: 20px;
        }
        .nav-desktop a:hover {
            background-color: rgba(255, 255, 255, 0.15);
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
        }
        @media (max-width: 768px) {
            .hamburger { display: block; }
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background-color: #3a2c6e;
            padding: 1rem;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            z-index: 999;
            box-shadow: 0 5px 10px rgba(0,0,0,0.2);
        }
        .nav-mobile.active { display: flex; }
        .nav-mobile a {
            color: white;
            padding: 0.8rem;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        .nav-mobile a:last-child { border-bottom: none; }
        .breadcrumb {
            padding: 1rem 0;
            background-color: #f0edff;
            font-size: 0.9rem;
        }
        .breadcrumb a { color: #5a4a9a; }
        .breadcrumb span { color: #888; }
        .interactive-module {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            margin-bottom: 2.5rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            border: 1px solid #e6e1ff;
        }
        .interactive-module h3 { margin-top: 0; }
        .form-group { margin-bottom: 1.2rem; }
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: #3a2c6e;
        }
        .form-control {
            width: 100%;
            padding: 0.8rem 1rem;
            border: 1px solid #ccc;
            border-radius: 10px;
            font-size: 1rem;
            transition: border-color 0.3s;
        }
        .form-control:focus {
            outline: none;
            border-color: #5a4a9a;
            box-shadow: 0 0 0 2px rgba(90, 74, 154, 0.2);
        }
        .btn {
            background: linear-gradient(to right, #ff6b8b, #ff9e6d);
            color: white;
            border: none;
            padding: 0.8rem 2rem;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
            display: inline-block;
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 14px rgba(255, 107, 139, 0.3);
            text-decoration: none;
        }
        .stars {
            display: flex;
            gap: 5px;
            margin: 10px 0;
        }
        .star {
            color: #ddd;
            cursor: pointer;
            font-size: 1.5rem;
            transition: color 0.2s;
        }
        .star:hover,
        .star.active { color: #ffde59; }
        .article-content {
            background: white;
            padding: 2.5rem;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.04);
        }
        .featured-img {
            width: 100%;
            border-radius: 15px;
            margin: 2rem 0;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        .highlight-box {
            background: linear-gradient(to right, #f0edff, #e6f7ff);
            border-left: 5px solid #5a4a9a;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 10px 10px 0;
        }
        .insider-tip {
            background-color: #fff9e6;
            border: 1px dashed #ffde59;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 10px;
            position: relative;
        }
        .insider-tip:before {
            content: '💡 Insider Tip:';
            font-weight: bold;
            color: #3a2c6e;
            display: block;
            margin-bottom: 0.5rem;
        }
        .quote {
            font-style: italic;
            padding: 2rem;
            background-color: #f9f7ff;
            border-radius: 10px;
            margin: 2rem 0;
            position: relative;
        }
        .quote:before {
            content: '\201C';
            font-size: 4rem;
            color: #ff9e6d;
            position: absolute;
            top: -1rem;
            left: 1rem;
        }
        .sidebar {
            background: white;
            padding: 1.5rem;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.04);
            align-self: start;
            position: sticky;
            top: 140px;
        }
        .sidebar-widget {
            margin-bottom: 2.5rem;
        }
        .sidebar-widget h4 {
            color: #ff6b8b;
            border-bottom: 2px solid #ffde59;
            padding-bottom: 0.5rem;
            margin-bottom: 1rem;
        }
        .widget-list li {
            padding: 0.8rem 0;
            border-bottom: 1px solid #eee;
        }
        .widget-list li:last-child { border-bottom: none; }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 1.5rem;
            padding: 3rem 0;
            background-color: #3a2c6e;
            color: white;
        }
        @media (max-width: 768px) {
            .footer-links { grid-template-columns: repeat(2, 1fr); }
        }
        .web-link {
            background: rgba(255, 255, 255, 0.08);
            padding: 1.2rem;
            border-radius: 10px;
            transition: background-color 0.3s;
        }
        .web-link:hover { background-color: rgba(255, 255, 255, 0.15); }
        .web-link a {
            color: #ffde59;
            display: block;
            text-align: center;
            font-weight: 500;
        }
        .site-footer {
            background-color: #2a1c5e;
            color: #ccc;
            padding: 2rem 0;
            text-align: center;
        }
        .copyright {
            font-size: 0.9rem;
            margin-top: 1rem;
            color: #aaa;
        }
        @media (max-width: 576px) {
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            .article-content, .interactive-module { padding: 1.5rem; }
            .main-content { gap: 2rem; }
        }
