        * {
            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, #f9f7ff, #e8e3ff);
        }
        a {
            text-decoration: none;
            color: #5d3fd3;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #ff6b8b;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 10px;
        }
        ul, ol {
            padding-left: 1.5em;
            margin: 1em 0;
        }
        h1, h2, h3, h4 {
            color: #4a2bb8;
            font-weight: 700;
            margin-top: 1.5em;
            margin-bottom: 0.7em;
            line-height: 1.3;
        }
        h1 {
            font-size: clamp(2.2rem, 5vw, 3.5rem);
            text-align: center;
            background: linear-gradient(90deg, #5d3fd3, #ff6b8b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-top: 0.5em;
        }
        h2 {
            font-size: clamp(1.8rem, 4vw, 2.5rem);
            border-left: 5px solid #ff6b8b;
            padding-left: 15px;
            margin-top: 2em;
        }
        h3 {
            font-size: clamp(1.4rem, 3vw, 1.9rem);
            color: #6c4bd4;
        }
        h4 {
            font-size: 1.3rem;
            color: #8a7ac1;
        }
        p {
            margin-bottom: 1.2em;
            text-align: justify;
            font-size: clamp(1rem, 2.5vw, 1.1rem);
        }
        strong {
            color: #5d3fd3;
            font-weight: 700;
        }
        .lead {
            font-size: 1.3rem;
            font-weight: 500;
            color: #555;
            text-align: center;
            max-width: 900px;
            margin: 1em auto 2em;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background-color: #fff;
            box-shadow: 0 4px 20px rgba(93, 63, 211, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 900;
            background: linear-gradient(90deg, #5d3fd3, #ff6b8b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .my-logo i {
            font-size: 2rem;
            -webkit-text-fill-color: #5d3fd3;
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 25px;
        }
        .main-nav a {
            font-weight: 600;
            padding: 8px 0;
            position: relative;
        }
        .main-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: #ff6b8b;
            transition: width 0.3s ease;
        }
        .main-nav a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: #5d3fd3;
            cursor: pointer;
        }
        .breadcrumb {
            padding: 15px 20px;
            background-color: #f0edff;
            font-size: 0.95rem;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '›';
            margin: 0 10px;
            color: #8a7ac1;
        }
        .breadcrumb a {
            color: #6c4bd4;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 40px 20px;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        article {
            background: #fff;
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        }
        .sidebar {
            background: #fff;
            padding: 30px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .widget {
            margin-bottom: 30px;
        }
        .widget h3 {
            font-size: 1.4rem;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px dashed #e8e3ff;
        }
        .search-form {
            display: flex;
        }
        .search-form input {
            flex-grow: 1;
            padding: 12px 15px;
            border: 2px solid #d8ceff;
            border-radius: 10px 0 0 10px;
            font-size: 1rem;
            outline: none;
            transition: border-color 0.3s;
        }
        .search-form input:focus {
            border-color: #5d3fd3;
        }
        .search-form button {
            background: linear-gradient(90deg, #5d3fd3, #8a6bff);
            color: white;
            border: none;
            padding: 0 20px;
            border-radius: 0 10px 10px 0;
            cursor: pointer;
            font-size: 1.1rem;
            transition: opacity 0.3s;
        }
        .search-form button:hover {
            opacity: 0.9;
        }
        .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .form-group label {
            display: block;
            margin-bottom: 5px;
            font-weight: 600;
            color: #5d3fd3;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 12px;
            border: 2px solid #d8ceff;
            border-radius: 10px;
            font-size: 1rem;
            transition: border-color 0.3s;
        }
        .form-group textarea {
            min-height: 120px;
            resize: vertical;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            border-color: #5d3fd3;
            outline: none;
        }
        .submit-btn {
            background: linear-gradient(90deg, #ff6b8b, #ff8e53);
            color: white;
            border: none;
            padding: 14px;
            border-radius: 10px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(255, 107, 139, 0.3);
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 5px;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 2rem;
            color: #ddd;
            cursor: pointer;
            transition: color 0.3s;
        }
        .star-rating input:checked ~ label,
        .star-rating label:hover,
        .star-rating label:hover ~ label {
            color: #ffc107;
        }
        .featured-image {
            margin: 30px 0;
            text-align: center;
        }
        .featured-image figcaption {
            font-style: italic;
            color: #777;
            margin-top: 10px;
            font-size: 0.95rem;
        }
        .content-links {
            display: inline-flex;
            flex-wrap: wrap;
            gap: 15px;
            margin: 20px 0;
            padding: 15px;
            background: #f9f7ff;
            border-radius: 10px;
        }
        .content-links a {
            background: #fff;
            padding: 8px 15px;
            border-radius: 30px;
            box-shadow: 0 3px 10px rgba(93, 63, 211, 0.1);
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .content-links a:hover {
            background: #5d3fd3;
            color: white;
            transform: translateY(-2px);
        }
        .emoji {
            font-size: 1.2em;
            margin: 0 5px;
        }
        .highlight-box {
            background: linear-gradient(135deg, #e8e3ff, #fff0f5);
            border-left: 5px solid #5d3fd3;
            padding: 25px;
            margin: 30px 0;
            border-radius: 0 15px 15px 0;
        }
        .site-footer {
            background: #4a2bb8;
            color: #fff;
            padding: 50px 20px 20px;
            margin-top: 60px;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
        }
        .footer-widget h3 {
            color: #ffcc00;
            font-size: 1.5rem;
            margin-bottom: 25px;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 12px;
        }
        .footer-links a {
            color: #d8ceff;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .footer-links a:hover {
            color: #ffcc00;
        }
        friend-link {
            display: block;
            background: rgba(255, 255, 255, 0.1);
            padding: 15px;
            border-radius: 10px;
            margin: 10px 0;
            color: #ffcc00;
            font-weight: 600;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            margin-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            font-size: 0.9rem;
            color: #d8ceff;
        }
        @media (max-width: 768px) {
            .header-container {
                flex-wrap: wrap;
            }
            .main-nav {
                display: none;
                width: 100%;
                order: 3;
                margin-top: 20px;
            }
            .main-nav.active {
                display: block;
            }
            .main-nav ul {
                flex-direction: column;
                gap: 10px;
            }
            .hamburger {
                display: block;
            }
            .main-content {
                padding: 20px 15px;
            }
            article, .sidebar {
                padding: 25px;
            }
            .sidebar {
                position: static;
            }
            .footer-container {
                grid-template-columns: 1fr;
                text-align: center;
            }
        }
