        * { 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;
            overflow-x: hidden;
        }
        a { color: #3a6ea5; text-decoration: none; transition: color 0.3s ease; }
        a:hover { color: #e74c3c; }
        img { max-width: 100%; height: auto; display: block; }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .text-center { text-align: center; }
        .bold { font-weight: 700; }
        .highlight { background-color: #fff9c4; padding: 2px 5px; border-radius: 3px; }
        .emoji { font-size: 1.2em; margin-right: 5px; }
        .site-header {
            background: linear-gradient(90deg, #1a237e 0%, #283593 50%, #3949ab 100%);
            color: white;
            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: 'Arial Black', Gadget, sans-serif;
            font-size: 2.2rem;
            background: linear-gradient(to right, #4facfe, #00f2fe);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 2px 4px rgba(0,0,0,0.2);
            padding: 5px 0;
        }
        .my-logo a { color: transparent; }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            color: #e3f2fd;
            font-weight: 600;
            padding: 8px 12px;
            border-radius: 4px;
        }
        .main-nav a:hover, .main-nav a.active {
            background-color: rgba(255,255,255,0.15);
            color: #ffffff;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: white;
        }
        .breadcrumb {
            padding: 15px 0;
            background-color: #edf2f7;
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '›';
            margin: 0 10px;
            color: #718096;
        }
        .breadcrumb a { color: #4a5568; }
        .breadcrumb a:hover { color: #2d3748; }
        .search-section {
            background-color: #ffffff;
            padding: 2rem 0;
            border-bottom: 1px solid #e2e8f0;
            margin-bottom: 2rem;
        }
        .search-form {
            max-width: 700px;
            margin: 0 auto;
            display: flex;
            border-radius: 50px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        }
        .search-input {
            flex-grow: 1;
            padding: 18px 25px;
            border: none;
            font-size: 1.1rem;
            outline: none;
            background: #f8f9fa;
        }
        .search-btn {
            background: linear-gradient(to right, #3498db, #2980b9);
            color: white;
            border: none;
            padding: 0 30px;
            cursor: pointer;
            font-size: 1.1rem;
            font-weight: 600;
            transition: background 0.3s;
        }
        .search-btn:hover { background: linear-gradient(to right, #2980b9, #1c5a7a); }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 30px 0;
        }
        @media (max-width: 992px) {
            .main-content { grid-template-columns: 1fr; }
        }
        .article-container {
            background-color: white;
            border-radius: 12px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        }
        .article-meta {
            color: #718096;
            font-size: 0.95rem;
            border-bottom: 1px dashed #cbd5e0;
            padding-bottom: 20px;
            margin-bottom: 30px;
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        h1 {
            font-size: 2.8rem;
            color: #2d3748;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }
        h2 {
            font-size: 2rem;
            color: #2c3e50;
            margin: 2.5rem 0 1rem;
            padding-bottom: 10px;
            border-bottom: 2px solid #4facfe;
        }
        h3 {
            font-size: 1.6rem;
            color: #34495e;
            margin: 2rem 0 1rem;
        }
        h4 {
            font-size: 1.3rem;
            color: #5d6d7e;
            margin: 1.8rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
            hyphens: auto;
        }
        .lead {
            font-size: 1.3rem;
            color: #4a5568;
            font-weight: 300;
            line-height: 1.8;
            margin-bottom: 2.5rem;
        }
        .featured-image {
            width: 100%;
            border-radius: 10px;
            margin: 2rem auto;
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        }
        .info-box {
            background: #f0f9ff;
            border-left: 5px solid #3498db;
            padding: 25px;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .internal-links-list {
            background: #f8f9fa;
            padding: 25px;
            border-radius: 10px;
            margin: 2.5rem 0;
        }
        .internal-links-list h3 { margin-top: 0; }
        .internal-links-list ul { list-style-position: inside; }
        .internal-links-list li { margin-bottom: 10px; }
        .sidebar {
            background: white;
            border-radius: 12px;
            padding: 25px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.05);
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .sidebar-widget {
            margin-bottom: 2.5rem;
        }
        .sidebar-widget h3 {
            font-size: 1.4rem;
            color: #2c3e50;
            margin-bottom: 1.2rem;
            padding-bottom: 8px;
            border-bottom: 1px solid #eaeaea;
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .star-rating {
            direction: rtl;
            font-size: 1.8rem;
            unicode-bidi: bidi-override;
            display: inline-block;
        }
        .star-rating input { display: none; }
        .star-rating label {
            color: #ddd;
            cursor: pointer;
            padding: 0 3px;
        }
        .star-rating input:checked ~ label,
        .star-rating label:hover,
        .star-rating label:hover ~ label { color: #f39c12; }
        .form-group { display: flex; flex-direction: column; }
        .form-label { margin-bottom: 8px; font-weight: 600; color: #4a5568; }
        .form-input, .form-textarea {
            padding: 12px 15px;
            border: 1px solid #cbd5e0;
            border-radius: 6px;
            font-size: 1rem;
            transition: border 0.3s;
        }
        .form-input:focus, .form-textarea:focus {
            outline: none;
            border-color: #3498db;
            box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
        }
        .form-textarea { min-height: 120px; resize: vertical; }
        .form-submit {
            background: linear-gradient(to right, #2ecc71, #27ae60);
            color: white;
            border: none;
            padding: 15px;
            border-radius: 6px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s;
        }
        .form-submit:hover { background: linear-gradient(to right, #27ae60, #219653); }
        .site-footer {
            background: #2c3e50;
            color: #ecf0f1;
            padding: 3rem 0 1.5rem;
            margin-top: 4rem;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 2.5rem;
        }
        .footer-widget h4 {
            color: #3498db;
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
        }
        .footer-links { list-style: none; }
        .footer-links li { margin-bottom: 10px; }
        .footer-links a {
            color: #bdc3c7;
            transition: color 0.3s, padding-left 0.3s;
        }
        .footer-links a:hover {
            color: #3498db;
            padding-left: 8px;
        }
        friend-link {
            display: block;
            background: rgba(255,255,255,0.05);
            padding: 15px;
            border-radius: 6px;
            margin-bottom: 10px;
            border-left: 4px solid #3498db;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #34495e;
            color: #95a5a6;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .hamburger { display: block; }
            .main-nav {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 80%;
                height: calc(100vh - 80px);
                background: #1a237e;
                flex-direction: column;
                padding: 2rem;
                transition: left 0.4s ease;
                overflow-y: auto;
            }
            .main-nav.active { left: 0; }
            .main-nav ul {
                flex-direction: column;
                gap: 0;
            }
            .main-nav li { width: 100%; }
            .main-nav a {
                display: block;
                padding: 15px;
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            .article-container { padding: 25px; }
            .sidebar { position: static; }
        }
