        * {
            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%, #fef9ff 100%);
            min-height: 100vh;
        }
        a {
            text-decoration: none;
            color: #e84393;
            transition: color 0.3s ease, transform 0.2s ease;
        }
        a:hover {
            color: #fd79a8;
            transform: translateY(-2px);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .site-header {
            background: linear-gradient(90deg, #6c5ce7, #a29bfe);
            color: white;
            padding: 1.5rem 2rem;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(108, 92, 231, 0.2);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
        }
        .my-logo {
            font-family: 'Comic Sans MS', cursive, sans-serif;
            font-size: 2.2rem;
            font-weight: 900;
            color: #ffeaa7;
            text-shadow: 2px 2px 0 #e84393, 4px 4px 0 rgba(0,0,0,0.1);
            letter-spacing: 1px;
        }
        .my-logo:hover {
            color: #fff;
            text-shadow: 2px 2px 0 #fd79a8, 4px 4px 0 rgba(0,0,0,0.2);
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            color: white;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 0.5rem 1rem;
            border-radius: 30px;
        }
        .main-nav a:hover {
            background: rgba(255, 255, 255, 0.15);
            transform: translateY(-3px);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #ffeaa7;
        }
        .breadcrumb {
            background: #dfe6e9;
            padding: 1rem 2rem;
            font-size: 0.95rem;
            border-bottom: 1px solid #b2bec3;
        }
        .breadcrumb a {
            color: #6c5ce7;
        }
        .breadcrumb span {
            color: #636e72;
        }
        .container {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            max-width: 1400px;
            margin: 2rem auto;
            padding: 0 2rem;
        }
        main {
            background: white;
            padding: 3rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
        }
        aside {
            background: white;
            padding: 2rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            align-self: start;
            position: sticky;
            top: 120px;
        }
        h1, h2, h3, h4 {
            color: #6c5ce7;
            margin-bottom: 1.2rem;
            line-height: 1.3;
        }
        h1 {
            font-size: 2.8rem;
            color: #e84393;
            border-bottom: 4px solid #ffeaa7;
            padding-bottom: 1rem;
            margin-bottom: 2rem;
        }
        h2 {
            font-size: 2.2rem;
            margin-top: 3rem;
            padding-left: 1rem;
            border-left: 6px solid #a29bfe;
        }
        h3 {
            font-size: 1.8rem;
            margin-top: 2.5rem;
            color: #fd79a8;
        }
        h4 {
            font-size: 1.5rem;
            margin-top: 2rem;
            color: #636e72;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.15rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.4rem;
            color: #6c5ce7;
            font-weight: 600;
            background: #f8f9fa;
            padding: 1.5rem;
            border-radius: 10px;
            border-left: 5px solid #a29bfe;
            margin-bottom: 2.5rem;
        }
        strong {
            color: #e84393;
            font-weight: 700;
        }
        em {
            color: #00b894;
            font-style: italic;
        }
        .search-box, .comment-form, .rating-form {
            background: #f8f9fa;
            padding: 2rem;
            border-radius: 15px;
            margin: 2.5rem 0;
            border: 2px dashed #a29bfe;
        }
        .search-box h3, .comment-form h3, .rating-form h3 {
            margin-top: 0;
        }
        input, textarea, select {
            width: 100%;
            padding: 1rem;
            margin: 0.8rem 0 1.5rem;
            border: 2px solid #ddd;
            border-radius: 10px;
            font-size: 1rem;
            transition: border 0.3s;
        }
        input:focus, textarea:focus, select:focus {
            border-color: #6c5ce7;
            outline: none;
            box-shadow: 0 0 0 3px rgba(108, 92, 231, 0.1);
        }
        button {
            background: linear-gradient(90deg, #e84393, #fd79a8);
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 30px;
            font-weight: 700;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.7rem;
        }
        button:hover {
            background: linear-gradient(90deg, #fd79a8, #e84393);
            transform: translateY(-3px);
            box-shadow: 0 7px 14px rgba(232, 67, 147, 0.3);
        }
        .article-img {
            margin: 2.5rem auto;
            text-align: center;
        }
        .img-caption {
            font-style: italic;
            color: #636e72;
            margin-top: 0.8rem;
            font-size: 0.95rem;
        }
        .highlight-box {
            background: linear-gradient(135deg, #ffeaa7, #fab1a0);
            padding: 2rem;
            border-radius: 15px;
            margin: 2rem 0;
            border-left: 6px solid #e84393;
        }
        .tips-list {
            list-style: none;
            margin: 2rem 0;
        }
        .tips-list li {
            padding: 1rem;
            margin-bottom: 1rem;
            background: #f8f9fa;
            border-radius: 10px;
            border-left: 5px solid #00b894;
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        .tips-list i {
            color: #00b894;
            font-size: 1.3rem;
        }
        .inline-links {
            display: inline-flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin: 1.5rem 0;
        }
        .inline-links a {
            background: #e9f6ff;
            padding: 0.6rem 1.2rem;
            border-radius: 30px;
            font-weight: 600;
            border: 2px solid #a29bfe;
        }
        .inline-links a:hover {
            background: #6c5ce7;
            color: white;
        }
        .site-footer {
            background: #2d3436;
            color: #dfe6e9;
            padding: 3rem 2rem 1.5rem;
            margin-top: 4rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            max-width: 1400px;
            margin: 0 auto;
        }
        friend-link {
            display: block;
            background: #444;
            padding: 1rem;
            margin: 0.5rem 0;
            border-radius: 8px;
            transition: background 0.3s;
        }
        friend-link:hover {
            background: #555;
        }
        friend-link a {
            color: #74b9ff;
        }
        .copyright {
            text-align: center;
            margin-top: 3rem;
            padding-top: 1.5rem;
            border-top: 1px solid #555;
            color: #b2bec3;
            font-size: 0.9rem;
        }
        .last-updated {
            text-align: right;
            font-size: 0.9rem;
            color: #636e72;
            margin-bottom: 1.5rem;
            font-style: italic;
        }
        @media (max-width: 1024px) {
            .container {
                grid-template-columns: 1fr;
            }
            aside {
                position: static;
            }
        }
        @media (max-width: 768px) {
            .header-container {
                flex-wrap: wrap;
            }
            .hamburger {
                display: block;
            }
            .main-nav ul {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #6c5ce7;
                position: absolute;
                top: 100%;
                left: 0;
                padding: 1rem;
                border-radius: 0 0 15px 15px;
            }
            .main-nav.active ul {
                display: flex;
            }
            .main-nav a {
                display: block;
                padding: 1rem;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            main, aside {
                padding: 1.5rem;
            }
            .container {
                padding: 0 1rem;
            }
        }
        @media print {
            .site-header, .breadcrumb, aside, .search-box, .comment-form, .rating-form, .site-footer {
                display: none;
            }
            body {
                background: white;
                color: black;
            }
            main {
                box-shadow: none;
                padding: 0;
            }
            a {
                color: black;
                text-decoration: underline;
            }
        }
