* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: #333;
            background-color: #f8f9fa;
            overflow-x: hidden;
        }
        h1, h2, h3, h4 {
            font-family: 'Arial Black', 'Arial Bold', Gadget, sans-serif;
            color: #1a365d;
            margin-bottom: 1rem;
            line-height: 1.3;
        }
        h1 {
            font-size: 2.8rem;
            border-left: 6px solid #e53e3e;
            padding-left: 1.5rem;
            margin-top: 2rem;
        }
        h2 {
            font-size: 2.2rem;
            border-bottom: 3px solid #2d3748;
            padding-bottom: 0.5rem;
            margin-top: 3rem;
        }
        h3 {
            font-size: 1.8rem;
            color: #2d3748;
            margin-top: 2.5rem;
        }
        h4 {
            font-size: 1.4rem;
            color: #4a5568;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #1a365d 0%, #2d3748 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-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 900;
            color: #fff;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 2px;
            display: flex;
            align-items: center;
        }
        .logo a i {
            color: #e53e3e;
            margin-right: 10px;
            font-size: 2.5rem;
        }
        .nav-desktop {
            display: flex;
            gap: 2rem;
        }
        .nav-desktop a {
            color: #e2e8f0;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 0.5rem 0;
            position: relative;
            transition: color 0.3s;
        }
        .nav-desktop a:hover {
            color: #fff;
        }
        .nav-desktop a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background-color: #e53e3e;
            transition: width 0.3s;
        }
        .nav-desktop a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
            padding: 5px;
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background-color: #2d3748;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            box-shadow: 0 5px 10px rgba(0,0,0,0.2);
            z-index: 999;
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            color: #e2e8f0;
            text-decoration: none;
            padding: 1rem 2rem;
            border-bottom: 1px solid #4a5568;
            font-weight: 600;
            transition: background 0.3s;
        }
        .nav-mobile a:hover {
            background-color: #4a5568;
            color: white;
        }
        .breadcrumb {
            background-color: #edf2f7;
            padding: 1rem 0;
            margin-bottom: 2rem;
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
        }
        .breadcrumb li {
            display: inline;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '>';
            margin: 0 10px;
            color: #718096;
        }
        .breadcrumb a {
            color: #4a5568;
            text-decoration: none;
        }
        .breadcrumb a:hover {
            color: #1a365d;
            text-decoration: underline;
        }
        .main-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            margin: 2rem 0;
        }
        .article-content {
            background: white;
            padding: 2.5rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        .article-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid #e2e8f0;
            color: #718096;
            font-size: 0.9rem;
        }
        .author {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .author img {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            object-fit: cover;
        }
        .lead {
            font-size: 1.3rem;
            font-weight: 600;
            color: #2d3748;
            margin-bottom: 2rem;
            padding: 1rem;
            background-color: #f7fafc;
            border-left: 4px solid #e53e3e;
        }
        .highlight-box {
            background: linear-gradient(to right, #fef3c7, #fde68a);
            border-left: 5px solid #d97706;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .highlight-box h4 {
            color: #92400e;
            margin-top: 0;
        }
        .article-image {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
            border-radius: 8px;
            margin: 2rem 0;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
            display: block;
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: #718096;
            margin-top: 0.5rem;
            font-size: 0.95rem;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .sidebar-widget {
            background: white;
            padding: 1.5rem;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        .sidebar-widget h3 {
            font-size: 1.5rem;
            margin-top: 0;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #e53e3e;
        }
        .search-form {
            display: flex;
            margin-top: 1rem;
        }
        .search-form input {
            flex-grow: 1;
            padding: 0.8rem 1rem;
            border: 1px solid #cbd5e0;
            border-radius: 4px 0 0 4px;
            font-size: 1rem;
        }
        .search-form button {
            background-color: #e53e3e;
            color: white;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 0 4px 4px 0;
            cursor: pointer;
            font-weight: 600;
            transition: background 0.3s;
        }
        .search-form button:hover {
            background-color: #c53030;
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            font-size: 1.8rem;
            color: #e2e8f0;
            margin: 1rem 0;
            cursor: pointer;
        }
        .stars i {
            margin: 0 3px;
            transition: color 0.2s;
        }
        .stars i:hover,
        .stars i.active {
            color: #f6ad55;
        }
        .rating-form input, .rating-form textarea {
            width: 100%;
            padding: 0.8rem;
            margin-bottom: 1rem;
            border: 1px solid #cbd5e0;
            border-radius: 4px;
            font-family: inherit;
        }
        .rating-form button {
            width: 100%;
            padding: 0.8rem;
            background-color: #2d3748;
            color: white;
            border: none;
            border-radius: 4px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s;
        }
        .rating-form button:hover {
            background-color: #1a202c;
        }
        .comments-section {
            margin-top: 4rem;
            background: white;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        .comments-section h2 {
            margin-top: 0;
        }
        .comment-form textarea {
            width: 100%;
            padding: 1rem;
            border: 1px solid #cbd5e0;
            border-radius: 4px;
            font-family: inherit;
            margin-bottom: 1rem;
            resize: vertical;
        }
        .comment {
            padding: 1.5rem;
            border-bottom: 1px solid #e2e8f0;
        }
        .comment-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 0.5rem;
            color: #718096;
            font-size: 0.9rem;
        }
        .content-link {
            color: #2b6cb0;
            text-decoration: none;
            font-weight: 600;
            border-bottom: 1px dotted #2b6cb0;
            transition: color 0.3s;
        }
        .content-link:hover {
            color: #1a365d;
            border-bottom-style: solid;
        }
        .footer-links {
            background-color: #2d3748;
            padding: 3rem 0;
            margin-top: 4rem;
        }
        .web-links-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.5rem;
        }
        .web-link {
            background-color: #4a5568;
            padding: 1.2rem;
            border-radius: 6px;
            transition: transform 0.3s, background 0.3s;
        }
        .web-link:hover {
            transform: translateY(-5px);
            background-color: #5a6578;
        }
        .web-link a {
            color: #e2e8f0;
            text-decoration: none;
            font-weight: 600;
            display: block;
        }
        .web-link a:hover {
            color: white;
        }
        footer {
            background-color: #1a202c;
            color: #cbd5e0;
            padding: 2.5rem 0;
            text-align: center;
        }
        .footer-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1.5rem;
        }
        .copyright {
            font-size: 0.9rem;
            opacity: 0.8;
        }
        .social-links {
            display: flex;
            gap: 1.5rem;
            font-size: 1.5rem;
        }
        .social-links a {
            color: #cbd5e0;
            transition: color 0.3s;
        }
        .social-links a:hover {
            color: #e53e3e;
        }
        @media (max-width: 992px) {
            .main-grid {
                grid-template-columns: 1fr;
            }
            .sidebar {
                order: -1;
            }
        }
        @media (max-width: 768px) {
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            h3 { font-size: 1.5rem; }
            .header-content {
                flex-wrap: wrap;
            }
            .nav-desktop {
                display: none;
            }
            .hamburger {
                display: block;
            }
            .article-content {
                padding: 1.5rem;
            }
            .web-links-container {
                grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            }
        }
        @media (max-width: 480px) {
            html { font-size: 14px; }
            .container { padding: 0 15px; }
            .article-meta { flex-direction: column; align-items: flex-start; gap: 1rem; }
            .web-links-container { grid-template-columns: 1fr; }
        }
        .text-bold { font-weight: 700; }
        .text-italic { font-style: italic; }
        .text-highlight { background-color: #fef3c7; padding: 2px 5px; border-radius: 3px; }
        .emoji { font-size: 1.2em; margin: 0 3px; }
        .divider { height: 1px; background: linear-gradient(to right, transparent, #cbd5e0, transparent); margin: 2.5rem 0; }
