        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: #333;
            background-color: #f8f9fa;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: #3498db;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #1d6fa5;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #1a237e 0%, #4a148c 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: 1.8rem;
            font-weight: 800;
            color: #ffcc00;
            text-transform: uppercase;
            letter-spacing: 1px;
            display: flex;
            align-items: center;
        }
        .logo i {
            margin-right: 10px;
            color: #ff9966;
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .desktop-nav a {
            color: #e0e0e0;
            font-weight: 600;
            padding: 0.5rem 0;
            position: relative;
        }
        .desktop-nav a:hover {
            color: #ffcc00;
        }
        .desktop-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: #ffcc00;
            transition: width 0.3s ease;
        }
        .desktop-nav a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background: #2c3e50;
            flex-direction: column;
            padding: 1rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav ul {
            list-style: none;
            width: 100%;
        }
        .mobile-nav li {
            margin: 0.8rem 0;
        }
        .mobile-nav a {
            color: #ecf0f1;
            font-weight: 600;
            display: block;
            padding: 0.8rem;
            border-radius: 5px;
            transition: background 0.3s;
        }
        .mobile-nav a:hover {
            background: #3498db;
            color: white;
        }
        .breadcrumb {
            background: #e3f2fd;
            padding: 0.8rem 20px;
            font-size: 0.9rem;
            margin-bottom: 2rem;
        }
        .breadcrumb a {
            color: #555;
        }
        .breadcrumb a:hover {
            color: #1a237e;
        }
        .breadcrumb span {
            color: #777;
            margin: 0 5px;
        }
        main {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            padding: 2rem 0;
        }
        @media (max-width: 768px) {
            main {
                grid-template-columns: 1fr;
            }
        }
        article {
            background: white;
            border-radius: 12px;
            padding: 2.5rem;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
        }
        .article-header {
            margin-bottom: 2.5rem;
            border-bottom: 2px solid #eee;
            padding-bottom: 1.5rem;
        }
        h1 {
            font-size: 2.5rem;
            color: #2c3e50;
            margin-bottom: 1rem;
            line-height: 1.3;
        }
        .article-meta {
            display: flex;
            gap: 1.5rem;
            color: #7f8c8d;
            font-size: 0.95rem;
            margin-bottom: 1rem;
        }
        .article-meta i {
            margin-right: 5px;
            color: #3498db;
        }
        .content p {
            margin-bottom: 1.8rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .content h2 {
            font-size: 2rem;
            color: #1a237e;
            margin: 2.5rem 0 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px dashed #b0bec5;
        }
        .content h3 {
            font-size: 1.6rem;
            color: #4a148c;
            margin: 2rem 0 1rem;
        }
        .content b, .content strong {
            color: #d84315;
            font-weight: 700;
        }
        .highlight {
            background: #fffde7;
            border-left: 4px solid #ffcc00;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .image-container {
            margin: 2.5rem 0;
            text-align: center;
        }
        .image-container img {
            border-radius: 10px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
            border: 3px solid #e0e0e0;
            max-width: 900px;
            margin: 0 auto;
        }
        .image-caption {
            margin-top: 0.8rem;
            font-style: italic;
            color: #666;
            font-size: 0.95rem;
        }
        aside {
            background: white;
            border-radius: 12px;
            padding: 1.8rem;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .sidebar-widget {
            margin-bottom: 2.5rem;
        }
        .sidebar-widget h3 {
            color: #1a237e;
            margin-bottom: 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #ffcc00;
            font-size: 1.4rem;
        }
        .search-form {
            display: flex;
            margin-bottom: 1.5rem;
        }
        .search-form input {
            flex: 1;
            padding: 0.9rem 1rem;
            border: 2px solid #3498db;
            border-radius: 8px 0 0 8px;
            font-size: 1rem;
            outline: none;
        }
        .search-form button {
            background: #3498db;
            color: white;
            border: none;
            padding: 0 1.5rem;
            border-radius: 0 8px 8px 0;
            cursor: pointer;
            transition: background 0.3s;
            font-size: 1.1rem;
        }
        .search-form button:hover {
            background: #2980b9;
        }
        .rating-form, .comment-form {
            background: #f1f8ff;
            padding: 1.5rem;
            border-radius: 10px;
            margin-bottom: 1.8rem;
        }
        .rating-form h4, .comment-form h4 {
            color: #2c3e50;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .stars {
            display: flex;
            gap: 5px;
            margin: 1rem 0;
            font-size: 1.8rem;
            color: #ffcc00;
            cursor: pointer;
        }
        .stars i:hover {
            transform: scale(1.2);
            transition: transform 0.2s;
        }
        textarea, input[type="text"], input[type="email"] {
            width: 100%;
            padding: 1rem;
            margin-bottom: 1rem;
            border: 1px solid #bdc3c7;
            border-radius: 8px;
            font-size: 1rem;
            transition: border 0.3s;
        }
        textarea:focus, input:focus {
            border-color: #3498db;
            outline: none;
            box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.2);
        }
        .btn {
            background: linear-gradient(to right, #1a237e, #4a148c);
            color: white;
            border: none;
            padding: 0.9rem 1.8rem;
            border-radius: 8px;
            cursor: pointer;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }
        .btn:hover {
            background: linear-gradient(to right, #4a148c, #1a237e);
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(0, 0, 0, 0.1);
        }
        .web-links {
            background: #2c3e50;
            padding: 2.5rem 20px;
            margin-top: 3rem;
        }
        .web-links-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 1.5rem;
        }
        @media (max-width: 1024px) {
            .web-links-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        @media (max-width: 600px) {
            .web-links-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        .web-link {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            padding: 1.2rem;
            transition: all 0.3s;
        }
        .web-link:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-5px);
        }
        .web-link a {
            color: #ecf0f1;
            font-weight: 600;
            display: block;
            text-align: center;
        }
        footer {
            background: #1a237e;
            color: #ecf0f1;
            padding: 2.5rem 0;
            text-align: center;
        }
        .footer-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1.5rem;
        }
        .copyright {
            font-size: 0.95rem;
            color: #b0bec5;
            margin-top: 1rem;
        }
        @media (max-width: 992px) {
            h1 {
                font-size: 2.2rem;
            }
            .content h2 {
                font-size: 1.8rem;
            }
            .content h3 {
                font-size: 1.4rem;
            }
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
            .hamburger {
                display: block;
            }
            .header-content {
                padding: 0 20px;
            }
            article, aside {
                padding: 1.8rem;
            }
        }
        @media (max-width: 480px) {
            h1 {
                font-size: 1.9rem;
            }
            .article-meta {
                flex-direction: column;
                gap: 0.5rem;
            }
            .content p {
                font-size: 1rem;
            }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        article, aside, .web-link {
            animation: fadeIn 0.6s ease-out;
        }
