        * {
            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;
            font-size: 1.05rem;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            text-decoration: none;
            color: #1a6dfc;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #0a4dc2;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #1a2980, #26d0ce);
            color: white;
            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;
            padding: 15px 20px;
        }
        .logo a {
            font-size: 2rem;
            font-weight: 800;
            color: white;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo i {
            color: #FFD700;
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .desktop-nav a {
            color: white;
            font-weight: 600;
            padding: 8px 5px;
            border-bottom: 2px solid transparent;
        }
        .desktop-nav a:hover {
            border-bottom-color: #FFD700;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            background-color: #1a2980;
            padding: 20px;
            flex-direction: column;
            gap: 15px;
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav a {
            color: white;
            font-weight: 600;
            padding: 10px;
            border-left: 4px solid transparent;
        }
        .mobile-nav a:hover {
            border-left-color: #FFD700;
            background-color: rgba(255,255,255,0.1);
        }
        .breadcrumb {
            background-color: #e9ecef;
            padding: 12px 20px;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: #555;
        }
        .breadcrumb a:hover {
            color: #1a6dfc;
        }
        main {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 30px 20px;
            background-color: white;
        }
        @media (max-width: 992px) {
            main {
                grid-template-columns: 1fr;
            }
        }
        article {
            padding-right: 20px;
        }
        article h1 {
            font-size: 2.8rem;
            color: #1a2980;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        .article-meta {
            color: #666;
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 1px solid #eee;
            font-style: italic;
        }
        article h2 {
            font-size: 2rem;
            color: #26a69a;
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #eee;
        }
        article h3 {
            font-size: 1.6rem;
            color: #1a6dfc;
            margin: 30px 0 15px;
        }
        article p {
            margin-bottom: 20px;
            text-align: justify;
        }
        article emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        article strong {
            color: #d32f2f;
            font-weight: 700;
        }
        .featured-image {
            margin: 30px 0;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        .featured-image figcaption {
            text-align: center;
            font-style: italic;
            color: #666;
            padding: 10px;
            background-color: #f9f9f9;
        }
        .info-box {
            background: linear-gradient(to right, #e3f2fd, #f3e5f5);
            border-left: 5px solid #1a6dfc;
            padding: 25px;
            margin: 30px 0;
            border-radius: 0 10px 10px 0;
        }
        .info-box h4 {
            color: #1a2980;
            margin-bottom: 10px;
        }
        aside {
            background-color: #f8f9fa;
            padding: 25px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .widget {
            margin-bottom: 35px;
        }
        .widget h3 {
            color: #1a2980;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #ddd;
        }
        .search-box form {
            display: flex;
        }
        .search-box input {
            flex: 1;
            padding: 12px 15px;
            border: 2px solid #ccc;
            border-radius: 5px 0 0 5px;
            font-size: 1rem;
        }
        .search-box button {
            background-color: #1a6dfc;
            color: white;
            border: none;
            padding: 12px 20px;
            border-radius: 0 5px 5px 0;
            cursor: pointer;
            transition: background 0.3s;
        }
        .search-box button:hover {
            background-color: #0a4dc2;
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .rating-stars {
            display: flex;
            gap: 5px;
            font-size: 1.8rem;
            color: #ccc;
            cursor: pointer;
        }
        .rating-stars .star:hover,
        .rating-stars .star.active {
            color: #FFD700;
        }
        .rating-form input, .comment-form input,
        .comment-form textarea {
            padding: 12px;
            border: 1px solid #ccc;
            border-radius: 5px;
            font-family: inherit;
        }
        .comment-form textarea {
            min-height: 120px;
            resize: vertical;
        }
        .submit-btn {
            background: linear-gradient(to right, #1a6dfc, #26d0ce);
            color: white;
            border: none;
            padding: 14px;
            border-radius: 5px;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.2s;
        }
        .submit-btn:hover {
            transform: translateY(-2px);
        }
        .footer-links {
            background-color: #2c3e50;
            padding: 40px 20px;
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 20px;
        }
        .web-link {
            background-color: #34495e;
            padding: 15px;
            border-radius: 5px;
            transition: background 0.3s;
        }
        .web-link:hover {
            background-color: #1a6dfc;
        }
        .web-link a {
            color: #ecf0f1;
            font-weight: 600;
            display: block;
        }
        footer {
            background-color: #1a252f;
            color: #bdc3c7;
            text-align: center;
            padding: 25px 20px;
            font-size: 0.9rem;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .social-icons {
            margin-bottom: 20px;
            display: flex;
            justify-content: center;
            gap: 20px;
            font-size: 1.5rem;
        }
        .social-icons a {
            color: #bdc3c7;
            transition: color 0.3s;
        }
        .social-icons a:hover {
            color: #1a6dfc;
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
            .mobile-menu-btn {
                display: block;
            }
            article h1 {
                font-size: 2.2rem;
            }
            article h2 {
                font-size: 1.8rem;
            }
            .header-container, .breadcrumb, main, .footer-links {
                padding-left: 15px;
                padding-right: 15px;
            }
        }
