        * {
            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: linear-gradient(135deg, #f5f7fa 0%, #e4edf5 100%);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: #4a6ee0;
            text-decoration: none;
            transition: color 0.3s ease, background-color 0.3s ease;
        }
        a:hover {
            color: #ff6b6b;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        ul, ol {
            padding-left: 1.5em;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .text-center { text-align: center; }
        .bold { font-weight: 700; }
        .highlight {
            background: linear-gradient(120deg, #a8edea 0%, #fed6e3 100%);
            padding: 0.2em 0.4em;
            border-radius: 4px;
        }
        .emoji { font-size: 1.2em; }
        .site-header {
            background: #2d3436;
            color: #fff;
            padding: 1rem 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-family: 'Comic Sans MS', cursive, sans-serif;
            font-size: 2.2rem;
            font-weight: 900;
            background: linear-gradient(90deg, #ff6b6b, #4ecdc4);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }
        .my-logo a {
            background: none;
            -webkit-text-fill-color: inherit;
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            color: #dfe6e9;
            font-weight: 600;
            padding: 0.5rem 0.8rem;
            border-radius: 5px;
        }
        .main-nav a:hover {
            background-color: #4a6ee0;
            color: white;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .breadcrumb {
            background: #636e72;
            color: #dfe6e9;
            padding: 0.8rem 0;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: #a8edea;
        }
        .breadcrumb span {
            margin: 0 0.5rem;
        }
        .search-bar {
            background: #4a6ee0;
            padding: 1.5rem 0;
            margin-bottom: 2rem;
        }
        .search-form {
            max-width: 600px;
            margin: 0 auto;
            display: flex;
            border-radius: 50px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .search-input {
            flex: 1;
            padding: 1rem 1.5rem;
            border: none;
            font-size: 1rem;
        }
        .search-btn {
            background: #ff6b6b;
            color: white;
            border: none;
            padding: 0 1.8rem;
            cursor: pointer;
            font-size: 1.2rem;
            transition: background 0.3s;
        }
        .search-btn:hover {
            background: #ff5252;
        }
        .main-content {
            flex: 1;
            padding: 2rem 0;
        }
        .article-container {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }
        @media (max-width: 992px) {
            .article-container {
                grid-template-columns: 1fr;
            }
        }
        .article-body {
            background: white;
            border-radius: 15px;
            padding: 2.5rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
        }
        .article-meta {
            display: flex;
            justify-content: space-between;
            color: #636e72;
            font-size: 0.9rem;
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid #eee;
        }
        h1 {
            font-size: 2.8rem;
            color: #2d3436;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            border-left: 6px solid #4a6ee0;
            padding-left: 1rem;
        }
        h2 {
            font-size: 2rem;
            color: #4a6ee0;
            margin: 2.5rem 0 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px dashed #a8edea;
        }
        h3 {
            font-size: 1.5rem;
            color: #ff6b6b;
            margin: 2rem 0 1rem;
        }
        h4 {
            font-size: 1.2rem;
            color: #00b894;
            margin: 1.5rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.3rem;
            color: #555;
            font-weight: 300;
            margin-bottom: 2rem;
        }
        .article-img {
            margin: 2rem auto;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
            max-width: 800px;
        }
        .article-img figcaption {
            text-align: center;
            font-style: italic;
            color: #636e72;
            padding: 0.8rem;
            background: #f8f9fa;
        }
        .sidebar {
            background: white;
            border-radius: 15px;
            padding: 1.5rem;
            box-shadow: 0 8px 20px rgba(0,0,0,0.06);
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .sidebar-widget {
            margin-bottom: 2rem;
        }
        .sidebar-title {
            font-size: 1.3rem;
            color: #2d3436;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #4a6ee0;
        }
        .widget-links {
            list-style: none;
            padding-left: 0;
        }
        .widget-links li {
            margin-bottom: 0.8rem;
        }
        .widget-links a {
            display: block;
            padding: 0.7rem 1rem;
            background: #f8f9fa;
            border-radius: 8px;
            border-left: 4px solid #4ecdc4;
        }
        .widget-links a:hover {
            background: #e3f2fd;
            border-left-color: #ff6b6b;
        }
        .user-interaction {
            background: #f8f9fa;
            border-radius: 15px;
            padding: 2rem;
            margin: 3rem 0;
            border: 1px solid #e9ecef;
        }
        .interaction-title {
            text-align: center;
            margin-bottom: 2rem;
            color: #2d3436;
        }
        .interaction-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }
        .interaction-form {
            background: white;
            padding: 1.5rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .form-group {
            margin-bottom: 1.2rem;
        }
        .form-label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }
        .form-input, .form-textarea {
            width: 100%;
            padding: 0.8rem 1rem;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-family: inherit;
            font-size: 1rem;
            transition: border 0.3s;
        }
        .form-input:focus, .form-textarea:focus {
            border-color: #4a6ee0;
            outline: none;
        }
        .form-textarea {
            min-height: 120px;
            resize: vertical;
        }
        .form-submit {
            background: linear-gradient(90deg, #4a6ee0, #6c5ce7);
            color: white;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 8px;
            cursor: pointer;
            font-weight: 600;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .form-submit:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 14px rgba(74, 110, 224, 0.4);
        }
        .star-rating {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin: 1rem 0;
        }
        .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;
        }
        .site-footer {
            background: #2d3436;
            color: #dfe6e9;
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-widget h3 {
            color: #a8edea;
            margin-bottom: 1.5rem;
            font-size: 1.4rem;
        }
        friend-link {
            display: block;
            padding: 0.5rem 0;
            border-bottom: 1px dashed #555;
        }
        friend-link a:hover {
            color: #ff6b6b;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #444;
            font-size: 0.9rem;
            color: #aaa;
        }
        @media (max-width: 768px) {
            .header-container {
                flex-wrap: wrap;
            }
            .main-nav {
                display: none;
                width: 100%;
                order: 3;
                margin-top: 1rem;
            }
            .main-nav.active {
                display: block;
            }
            .main-nav ul {
                flex-direction: column;
                gap: 0.5rem;
            }
            .hamburger {
                display: block;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            .article-body {
                padding: 1.5rem;
            }
        }
