        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary: #6a5acd; 
            --secondary: #ffb6c1; 
            --accent: #98fb98; 
            --dark: #2c2c54;
            --light: #f8f9fa;
            --text: #333;
            --text-light: #666;
            --border: #e0e0e0;
            --shadow: 0 4px 12px rgba(0,0,0,0.08);
            --transition: all 0.3s ease;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #fff;
            color: var(--text);
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: var(--primary);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--secondary);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, var(--primary), #8a7fd9);
            color: white;
            padding: 1rem 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: 2rem;
            font-weight: 800;
            background: linear-gradient(to right, #fff, var(--secondary));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: 1px;
        }
        .my-logo:hover {
            opacity: 0.9;
        }
        .nav-desktop {
            display: flex;
            gap: 2rem;
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
        }
        .nav-desktop a {
            color: white;
            font-weight: 600;
            padding: 0.5rem 0;
            position: relative;
        }
        .nav-desktop a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background-color: var(--accent);
            transition: width 0.3s ease;
        }
        .nav-desktop a:hover::after,
        .nav-desktop a.active::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.5rem;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
        }
        .nav-mobile {
            position: fixed;
            top: 70px;
            left: 0;
            width: 100%;
            background-color: var(--dark);
            flex-direction: column;
            padding: 2rem;
            gap: 1.5rem;
            transform: translateY(-100%);
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            box-shadow: var(--shadow);
            z-index: 999;
        }
        .nav-mobile.active {
            transform: translateY(0);
            opacity: 1;
            visibility: visible;
            display: flex;
        }
        .nav-mobile a {
            color: white;
            font-size: 1.2rem;
            padding: 0.8rem 0;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        .breadcrumb {
            padding: 1rem 0;
            background-color: var(--light);
            font-size: 0.9rem;
            margin-bottom: 2rem;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '/';
            margin: 0 0.5rem;
            color: var(--text-light);
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            padding: 2rem 0;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background: white;
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: var(--shadow);
        }
        .sidebar {
            background: white;
            padding: 2rem;
            border-radius: 12px;
            box-shadow: var(--shadow);
            align-self: start;
            position: sticky;
            top: 100px;
        }
        .sidebar-widget {
            margin-bottom: 2.5rem;
        }
        .sidebar-widget h3 {
            color: var(--primary);
            margin-bottom: 1.2rem;
            padding-bottom: 0.7rem;
            border-bottom: 3px solid var(--accent);
        }
        h1 {
            font-size: 2.8rem;
            color: var(--dark);
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2.2rem;
            }
        }
        h2 {
            font-size: 2rem;
            color: var(--primary);
            margin: 3rem 0 1.5rem;
            padding-bottom: 0.7rem;
            border-bottom: 2px solid var(--border);
        }
        h3 {
            font-size: 1.6rem;
            color: var(--dark);
            margin: 2.5rem 0 1rem;
        }
        h4 {
            font-size: 1.3rem;
            color: #555;
            margin: 2rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            color: var(--text);
        }
        .lead {
            font-size: 1.3rem;
            color: var(--text-light);
            font-weight: 300;
            margin-bottom: 2.5rem;
            padding-left: 1rem;
            border-left: 4px solid var(--secondary);
        }
        .highlight {
            background-color: rgba(255, 182, 193, 0.15);
            padding: 1.5rem;
            border-radius: 8px;
            margin: 2rem 0;
            border-left: 5px solid var(--secondary);
        }
        .info-box {
            background-color: rgba(152, 251, 152, 0.15);
            padding: 1.5rem;
            border-radius: 8px;
            margin: 2rem 0;
            border-left: 5px solid var(--accent);
        }
        .float-img {
            float: right;
            margin: 1rem 0 1.5rem 2rem;
            max-width: 400px;
            border-radius: 10px;
            box-shadow: var(--shadow);
        }
        @media (max-width: 768px) {
            .float-img {
                float: none;
                margin: 1.5rem auto;
                max-width: 100%;
            }
        }
        ul, ol {
            margin-bottom: 1.5rem;
            padding-left: 2rem;
        }
        li {
            margin-bottom: 0.7rem;
        }
        blockquote {
            font-style: italic;
            color: var(--text-light);
            border-left: 4px solid var(--primary);
            padding-left: 1.5rem;
            margin: 2.5rem 0;
        }
        .last-updated {
            font-size: 0.9rem;
            color: var(--text-light);
            text-align: right;
            margin-top: 3rem;
            padding-top: 1rem;
            border-top: 1px solid var(--border);
        }
        .search-widget {
            margin-bottom: 2rem;
        }
        .search-form {
            display: flex;
        }
        .search-input {
            flex: 1;
            padding: 0.9rem 1.2rem;
            border: 2px solid var(--border);
            border-radius: 50px 0 0 50px;
            font-size: 1rem;
            outline: none;
            transition: var(--transition);
        }
        .search-input:focus {
            border-color: var(--primary);
        }
        .search-button {
            background: var(--primary);
            color: white;
            border: none;
            padding: 0 1.8rem;
            border-radius: 0 50px 50px 0;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-button:hover {
            background: #5a4abc;
        }
        .rating-widget {
            text-align: center;
            padding: 1.5rem;
            background: var(--light);
            border-radius: 10px;
            margin-bottom: 2rem;
        }
        .stars {
            font-size: 2rem;
            color: #ffc107;
            margin: 1rem 0;
            cursor: pointer;
        }
        .stars i {
            margin: 0 2px;
            transition: var(--transition);
        }
        .stars i:hover,
        .stars i.active {
            transform: scale(1.2);
            color: #ff9800;
        }
        .comment-form {
            background: var(--light);
            padding: 2rem;
            border-radius: 10px;
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: var(--dark);
        }
        input, textarea, select {
            width: 100%;
            padding: 0.9rem 1.2rem;
            border: 2px solid var(--border);
            border-radius: 8px;
            font-size: 1rem;
            transition: var(--transition);
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(106, 90, 205, 0.1);
        }
        .submit-btn {
            background: linear-gradient(to right, var(--primary), #8a7fd9);
            color: white;
            border: none;
            padding: 1rem 2.5rem;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            display: inline-block;
        }
        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 14px rgba(106, 90, 205, 0.2);
        }
        .site-footer {
            background-color: var(--dark);
            color: white;
            padding: 3rem 0 1.5rem;
            margin-top: 4rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-section h3 {
            color: var(--accent);
            margin-bottom: 1.5rem;
            font-size: 1.4rem;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        .footer-links a {
            color: #ccc;
        }
        .footer-links a:hover {
            color: white;
            padding-left: 5px;
        }
        friend-link {
            display: inline-block;
            background: rgba(255,255,255,0.1);
            padding: 0.5rem 1rem;
            border-radius: 5px;
            margin: 0.3rem;
            font-size: 0.9rem;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: #aaa;
            font-size: 0.9rem;
        }
        .text-center { text-align: center; }
        .mb-1 { margin-bottom: 1rem; }
        .mb-2 { margin-bottom: 2rem; }
        .mt-2 { margin-top: 2rem; }
        .py-2 { padding-top: 2rem; padding-bottom: 2rem; }
        .bold { font-weight: 700; }
        .emoji { font-size: 1.2em; }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .article-content, .sidebar {
            animation: fadeIn 0.6s ease-out;
        }
        @media print {
            .site-header, .sidebar, .search-widget, .rating-widget, .comment-form, .site-footer {
                display: none;
            }
            .main-content {
                grid-template-columns: 1fr;
            }
            body {
                font-size: 12pt;
                line-height: 1.5;
            }
            h1 { font-size: 24pt; }
            h2 { font-size: 18pt; }
            h3 { font-size: 14pt; }
        }
