        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary: #FF66B3;
            --secondary: #6A0DAD;
            --accent: #FFCC00;
            --dark: #2D004D;
            --light: #FFF5FD;
            --text: #333333;
            --text-light: #666;
            --shadow: 0 4px 12px rgba(106, 13, 173, 0.15);
            --transition: all 0.3s ease;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background: linear-gradient(135deg, var(--light) 0%, #f0e6ff 100%);
            color: var(--text);
            line-height: 1.7;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: var(--secondary);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--primary);
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 10px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(90deg, var(--dark), var(--secondary));
            color: white;
            padding: 1.2rem 0;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 800;
            background: linear-gradient(45deg, var(--accent), var(--primary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 2px 4px rgba(0,0,0,0.1);
            letter-spacing: 1px;
        }
        .my-logo a {
            background: none;
            -webkit-text-fill-color: unset;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 5px;
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            color: white;
            font-weight: 600;
            padding: 0.5rem 0.8rem;
            border-radius: 5px;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .main-nav a:hover {
            background-color: rgba(255, 255, 255, 0.15);
            text-decoration: none;
            transform: translateY(-2px);
        }
        .breadcrumb {
            padding: 1rem 0;
            background-color: #f9f0ff;
            border-bottom: 1px solid #e6d6ff;
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        .breadcrumb li:not(:last-child)::after {
            content: "›";
            margin-left: 0.5rem;
            color: var(--text-light);
        }
        .search-container {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            margin: 2rem 0;
            box-shadow: var(--shadow);
            text-align: center;
        }
        .search-form {
            display: flex;
            max-width: 600px;
            margin: 0 auto;
        }
        .search-input {
            flex-grow: 1;
            padding: 1rem 1.5rem;
            border: 2px solid var(--secondary);
            border-radius: 50px 0 0 50px;
            font-size: 1rem;
            outline: none;
        }
        .search-button {
            background: linear-gradient(45deg, var(--secondary), var(--primary));
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 0 50px 50px 0;
            font-weight: bold;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-button:hover {
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            transform: scale(1.05);
        }
        .main-content {
            flex: 1;
            padding: 2rem 0;
        }
        .article-header {
            margin-bottom: 3rem;
            text-align: center;
            padding-bottom: 2rem;
            border-bottom: 3px dashed var(--accent);
        }
        .article-header h1 {
            font-size: 2.8rem;
            color: var(--dark);
            margin-bottom: 1rem;
            line-height: 1.2;
        }
        .article-meta {
            color: var(--text-light);
            font-size: 0.95rem;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 2rem;
            flex-wrap: wrap;
        }
        .article-meta i {
            margin-right: 0.5rem;
            color: var(--primary);
        }
        .article-content {
            background: white;
            padding: 3rem;
            border-radius: 20px;
            box-shadow: var(--shadow);
            margin-bottom: 3rem;
        }
        .article-content h2, .article-content h3, .article-content h4 {
            color: var(--secondary);
            margin-top: 2.5rem;
            margin-bottom: 1rem;
            line-height: 1.3;
        }
        .article-content h2 {
            font-size: 2.2rem;
            border-left: 5px solid var(--accent);
            padding-left: 1rem;
        }
        .article-content h3 {
            font-size: 1.8rem;
            color: var(--dark);
        }
        .article-content h4 {
            font-size: 1.4rem;
            color: var(--primary);
        }
        .article-content p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .article-content b, .article-content strong {
            color: var(--dark);
            background-color: #fff0f7;
            padding: 0 3px;
        }
        .highlight-box {
            background: linear-gradient(135deg, #fff0f7, #f0f4ff);
            border-left: 5px solid var(--primary);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 10px 10px 0;
        }
        .featured-image {
            margin: 2.5rem auto;
            text-align: center;
            max-width: 800px;
        }
        .featured-image figcaption {
            font-style: italic;
            color: var(--text-light);
            margin-top: 0.5rem;
            font-size: 0.95rem;
        }
        .internal-links {
            background-color: #f9f5ff;
            padding: 1.5rem;
            border-radius: 10px;
            margin: 2rem 0;
        }
        .internal-links ul {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 1rem;
            list-style: none;
        }
        .internal-links li a {
            display: block;
            padding: 0.8rem;
            background: white;
            border-radius: 8px;
            border: 1px solid #e6d6ff;
            transition: var(--transition);
        }
        .internal-links li a:hover {
            background: var(--secondary);
            color: white;
            text-decoration: none;
            transform: translateY(-3px);
            box-shadow: var(--shadow);
        }
        .interactive-section {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
        }
        .rating-widget, .comment-widget {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: var(--shadow);
        }
        .rating-widget h3, .comment-widget h3 {
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 0.8rem;
        }
        .stars {
            display: flex;
            gap: 0.5rem;
            margin-bottom: 1.5rem;
        }
        .star {
            font-size: 2rem;
            color: #ddd;
            cursor: pointer;
            transition: var(--transition);
        }
        .star:hover,
        .star.active {
            color: var(--accent);
            transform: scale(1.2);
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .rating-form input, .comment-form input, .comment-form textarea {
            padding: 1rem;
            border: 1px solid #ccc;
            border-radius: 8px;
            font-size: 1rem;
            transition: var(--transition);
        }
        .rating-form input:focus, .comment-form input:focus, .comment-form textarea:focus {
            border-color: var(--primary);
            outline: none;
            box-shadow: 0 0 0 3px rgba(255, 102, 179, 0.2);
        }
        .comment-form textarea {
            min-height: 150px;
            resize: vertical;
        }
        .submit-btn {
            background: linear-gradient(45deg, var(--secondary), var(--primary));
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 8px;
            font-weight: bold;
            cursor: pointer;
            transition: var(--transition);
            align-self: flex-start;
        }
        .submit-btn:hover {
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(106, 13, 173, 0.3);
        }
        .site-footer {
            background: linear-gradient(90deg, var(--dark), #4a0072);
            color: white;
            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-section h4 {
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
            color: var(--accent);
            border-bottom: 2px solid var(--primary);
            padding-bottom: 0.5rem;
            display: inline-block;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        .footer-links a {
            color: #e0c6ff;
            display: flex;
            align-items: center;
            gap: 0.7rem;
        }
        .footer-links a:hover {
            color: white;
            text-decoration: none;
            transform: translateX(5px);
        }
        friend-link {
            display: block;
            background: rgba(255,255,255,0.1);
            padding: 1.5rem;
            border-radius: 10px;
            margin-top: 1.5rem;
        }
        friend-link h5 {
            color: var(--accent);
            margin-bottom: 1rem;
        }
        friend-link a {
            color: #ffccff;
            font-weight: bold;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255,255,255,0.2);
            font-size: 0.9rem;
            color: #ccc;
        }
        @media (max-width: 992px) {
            .article-header h1 { font-size: 2.4rem; }
            .article-content { padding: 2rem; }
            .internal-links ul { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            .main-nav {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 80%;
                height: calc(100vh - 80px);
                background: var(--dark);
                transition: left 0.4s ease;
                padding: 2rem;
                box-shadow: 5px 0 15px rgba(0,0,0,0.2);
                z-index: 999;
            }
            .main-nav.active {
                left: 0;
            }
            .main-nav ul {
                flex-direction: column;
                gap: 1rem;
            }
            .article-header h1 { font-size: 2rem; }
            .article-content h2 { font-size: 1.8rem; }
            .article-content h3 { font-size: 1.5rem; }
            .search-form { flex-direction: column; }
            .search-input { border-radius: 50px; margin-bottom: 1rem; }
            .search-button { border-radius: 50px; width: 100%; }
            .internal-links ul { grid-template-columns: 1fr; }
            .interactive-section { grid-template-columns: 1fr; }
        }
        @media (max-width: 480px) {
            .container { padding: 0 15px; }
            .article-content { padding: 1.5rem; }
            .article-header h1 { font-size: 1.8rem; }
            .article-meta { flex-direction: column; gap: 0.5rem; }
        }
