        * { 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: #f9f7f2;
            background-image: linear-gradient(to bottom, #ffffff 0%, #f9f7f2 100%);
            max-width: 100vw;
            overflow-x: hidden;
        }
        img { max-width: 100%; height: auto; display: block; }
        h1, h2, h3, h4 { font-family: Georgia, 'Times New Roman', Times, serif; color: #2c3e50; margin-bottom: 1rem; line-height: 1.3; }
        h1 { font-size: clamp(2.5rem, 5vw, 3.8rem); margin-top: 1.5rem; border-bottom: 3px solid #e74c3c; padding-bottom: 0.5rem; }
        h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); color: #2980b9; margin-top: 2.5rem; padding-left: 0.5rem; border-left: 5px solid #f1c40f; }
        h3 { font-size: 1.6rem; color: #16a085; margin-top: 2rem; }
        p, li, blockquote { margin-bottom: 1.5rem; font-size: 1.1rem; text-align: justify; }
        a { color: #2980b9; text-decoration: none; transition: all 0.3s ease; }
        a:hover { color: #e74c3c; text-decoration: underline; }
        strong, b { color: #2c3e50; font-weight: 700; }
        em { font-style: italic; color: #7f8c8d; }
        blockquote {
            border-left: 4px solid #f1c40f;
            padding: 1.5rem 2rem;
            margin: 2rem 0;
            background: #fffdf6;
            font-style: italic;
            border-radius: 0 8px 8px 0;
            box-shadow: 0 4px 6px rgba(0,0,0,0.05);
        }
        hr { border: 0; height: 2px; background: linear-gradient(to right, transparent, #f1c40f, transparent); margin: 3rem 0; }
        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }
        header {
            background: linear-gradient(135deg, #2c3e50 0%, #1a2530 100%);
            color: white;
            padding: 1rem 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            color: #f1c40f;
            font-family: 'Trebuchet MS', sans-serif;
            font-size: 2.2rem;
            font-weight: 800;
            letter-spacing: 1px;
            text-decoration: none;
            display: flex;
            align-items: center;
        }
        .logo a:hover { color: #fff; text-decoration: none; }
        .logo i { margin-right: 10px; color: #e74c3c; }
        nav ul { display: flex; list-style: none; }
        nav li { margin-left: 2rem; }
        nav a {
            color: #ecf0f1;
            font-weight: 600;
            font-size: 1.05rem;
            padding: 0.5rem 0.2rem;
            border-bottom: 2px solid transparent;
        }
        nav a:hover, nav a.active { color: #f1c40f; border-bottom-color: #f1c40f; text-decoration: none; }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: #f1c40f;
            cursor: pointer;
            padding: 0.5rem;
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background: #2c3e50;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 1rem;
            box-shadow: 0 10px 15px rgba(0,0,0,0.2);
        }
        .mobile-nav.active { display: flex; }
        .mobile-nav a {
            color: #ecf0f1;
            padding: 0.8rem 1rem;
            border-bottom: 1px solid #34495e;
            font-weight: 600;
        }
        .mobile-nav a:hover { background: #34495e; color: #f1c40f; }
        .breadcrumb {
            padding: 1rem 0;
            background: #ecf0f1;
            font-size: 0.95rem;
            border-bottom: 1px solid #bdc3c7;
        }
        .breadcrumb a { color: #7f8c8d; }
        .breadcrumb a:hover { color: #e74c3c; }
        .breadcrumb span { color: #2c3e50; }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            padding: 2rem 0;
        }
        article { background: white; padding: 2.5rem; border-radius: 12px; box-shadow: 0 8px 30px rgba(0,0,0,0.08); }
        .article-meta { color: #7f8c8d; margin-bottom: 2rem; font-size: 0.95rem; display: flex; gap: 1.5rem; }
        .featured-image {
            width: 100%;
            border-radius: 10px;
            overflow: hidden;
            margin: 2rem 0;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        .featured-image img { width: 100%; transition: transform 0.5s ease; }
        .featured-image:hover img { transform: scale(1.03); }
        .image-caption { text-align: center; font-style: italic; color: #7f8c8d; margin-top: 0.5rem; font-size: 0.95rem; }
        aside { align-self: start; position: sticky; top: 120px; }
        .widget {
            background: white;
            padding: 1.8rem;
            margin-bottom: 2rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .widget h3 { font-size: 1.4rem; margin-top: 0; border-bottom: 2px dashed #f1c40f; padding-bottom: 0.7rem; }
        .widget ul { list-style: none; }
        .widget li { padding: 0.8rem 0; border-bottom: 1px solid #eee; }
        .widget li:last-child { border-bottom: none; }
        .widget a { color: #2c3e50; display: flex; align-items: center; }
        .widget a:hover { color: #e74c3c; }
        .widget a i { margin-right: 10px; color: #2980b9; width: 20px; }
        .form-group { margin-bottom: 1.5rem; }
        .form-group label { display: block; margin-bottom: 0.5rem; font-weight: 600; color: #2c3e50; }
        .form-control {
            width: 100%;
            padding: 0.9rem 1rem;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-size: 1rem;
            transition: border 0.3s;
        }
        .form-control:focus { outline: none; border-color: #2980b9; box-shadow: 0 0 0 3px rgba(41, 128, 185, 0.2); }
        .btn {
            display: inline-block;
            background: linear-gradient(to right, #2980b9, #2c3e50);
            color: white;
            padding: 0.9rem 2rem;
            border: none;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .btn:hover { background: linear-gradient(to right, #e74c3c, #c0392b); transform: translateY(-2px); box-shadow: 0 7px 14px rgba(231, 76, 60, 0.3); text-decoration: none; color: white; }
        .btn i { margin-right: 8px; }
        .rating-stars { display: flex; gap: 5px; margin: 1rem 0; }
        .rating-stars input { display: none; }
        .rating-stars label { font-size: 1.8rem; color: #ddd; cursor: pointer; transition: color 0.2s; }
        .rating-stars input:checked ~ label, .rating-stars label:hover, .rating-stars label:hover ~ label { color: #f1c40f; }
        .web-links-section { background: #2c3e50; padding: 3rem 0; margin: 3rem 0 0; border-top: 5px solid #f1c40f; }
        .web-links-container { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; }
        .web-link {
            background: #34495e;
            padding: 1.5rem;
            border-radius: 8px;
            transition: all 0.3s ease;
            border-left: 4px solid #f1c40f;
        }
        .web-link:hover { background: #3d566e; transform: translateY(-5px); }
        .web-link a { color: #ecf0f1; font-weight: 600; font-size: 1.1rem; display: block; }
        .web-link a:hover { color: #f1c40f; text-decoration: none; }
        .web-link p { color: #bdc3c7; font-size: 0.95rem; margin-top: 0.5rem; margin-bottom: 0; }
        footer { background: #1a2530; color: #bdc3c7; padding: 3rem 0 1.5rem; }
        .footer-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2.5rem; }
        .footer-widget h4 { color: #f1c40f; font-size: 1.3rem; margin-bottom: 1.5rem; }
        .footer-links { list-style: none; }
        .footer-links li { margin-bottom: 0.8rem; }
        .footer-links a { color: #ecf0f1; }
        .footer-links a:hover { color: #f1c40f; padding-left: 5px; }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid #34495e;
            font-size: 0.95rem;
            color: #95a5a6;
        }
        @media (max-width: 1024px) {
            .main-content { grid-template-columns: 1fr; gap: 2rem; }
            aside { position: static; }
        }
        @media (max-width: 768px) {
            .header-container { flex-wrap: wrap; }
            nav ul { display: none; }
            .hamburger { display: block; }
            .main-content, .footer-container { grid-template-columns: 1fr; }
            article { padding: 1.8rem; }
            .web-links-container { grid-template-columns: 1fr; }
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
        }
        .text-center { text-align: center; }
        .mt-3 { margin-top: 3rem; }
        .mb-3 { margin-bottom: 3rem; }
        .highlight { background: #fff9db; padding: 0.2rem 0.5rem; border-radius: 4px; border-left: 3px solid #f1c40f; }
        .badge {
            display: inline-block;
            background: #e74c3c;
            color: white;
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 700;
            margin-right: 0.5rem;
        }
