        * { 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-color: #f8f9fa;
            max-width: 100vw;
            overflow-x: hidden;
        }
        a { color: #2c5aa0; text-decoration: none; transition: color 0.3s ease; }
        a:hover { color: #e64c4c; }
        img { max-width: 100%; height: auto; display: block; }
        h1, h2, h3, h4 { font-family: 'Georgia', serif; color: #2c3e50; margin-bottom: 1rem; line-height: 1.3; }
        h1 { font-size: 2.8rem; margin-top: 2rem; border-bottom: 3px solid #e64c4c; padding-bottom: 0.5rem; }
        h2 { font-size: 2.2rem; margin-top: 2.5rem; color: #2c5aa0; }
        h3 { font-size: 1.8rem; margin-top: 2rem; }
        h4 { font-size: 1.4rem; margin-top: 1.5rem; }
        p { margin-bottom: 1.5rem; text-align: justify; }
        .lead { font-size: 1.3rem; font-weight: 300; color: #555; }
        .highlight { background-color: #fffacd; padding: 0.2rem 0.5rem; border-radius: 3px; }
        .emoji { font-size: 1.2em; margin-right: 0.3rem; }
        .last-updated { font-style: italic; color: #777; font-size: 0.95rem; text-align: right; margin-top: 1rem; }
        .content-section { padding: 2rem 0; }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            padding: 2rem 0;
        }
        @media (max-width: 992px) {
            .main-content { grid-template-columns: 1fr; }
        }
        .site-header {
            background: linear-gradient(135deg, #1a2980, #26d0ce);
            color: white;
            padding: 1.5rem 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: 'Impact', 'Arial Black', sans-serif;
            font-size: 2.2rem;
            color: white;
            text-decoration: none;
            display: flex;
            align-items: center;
        }
        .my-logo span:first-child { color: #ffcc00; }
        .my-logo span:last-child { color: #4cd964; }
        .nav-desktop {
            display: flex;
            gap: 1.8rem;
        }
        @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: 2px;
            background-color: #ffcc00;
            transition: width 0.3s ease;
        }
        .nav-desktop a:hover::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 {
            display: none;
            flex-direction: column;
            background-color: #2c3e50;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 1rem;
            box-shadow: 0 5px 10px rgba(0,0,0,0.2);
        }
        .nav-mobile.active { display: flex; }
        .nav-mobile a {
            color: white;
            padding: 0.8rem 1rem;
            border-bottom: 1px solid #3a506b;
        }
        .nav-mobile a:hover { background-color: #3a506b; }
        .breadcrumb {
            padding: 1rem 0;
            background-color: #e9ecef;
            font-size: 0.9rem;
        }
        .breadcrumb a { color: #555; }
        .breadcrumb a:hover { color: #e64c4c; }
        .breadcrumb span { color: #777; }
        .sidebar {
            background: white;
            padding: 1.5rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .sidebar-widget { margin-bottom: 2rem; }
        .sidebar-widget h3 { font-size: 1.3rem; margin-top: 0; border-left: 4px solid #2c5aa0; padding-left: 10px; }
        .search-form, .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .form-group { display: flex; flex-direction: column; }
        input, textarea, select {
            padding: 0.8rem;
            border: 1px solid #ccc;
            border-radius: 5px;
            font-family: inherit;
            font-size: 1rem;
        }
        button, .btn {
            background: linear-gradient(to right, #2c5aa0, #4a7bc8);
            color: white;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
            transition: all 0.3s ease;
        }
        button:hover, .btn:hover {
            background: linear-gradient(to right, #e64c4c, #ff6b6b);
            transform: translateY(-2px);
            box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            font-size: 1.8rem;
            color: #ddd;
        }
        .star-rating input { display: none; }
        .star-rating label { cursor: pointer; }
        .star-rating input:checked ~ label,
        .star-rating label:hover,
        .star-rating label:hover ~ label { color: #ffcc00; }
        .article-image {
            float: right;
            margin: 0 0 1.5rem 1.5rem;
            max-width: 450px;
            border-radius: 10px;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        @media (max-width: 768px) {
            .article-image { float: none; margin: 1.5rem auto; }
        }
        .content-links {
            background-color: #f0f7ff;
            padding: 1.5rem;
            border-left: 5px solid #2c5aa0;
            margin: 2rem 0;
        }
        .content-links ul { list-style: none; }
        .content-links li { margin-bottom: 0.8rem; }
        .content-links li::before { content: '➤'; color: #e64c4c; margin-right: 10px; }
        .site-footer {
            background-color: #2c3e50;
            color: #ecf0f1;
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }
        .footer-widget h3 { color: #ffcc00; font-size: 1.4rem; margin-bottom: 1.5rem; }
        friend-link {
            display: block;
            padding: 0.5rem 0;
            border-bottom: 1px dotted #4a6278;
        }
        friend-link a { color: #bdc3c7; }
        friend-link a:hover { color: #ffcc00; }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid #4a6278;
            font-size: 0.9rem;
            color: #95a5a6;
        }
        .text-center { text-align: center; }
        .mt-3 { margin-top: 3rem; }
        .mb-3 { margin-bottom: 3rem; }
