        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #f8f9fa;
            color: #333;
            line-height: 1.6;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }
        a {
            text-decoration: none;
            color: #4a6fa5;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #ff6b6b;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }
        header {
            background: linear-gradient(135deg, #2c3e50, #4a6fa5);
            color: white;
            padding: 1rem 0;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2rem;
            font-weight: 700;
            color: white;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo a:hover {
            color: #ffd166;
        }
        .logo i {
            font-size: 2.5rem;
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .desktop-nav a {
            color: white;
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 4px;
        }
        .desktop-nav a:hover {
            background-color: rgba(255, 255, 255, 0.2);
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            background-color: #2c3e50;
            padding: 1rem;
            border-top: 1px solid #4a6fa5;
        }
        .mobile-nav ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .mobile-nav a {
            color: white;
            display: block;
            padding: 0.8rem;
            border-radius: 4px;
        }
        .mobile-nav a:hover {
            background-color: #4a6fa5;
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.9rem;
            color: #ccc;
        }
        .breadcrumb a {
            color: #ffd166;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        main {
            flex: 1;
            padding: 2rem 0;
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2rem;
        }
        @media (max-width: 768px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background: white;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        .sidebar {
            background: white;
            padding: 1.5rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        h1 {
            font-size: 2.8rem;
            color: #2c3e50;
            margin-bottom: 1rem;
            line-height: 1.2;
        }
        h2 {
            font-size: 2rem;
            color: #4a6fa5;
            margin: 2rem 0 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 3px solid #ffd166;
        }
        h3 {
            font-size: 1.5rem;
            color: #333;
            margin: 1.5rem 0 1rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .highlight {
            background-color: #fffacd;
            padding: 1.5rem;
            border-left: 5px solid #ff6b6b;
            margin: 1.5rem 0;
            border-radius: 0 8px 8px 0;
        }
        .emoji {
            font-size: 1.2rem;
            margin-right: 5px;
        }
        b, strong {
            color: #2c3e50;
        }
        .image-container {
            margin: 2rem 0;
            text-align: center;
        }
        .image-container img {
            border-radius: 10px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }
        .image-container img:hover {
            transform: scale(1.02);
        }
        .image-caption {
            font-style: italic;
            color: #666;
            margin-top: 0.5rem;
            font-size: 0.9rem;
        }
        ul, ol {
            margin-left: 2rem;
            margin-bottom: 1.5rem;
        }
        li {
            margin-bottom: 0.5rem;
        }
        .search-widget, .comments-widget, .rating-widget {
            background: #f8f9fa;
            padding: 1.5rem;
            border-radius: 8px;
            border: 1px solid #e9ecef;
        }
        .widget-title {
            font-size: 1.3rem;
            color: #2c3e50;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .widget-title i {
            color: #ff6b6b;
        }
        .search-form input {
            width: 100%;
            padding: 0.8rem;
            border: 1px solid #ccc;
            border-radius: 4px;
            margin-bottom: 0.5rem;
        }
        .search-form button {
            width: 100%;
            padding: 0.8rem;
            background: #4a6fa5;
            color: white;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-weight: 600;
            transition: background 0.3s ease;
        }
        .search-form button:hover {
            background: #2c3e50;
        }
        .comments-list {
            max-height: 300px;
            overflow-y: auto;
            margin-bottom: 1rem;
        }
        .comment {
            padding: 0.8rem;
            background: white;
            border-radius: 4px;
            margin-bottom: 0.8rem;
            border-left: 3px solid #4a6fa5;
        }
        .comment-form textarea, .comment-form input {
            width: 100%;
            padding: 0.8rem;
            border: 1px solid #ccc;
            border-radius: 4px;
            margin-bottom: 0.5rem;
        }
        .comment-form button {
            padding: 0.8rem 1.5rem;
            background: #ff6b6b;
            color: white;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            transition: background 0.3s ease;
        }
        .comment-form button:hover {
            background: #e05555;
        }
        .rating-stars {
            display: flex;
            justify-content: center;
            gap: 5px;
            margin-bottom: 1rem;
        }
        .rating-stars i {
            font-size: 2rem;
            color: #ffd166;
            cursor: pointer;
            transition: color 0.3s ease;
        }
        .rating-stars i:hover {
            color: #ff9e00;
        }
        .rating-form button {
            width: 100%;
            padding: 0.8rem;
            background: #28a745;
            color: white;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-weight: 600;
            transition: background 0.3s ease;
        }
        .rating-form button:hover {
            background: #218838;
        }
        footer {
            background: #2c3e50;
            color: white;
            padding: 2rem 0 0;
            margin-top: 3rem;
        }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 1rem;
            padding-bottom: 2rem;
            border-bottom: 1px solid #4a6fa5;
        }
        @media (max-width: 992px) {
            .footer-links {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        @media (max-width: 576px) {
            .footer-links {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        .web-link {
            background: rgba(255, 255, 255, 0.05);
            padding: 1rem;
            border-radius: 6px;
            transition: background 0.3s ease;
        }
        .web-link:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        .web-link a {
            color: #ffd166;
            font-size: 0.9rem;
            display: block;
        }
        .copyright {
            text-align: center;
            padding: 1.5rem;
            font-size: 0.9rem;
            color: #ccc;
        }
