        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background: linear-gradient(135deg, #f5f7fa 0%, #f0e6ff 100%);
            color: #333;
            line-height: 1.8;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: #9c4dff;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        a:hover {
            color: #7a2eff;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 15px 0;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 800;
            background: linear-gradient(90deg, #ff6ec7, #9c4dff);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo i {
            font-size: 2.5rem;
            color: #9c4dff;
        }
        .nav-desktop {
            display: flex;
            gap: 30px;
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
        }
        .nav-desktop a {
            font-weight: 600;
            font-size: 1.05rem;
            padding: 8px 0;
            position: relative;
        }
        .nav-desktop a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: #9c4dff;
            transition: width 0.3s ease;
        }
        .nav-desktop a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            font-size: 1.8rem;
            color: #9c4dff;
            cursor: pointer;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background: white;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            padding: 20px;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
            border-top: 2px solid #f0e6ff;
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            padding: 15px 0;
            border-bottom: 1px solid #eee;
            font-weight: 600;
        }
        .nav-mobile a:last-child {
            border-bottom: none;
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.9rem;
            color: #666;
            background: #f9f5ff;
            border-bottom: 1px solid #e9e1ff;
        }
        .breadcrumb a {
            color: #666;
        }
        .breadcrumb a:hover {
            color: #9c4dff;
        }
        main {
            flex: 1;
            padding: 40px 0;
        }
        .article-container {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        @media (max-width: 992px) {
            .article-container {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background: white;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        }
        .article-header {
            margin-bottom: 40px;
            padding-bottom: 25px;
            border-bottom: 2px solid #f0e6ff;
        }
        .article-header h1 {
            font-size: 2.8rem;
            color: #2d1b69;
            margin-bottom: 15px;
            line-height: 1.2;
        }
        .meta-info {
            display: flex;
            gap: 20px;
            color: #777;
            font-size: 0.95rem;
            flex-wrap: wrap;
        }
        .meta-info span i {
            margin-right: 5px;
            color: #9c4dff;
        }
        .hero-image {
            margin: 30px 0;
            position: relative;
            overflow: hidden;
        }
        .hero-image img {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .hero-image:hover img {
            transform: scale(1.02);
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: #666;
            margin-top: 10px;
            font-size: 0.9rem;
        }
        h1, h2, h3, h4 {
            color: #2d1b69;
            margin-top: 2rem;
            margin-bottom: 1rem;
            line-height: 1.3;
        }
        h1 {
            font-size: 2.8rem;
        }
        h2 {
            font-size: 2.2rem;
            padding-bottom: 10px;
            border-bottom: 2px dashed #e9e1ff;
        }
        h3 {
            font-size: 1.8rem;
            color: #4a2fb8;
        }
        h4 {
            font-size: 1.4rem;
            color: #6a4bdf;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            color: #444;
        }
        .lead {
            font-size: 1.3rem;
            font-weight: 500;
            color: #5a3fc0;
            background: #f9f5ff;
            padding: 20px;
            border-radius: 12px;
            border-left: 5px solid #9c4dff;
        }
        .highlight {
            background: linear-gradient(120deg, #ffecfb 0%, #e6f7ff 100%);
            padding: 25px;
            border-radius: 15px;
            margin: 25px 0;
            border: 1px solid #e0d2ff;
        }
        .highlight strong {
            color: #9c4dff;
        }
        .info-box {
            background: #eef7ff;
            border-left: 5px solid #4a9eff;
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 12px 12px 0;
        }
        .warning-box {
            background: #fff4e6;
            border-left: 5px solid #ffa726;
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 12px 12px 0;
        }
        ul, ol {
            margin-left: 25px;
            margin-bottom: 1.5rem;
        }
        li {
            margin-bottom: 0.8rem;
        }
        .content-link {
            font-weight: 600;
            border-bottom: 1px dashed #9c4dff;
        }
        .content-link:hover {
            border-bottom-style: solid;
        }
        .interactive-section {
            margin: 40px 0;
            padding: 30px;
            background: #f8f4ff;
            border-radius: 18px;
            border: 2px solid #e9e1ff;
        }
        .interactive-section h3 {
            margin-top: 0;
        }
        .search-box {
            display: flex;
            margin: 20px 0 40px;
        }
        .search-box input {
            flex: 1;
            padding: 15px 20px;
            border: 2px solid #d0c0ff;
            border-radius: 50px 0 0 50px;
            font-size: 1rem;
            outline: none;
            transition: border 0.3s ease;
        }
        .search-box input:focus {
            border-color: #9c4dff;
        }
        .search-box button {
            background: linear-gradient(90deg, #9c4dff, #7a2eff);
            color: white;
            border: none;
            padding: 0 30px;
            border-radius: 0 50px 50px 0;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .search-box button:hover {
            background: linear-gradient(90deg, #7a2eff, #5a0ee6);
        }
        .rating-widget {
            background: white;
            padding: 25px;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 8px 20px rgba(0,0,0,0.05);
            margin: 30px 0;
        }
        .stars {
            font-size: 2.5rem;
            color: #ffd700;
            margin: 15px 0;
            cursor: pointer;
        }
        .stars i {
            margin: 0 5px;
            transition: transform 0.2s ease;
        }
        .stars i:hover {
            transform: scale(1.2);
        }
        .comment-form {
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.05);
        }
        .form-group {
            margin-bottom: 20px;
        }
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #555;
        }
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 15px;
            border: 2px solid #e0d2ff;
            border-radius: 10px;
            font-size: 1rem;
            transition: border 0.3s ease;
        }
        .form-group input:focus,
        .form-group textarea:focus {
            border-color: #9c4dff;
            outline: none;
        }
        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }
        .submit-btn {
            background: linear-gradient(90deg, #ff6ec7, #9c4dff);
            color: white;
            border: none;
            padding: 15px 40px;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .submit-btn:hover {
            background: linear-gradient(90deg, #9c4dff, #ff6ec7);
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(156, 77, 255, 0.3);
        }
        .sidebar {
            background: white;
            border-radius: 20px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .sidebar h3 {
            font-size: 1.5rem;
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 2px solid #f0e6ff;
        }
        .quick-links {
            list-style: none;
            margin: 0;
            padding: 0;
        }
        .quick-links li {
            margin-bottom: 15px;
        }
        .quick-links a {
            display: block;
            padding: 15px;
            background: #f9f5ff;
            border-radius: 10px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .quick-links a:hover {
            background: #9c4dff;
            color: white;
            transform: translateX(10px);
        }
        .adopt-me-value {
            background: linear-gradient(135deg, #fdf2ff, #eef7ff);
            padding: 20px;
            border-radius: 15px;
            margin-top: 30px;
            border: 2px solid #e0d2ff;
        }
        .site-footer {
            background: #2d1b69;
            color: #d0c0ff;
            padding: 50px 0 30px;
            margin-top: 60px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-section h4 {
            color: white;
            font-size: 1.3rem;
            margin-bottom: 25px;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 12px;
        }
        .footer-links a {
            color: #d0c0ff;
        }
        .footer-links a:hover {
            color: white;
            padding-left: 5px;
        }
        friend-link {
            display: block;
            background: rgba(255,255,255,0.05);
            padding: 15px;
            border-radius: 10px;
            margin-bottom: 10px;
            transition: all 0.3s ease;
        }
        friend-link:hover {
            background: rgba(255,255,255,0.1);
            transform: translateX(5px);
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 0.9rem;
            color: #a894ff;
        }
        .text-center {
            text-align: center;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 8px;
        }
        .bold {
            font-weight: 800;
            color: #2d1b69;
        }
        .last-updated {
            background: #eef7ff;
            padding: 15px;
            border-radius: 10px;
            margin: 30px 0;
            text-align: center;
            font-weight: 600;
        }
        @media (max-width: 768px) {
            .article-content {
                padding: 25px;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            .article-header h1 {
                font-size: 2rem;
            }
            .sidebar {
                position: static;
            }
        }
