        * { 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(135deg, #f5f7ff 0%, #fdf2ff 100%);
            max-width: 120rem;
            margin: 0 auto;
            padding: 0 1rem;
        }
        a { color: #7c4dff; text-decoration: none; transition: color 0.3s ease; }
        a:hover { color: #5e35b1; text-decoration: underline; }
        img { max-width: 100%; height: auto; display: block; }
        .visually-hidden {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }
        .site-header {
            background: linear-gradient(90deg, #6a11cb 0%, #2575fc 100%);
            color: white;
            padding: 1rem 0;
            border-bottom: 5px solid #ff9a00;
            box-shadow: 0 4px 12px rgba(106, 17, 203, 0.2);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            padding: 0 1.5rem;
        }
        .my-logo {
            font-family: 'Arial Rounded MT Bold', sans-serif;
            font-size: 2.2rem;
            font-weight: 800;
            background: linear-gradient(to right, #ffeb3b, #ff9800);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }
        .my-logo a { background: transparent; }
        .nav-primary ul {
            display: flex;
            list-style: none;
            gap: 1.8rem;
        }
        .nav-primary a {
            color: white;
            font-weight: 600;
            padding: 0.5rem 0.8rem;
            border-radius: 20px;
            transition: all 0.3s ease;
        }
        .nav-primary a:hover,
        .nav-primary a:focus {
            background-color: rgba(255, 255, 255, 0.25);
            text-decoration: none;
            transform: translateY(-2px);
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.5rem;
        }
        .breadcrumb {
            padding: 1rem 1.5rem;
            background-color: #e8e2ff;
            font-size: 0.9rem;
            border-bottom: 1px solid #d5c8ff;
        }
        .breadcrumb a { color: #555; }
        .breadcrumb a:hover { color: #7c4dff; }
        .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;
            border-radius: 20px;
            padding: 2.5rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            border: 1px solid #eae0ff;
        }
        .sidebar {
            background: white;
            border-radius: 20px;
            padding: 1.8rem;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
            border: 1px solid #eae0ff;
            align-self: start;
            position: sticky;
            top: 140px;
        }
        h1 {
            font-size: 2.8rem;
            color: #3d2a8a;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            border-bottom: 3px solid #ff9a00;
            padding-bottom: 0.8rem;
        }
        h2 {
            font-size: 2rem;
            color: #5e35b1;
            margin: 2.5rem 0 1.2rem;
            padding-left: 0.5rem;
            border-left: 5px solid #7c4dff;
        }
        h3 {
            font-size: 1.6rem;
            color: #7c4dff;
            margin: 2rem 0 1rem;
        }
        h4 {
            font-size: 1.3rem;
            color: #9c7aff;
            margin: 1.5rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
            hyphens: auto;
        }
        .lead {
            font-size: 1.3rem;
            color: #555;
            font-weight: 500;
            background-color: #f3eeff;
            padding: 1.5rem;
            border-radius: 10px;
            border-left: 4px solid #7c4dff;
            margin-bottom: 2rem;
        }
        .highlight {
            background: linear-gradient(120deg, #e1f5fe 0%, #fce4ec 100%);
            padding: 2rem;
            border-radius: 15px;
            margin: 2rem 0;
            border: 1px dashed #7c4dff;
        }
        .info-box {
            background-color: #e8f5e9;
            border-left: 5px solid #4caf50;
            padding: 1.2rem;
            margin: 1.5rem 0;
            border-radius: 0 8px 8px 0;
        }
        .emphasized {
            font-weight: 700;
            color: #d81b60;
        }
        .quote {
            font-style: italic;
            color: #666;
            border-left: 4px solid #ff9a00;
            padding-left: 1.5rem;
            margin: 1.8rem 0;
        }
        .last-updated {
            text-align: right;
            font-size: 0.9rem;
            color: #888;
            margin-top: 3rem;
            padding-top: 1rem;
            border-top: 1px solid #eee;
        }
        .search-widget, .comment-widget, .rating-widget {
            margin-bottom: 2rem;
            padding: 1.5rem;
            background: #f8f5ff;
            border-radius: 15px;
            border: 1px solid #e0d6ff;
        }
        .widget-title {
            font-size: 1.3rem;
            color: #5e35b1;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.7rem;
        }
        .widget-title i { color: #ff9a00; }
        form input, form textarea, form select {
            width: 100%;
            padding: 0.8rem 1rem;
            margin-bottom: 1rem;
            border: 1px solid #ccc;
            border-radius: 10px;
            font-family: inherit;
            font-size: 1rem;
            transition: border 0.3s ease;
        }
        form input:focus, form textarea:focus {
            outline: none;
            border-color: #7c4dff;
            box-shadow: 0 0 0 3px rgba(124, 77, 255, 0.1);
        }
        .btn {
            background: linear-gradient(to right, #7c4dff, #5e35b1);
            color: white;
            border: none;
            padding: 0.9rem 1.8rem;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }
        .btn:hover {
            background: linear-gradient(to right, #6a3dcc, #4a2a8c);
            transform: translateY(-3px);
            box-shadow: 0 7px 14px rgba(124, 77, 255, 0.3);
            text-decoration: none;
            color: white;
        }
        .stars {
            display: flex;
            gap: 0.5rem;
            margin-bottom: 1rem;
        }
        .star {
            font-size: 1.8rem;
            color: #ddd;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star:hover,
        .star.active { color: #ffc107; }
        .featured-image {
            margin: 2.5rem auto;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 15px 25px rgba(0,0,0,0.1);
            border: 5px solid white;
            max-width: 800px;
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: #777;
            margin-top: 0.5rem;
            font-size: 0.95rem;
        }
        .site-footer {
            background: linear-gradient(90deg, #2c3e50 0%, #4a6491 100%);
            color: #ecf0f1;
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
            border-top: 5px solid #ff9a00;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            padding: 0 1.5rem;
            margin-bottom: 2rem;
        }
        .footer-section h4 {
            color: #ff9a00;
            margin-bottom: 1.2rem;
            font-size: 1.3rem;
        }
        .friend-links {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin-top: 1rem;
        }
        friend-link {
            display: inline-block;
            background: rgba(255, 255, 255, 0.1);
            padding: 0.6rem 1.2rem;
            border-radius: 20px;
            font-size: 0.9rem;
            transition: background 0.3s ease;
        }
        friend-link:hover {
            background: rgba(255, 255, 255, 0.2);
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            color: #bdc3c7;
        }
        @media (max-width: 768px) {
            .header-container { flex-direction: column; align-items: flex-start; }
            .nav-primary { width: 100%; margin-top: 1rem; display: none; }
            .nav-primary.active { display: block; }
            .nav-primary ul { flex-direction: column; gap: 0.5rem; }
            .nav-primary a { display: block; padding: 0.8rem; border-radius: 10px; }
            .hamburger { display: block; }
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            .article-content, .sidebar { padding: 1.5rem; }
        }
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .article-content, .sidebar {
            animation: fadeInUp 0.6s ease-out;
        }
