:root {
            --primary-color: #6a5acd; 
            --secondary-color: #ffb6c1; 
            --accent-color: #98fb98; 
            --dark-color: #2f4f4f; 
            --light-color: #f5f5f5; 
            --text-color: #333;
            --border-radius: 12px;
            --box-shadow: 0 4px 12px rgba(0,0,0,0.08);
            --transition: all 0.3s ease;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: var(--text-color);
            background-color: #fff;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            overflow-x: hidden;
        }
        a {
            color: var(--primary-color);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--secondary-color);
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: var(--border-radius);
            display: block;
        }
        .container {
            width: 100%;
            margin: 0 auto;
        }
        .site-header {
            background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
            color: white;
            padding: 1.5rem 0;
            margin-bottom: 2rem;
            border-radius: 0 0 var(--border-radius) var(--border-radius);
            box-shadow: var(--box-shadow);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .my-logo {
            font-family: 'Comic Sans MS', cursive, sans-serif;
            font-size: 2.5rem;
            font-weight: bold;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            color: white;
        }
        .my-logo:hover {
            color: var(--secondary-color);
            text-decoration: none;
            transform: scale(1.05);
        }
        .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 1rem;
            border-radius: var(--border-radius);
            background-color: rgba(255,255,255,0.1);
        }
        .main-nav a:hover,
        .main-nav a:focus {
            background-color: rgba(255,255,255,0.3);
            text-decoration: none;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .main-nav ul {
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: var(--primary-color);
                padding: 1rem;
                border-radius: 0 0 var(--border-radius) var(--border-radius);
                box-shadow: var(--box-shadow);
                display: none;
                z-index: 1000;
            }
            .main-nav.active ul {
                display: flex;
            }
            .main-nav a {
                display: block;
                text-align: center;
            }
        }
        .breadcrumb {
            margin: 1rem 0 2rem;
            font-size: 0.9rem;
            color: var(--dark-color);
        }
        .breadcrumb a {
            color: var(--dark-color);
        }
        .breadcrumb a:hover {
            color: var(--primary-color);
        }
        .content-area {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            margin-bottom: 3rem;
        }
        @media (max-width: 992px) {
            .content-area {
                grid-template-columns: 1fr;
            }
        }
        article {
            background-color: var(--light-color);
            padding: 2.5rem;
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
        }
        h1 {
            font-size: 2.8rem;
            color: var(--primary-color);
            margin-bottom: 1.5rem;
            line-height: 1.2;
            border-bottom: 3px solid var(--accent-color);
            padding-bottom: 0.5rem;
        }
        h2 {
            font-size: 2rem;
            color: var(--dark-color);
            margin: 2.5rem 0 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px dashed var(--secondary-color);
        }
        h3 {
            font-size: 1.6rem;
            color: var(--primary-color);
            margin: 2rem 0 1rem;
        }
        h4 {
            font-size: 1.3rem;
            color: var(--dark-color);
            margin: 1.5rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.2rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.3rem;
            font-weight: bold;
            color: var(--dark-color);
            background-color: rgba(255, 182, 193, 0.1);
            padding: 1rem;
            border-left: 5px solid var(--secondary-color);
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
            margin-bottom: 2rem;
        }
        .highlight {
            background-color: rgba(152, 251, 152, 0.2);
            padding: 1.5rem;
            border-radius: var(--border-radius);
            margin: 1.5rem 0;
            border-left: 5px solid var(--accent-color);
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .inline-link {
            font-weight: 600;
            border-bottom: 1px dotted var(--primary-color);
        }
        .featured-img {
            margin: 2rem auto;
            width: 80%;
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
        }
        .caption {
            text-align: center;
            font-style: italic;
            margin-top: 0.5rem;
            color: #666;
        }
        .last-updated {
            text-align: right;
            font-size: 0.9rem;
            color: #777;
            margin-top: 2rem;
            padding-top: 1rem;
            border-top: 1px solid #ddd;
        }
        .sidebar {
            background-color: var(--light-color);
            padding: 1.5rem;
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
            align-self: start;
        }
        .widget {
            margin-bottom: 2rem;
        }
        .widget h3 {
            font-size: 1.4rem;
            color: var(--dark-color);
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid #ccc;
        }
        .search-form, .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
        }
        input, textarea, select {
            padding: 0.8rem;
            border: 1px solid #ccc;
            border-radius: var(--border-radius);
            font-family: inherit;
            font-size: 1rem;
            width: 100%;
        }
        button, .btn {
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: var(--border-radius);
            cursor: pointer;
            font-weight: bold;
            transition: var(--transition);
            text-align: center;
        }
        button:hover, .btn:hover {
            background-color: var(--secondary-color);
            color: var(--dark-color);
            text-decoration: none;
        }
        .stars {
            display: flex;
            justify-content: space-around;
            font-size: 1.8rem;
            color: #ffd700;
            cursor: pointer;
        }
        .stars span:hover,
        .stars span:hover ~ span {
            color: #ffa500;
        }
        .site-footer {
            background-color: var(--dark-color);
            color: white;
            padding: 2.5rem 0;
            margin-top: 3rem;
            border-radius: var(--border-radius) var(--border-radius) 0 0;
            text-align: center;
        }
        .footer-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1.5rem;
        }
        friend-link {
            display: inline-block;
            margin: 0 0.5rem;
            padding: 0.5rem 1rem;
            background-color: rgba(255,255,255,0.1);
            border-radius: var(--border-radius);
        }
        friend-link a {
            color: var(--accent-color);
        }
        .copyright {
            font-size: 0.9rem;
            color: #aaa;
            margin-top: 1rem;
        }
