* { margin: 0; padding: 0; box-sizing: border-box; }
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
            line-height: 1.8;
            color: #333;
            background-color: #f9f7ff;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        a { color: #8a4baf; text-decoration: none; transition: color 0.3s; }
        a:hover { color: #6a1b9a; text-decoration: underline; }
        img { max-width: 100%; height: auto; display: block; }
        .site-header {
            background: linear-gradient(135deg, #a4508b 0%, #5a0b4d 100%);
            color: white;
            padding: 1.5rem 0;
            border-radius: 0 0 15px 15px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            margin-bottom: 2rem;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            padding: 0 1rem;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 800;
            background: linear-gradient(to right, #ffccff, #ffffff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }
        .my-logo:hover { text-decoration: none; }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 1.5rem;
            flex-wrap: wrap;
        }
        .main-nav a {
            color: white;
            font-weight: 600;
            padding: 0.5rem 0.8rem;
            border-radius: 8px;
        }
        .main-nav a:hover {
            background-color: rgba(255,255,255,0.15);
            text-decoration: none;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
        }
        .breadcrumb {
            padding: 1rem;
            background-color: #e9e1f5;
            border-radius: 10px;
            margin: 1rem 0;
            font-size: 0.9rem;
        }
        .breadcrumb a { color: #5a0b4d; }
        .content-area {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
        }
        @media (max-width: 992px) {
            .content-area { grid-template-columns: 1fr; }
        }
        article {
            background: white;
            padding: 2.5rem;
            border-radius: 15px;
            box-shadow: 0 5px 25px rgba(0,0,0,0.05);
        }
        h1 {
            font-size: 2.8rem;
            color: #5a0b4d;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }
        h2 {
            font-size: 2rem;
            color: #8a4baf;
            margin: 2.5rem 0 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px dashed #e0c8f0;
        }
        h3 {
            font-size: 1.6rem;
            color: #a4508b;
            margin: 2rem 0 1rem;
        }
        h4 {
            font-size: 1.3rem;
            color: #b86b9f;
            margin: 1.5rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.3rem;
            color: #555;
            font-weight: 500;
            padding: 1rem;
            background: #f3edfa;
            border-left: 5px solid #8a4baf;
            border-radius: 0 10px 10px 0;
            margin-bottom: 2.5rem;
        }
        .highlight {
            background: linear-gradient(120deg, #ffccff80 0%, #ffccff80 100%);
            padding: 0.2rem 0.5rem;
            border-radius: 4px;
            font-weight: 600;
        }
        .info-box {
            background: #e8f4fd;
            border-left: 5px solid #2196f3;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 10px 10px 0;
        }
        .image-container {
            margin: 2.5rem auto;
            text-align: center;
            max-width: 800px;
        }
        .image-container img {
            border-radius: 12px;
            box-shadow: 0 8px 20px rgba(138, 75, 175, 0.25);
            border: 1px solid #e0c8f0;
        }
        .image-caption {
            font-style: italic;
            color: #666;
            margin-top: 0.8rem;
            font-size: 0.95rem;
        }
        .related-links {
            background: #f8f5ff;
            padding: 1.5rem;
            border-radius: 12px;
            margin: 2rem 0;
        }
        .related-links ul {
            columns: 2;
            list-style: inside square;
            color: #8a4baf;
        }
        .related-links li { margin-bottom: 0.7rem; }
        aside {
            background: white;
            padding: 1.8rem;
            border-radius: 15px;
            box-shadow: 0 5px 25px rgba(0,0,0,0.05);
            align-self: start;
            position: sticky;
            top: 20px;
        }
        .widget {
            margin-bottom: 2.5rem;
        }
        .widget h3 {
            font-size: 1.4rem;
            color: #5a0b4d;
            margin-bottom: 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid #e0c8f0;
        }
        .search-form {
            display: flex;
        }
        .search-form input {
            flex-grow: 1;
            padding: 0.9rem;
            border: 2px solid #8a4baf;
            border-radius: 8px 0 0 8px;
            font-size: 1rem;
        }
        .search-form button {
            background: #8a4baf;
            color: white;
            border: none;
            padding: 0 1.5rem;
            border-radius: 0 8px 8px 0;
            cursor: pointer;
            font-size: 1.1rem;
            transition: background 0.3s;
        }
        .search-form button:hover { background: #6a1b9a; }
        .rating-widget form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            font-size: 1.8rem;
            color: #ffcc00;
            margin: 0.5rem 0;
        }
        .stars i { cursor: pointer; }
        .comment-form textarea {
            width: 100%;
            padding: 1rem;
            border: 2px solid #ccc;
            border-radius: 8px;
            font-family: inherit;
            font-size: 1rem;
            min-height: 120px;
            resize: vertical;
            margin-bottom: 1rem;
        }
        .btn {
            background: linear-gradient(to right, #8a4baf, #6a1b9a);
            color: white;
            border: none;
            padding: 0.9rem 1.8rem;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            display: inline-block;
            text-align: center;
        }
        .btn:hover {
            background: linear-gradient(to right, #6a1b9a, #5a0b4d);
            text-decoration: none;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(138, 75, 175, 0.4);
        }
        footer {
            background: linear-gradient(135deg, #2d0b28 0%, #5a0b4d 100%);
            color: #e0c8f0;
            padding: 3rem 0 1.5rem;
            border-radius: 15px 15px 0 0;
            margin-top: 3rem;
            text-align: center;
        }
        friend-link {
            display: block;
            margin: 1.5rem 0;
            font-size: 1.1rem;
        }
        friend-link a {
            color: #ffccff;
            margin: 0 0.8rem;
        }
        .copyright {
            margin-top: 2rem;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 0.9rem;
            color: #c9a8d9;
        }
        @media (max-width: 768px) {
            .header-container { flex-direction: column; align-items: flex-start; }
            .main-nav { width: 100%; margin-top: 1rem; }
            .main-nav ul {
                flex-direction: column;
                gap: 0.5rem;
                display: none;
            }
            .main-nav.active ul { display: flex; }
            .hamburger { display: block; align-self: flex-end; margin-top: -3rem; }
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            article, aside { padding: 1.5rem; }
            .related-links ul { columns: 1; }
        }
