        * {
            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: #f9f9ff;
            transition: all 0.3s ease;
        }
        a {
            text-decoration: none;
            color: #1a73e8;
            transition: color 0.3s;
        }
        a:hover {
            color: #0d47a1;
        }
        ul {
            list-style: none;
        }
        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, #6a11cb 0%, #2575fc 100%);
            color: white;
            padding: 15px 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 {
            font-size: 2.2rem;
            font-weight: 900;
            color: white;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo i {
            color: #ffcc00;
        }
        .logo-text {
            background: linear-gradient(to right, #ffcc00, #ff6699);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-style: italic;
        }
        .mobile-toggle {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            background: none;
            border: none;
            color: white;
        }
        .nav-menu {
            display: flex;
            gap: 30px;
        }
        .nav-menu a {
            color: white;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 8px 15px;
            border-radius: 25px;
            transition: all 0.3s;
        }
        .nav-menu a:hover {
            background-color: rgba(255, 255, 255, 0.2);
            transform: translateY(-3px);
        }
        .breadcrumb {
            margin-top: 15px;
            font-size: 0.95rem;
            color: #e0e0ff;
        }
        .breadcrumb a {
            color: #e0e0ff;
        }
        .breadcrumb a:hover {
            color: white;
            text-decoration: underline;
        }
        .main-content {
            padding: 40px 0;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        .article-section {
            background: white;
            border-radius: 20px;
            padding: 35px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        }
        .article-title {
            font-size: 2.8rem;
            color: #1a237e;
            margin-bottom: 25px;
            line-height: 1.3;
            text-align: center;
        }
        .article-meta {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 35px;
            color: #666;
            font-size: 0.95rem;
            flex-wrap: wrap;
        }
        .article-meta span {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .article-meta i {
            color: #6a11cb;
        }
        .article-image {
            margin: 35px auto;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
            max-width: 800px;
        }
        .article-image img {
            width: 100%;
            transition: transform 0.5s;
        }
        .article-image img:hover {
            transform: scale(1.03);
        }
        .article-body h2 {
            font-size: 2rem;
            color: #0d47a1;
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 3px solid #ffcc00;
        }
        .article-body h3 {
            font-size: 1.6rem;
            color: #1a73e8;
            margin: 30px 0 15px;
        }
        .article-body p {
            margin-bottom: 25px;
            font-size: 1.15rem;
            text-align: justify;
            color: #444;
        }
        .highlight {
            background-color: #fff9c4;
            padding: 20px;
            border-left: 5px solid #ffcc00;
            margin: 25px 0;
            border-radius: 0 10px 10px 0;
            font-weight: 600;
        }
        .emoji {
            font-size: 1.3rem;
            margin: 0 5px;
        }
        .feature-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }
        .feature-item {
            background: #f0f7ff;
            padding: 20px;
            border-radius: 12px;
            border: 1px solid #bbdefb;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .feature-item:hover {
            transform: translateY(-8px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.08);
        }
        .feature-item i {
            color: #6a11cb;
            font-size: 1.8rem;
            margin-bottom: 15px;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .widget {
            background: white;
            border-radius: 15px;
            padding: 25px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.05);
        }
        .widget-title {
            font-size: 1.5rem;
            color: #1a237e;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #ffcc00;
        }
        .search-form {
            display: flex;
        }
        .search-input {
            flex: 1;
            padding: 12px 15px;
            border: 2px solid #6a11cb;
            border-radius: 25px 0 0 25px;
            font-size: 1rem;
            outline: none;
        }
        .search-button {
            background: linear-gradient(to right, #6a11cb, #2575fc);
            color: white;
            border: none;
            padding: 0 25px;
            border-radius: 0 25px 25px 0;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s;
        }
        .search-button:hover {
            background: linear-gradient(to right, #2575fc, #6a11cb);
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin: 20px 0;
            font-size: 2rem;
            color: #ffcc00;
            cursor: pointer;
        }
        .stars i:hover {
            transform: scale(1.2);
        }
        .rating-form input, .comment-form input, .comment-form textarea {
            width: 100%;
            padding: 12px;
            margin-bottom: 15px;
            border: 1px solid #ccc;
            border-radius: 8px;
            font-size: 1rem;
        }
        .rating-form button, .comment-form button {
            width: 100%;
            padding: 14px;
            background: linear-gradient(to right, #00b09b, #96c93d);
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
        }
        .rating-form button:hover, .comment-form button:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(0,0,0,0.1);
        }
        .comment-form textarea {
            min-height: 120px;
            resize: vertical;
        }
        .web-links-section {
            background: #f0f7ff;
            padding: 40px 0;
            margin-top: 40px;
        }
        .web-links-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
        }
        .web-link {
            background: white;
            padding: 18px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.03);
            transition: all 0.3s;
            border-left: 4px solid #6a11cb;
        }
        .web-link:hover {
            transform: translateX(10px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.08);
        }
        .web-link a {
            font-weight: 600;
            color: #1a237e;
            display: block;
        }
        .footer {
            background: linear-gradient(135deg, #1a237e 0%, #283593 100%);
            color: white;
            padding: 40px 0 20px;
            margin-top: 40px;
        }
        .footer-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 40px;
            margin-bottom: 30px;
        }
        .footer-section {
            flex: 1;
            min-width: 250px;
        }
        .footer-section h3 {
            font-size: 1.5rem;
            margin-bottom: 20px;
            color: #ffcc00;
        }
        .footer-links a {
            color: #e0e0ff;
            display: block;
            margin-bottom: 12px;
            transition: color 0.3s;
        }
        .footer-links a:hover {
            color: white;
            padding-left: 8px;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: #b0b0ff;
            font-size: 0.95rem;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
            .article-title {
                font-size: 2.4rem;
            }
        }
        @media (max-width: 768px) {
            .mobile-toggle {
                display: block;
            }
            .nav-menu {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
                flex-direction: column;
                align-items: center;
                padding: 30px 0;
                transition: left 0.5s ease;
                z-index: 999;
                box-shadow: 0 10px 20px rgba(0,0,0,0.2);
            }
            .nav-menu.active {
                left: 0;
            }
            .header-top {
                position: relative;
            }
            .article-title {
                font-size: 2rem;
            }
            .article-body h2 {
                font-size: 1.8rem;
            }
            .article-body h3 {
                font-size: 1.5rem;
            }
        }
        @media (max-width: 480px) {
            .article-section {
                padding: 25px 20px;
            }
            .article-title {
                font-size: 1.8rem;
            }
            .article-meta {
                flex-direction: column;
                align-items: center;
                gap: 10px;
            }
            .feature-list {
                grid-template-columns: 1fr;
            }
        }
