        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #f8f9fa;
            color: #333;
            line-height: 1.6;
            font-size: 18px;
        }
        a {
            text-decoration: none;
            color: #1a73e8;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #0d47a1;
            text-decoration: underline;
        }
        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, #4a00e0, #8e2de2);
            color: white;
            padding: 15px 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: 800;
            color: white;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo i {
            color: #ffcc00;
        }
        .nav-desktop ul {
            display: flex;
            gap: 30px;
        }
        .nav-desktop a {
            color: white;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 8px 12px;
            border-radius: 6px;
        }
        .nav-desktop a:hover {
            background-color: rgba(255,255,255,0.2);
            text-decoration: none;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
        }
        .nav-mobile {
            display: none;
            background-color: #6a11cb;
            padding: 20px;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        .nav-mobile.active {
            display: block;
        }
        .nav-mobile ul {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .nav-mobile a {
            color: white;
            font-size: 1.2rem;
            display: block;
            padding: 10px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        .breadcrumb {
            background-color: #e9ecef;
            padding: 12px 20px;
            margin-top: 5px;
            border-radius: 8px;
            font-size: 0.95rem;
        }
        .breadcrumb a {
            color: #555;
        }
        .breadcrumb span {
            color: #888;
        }
        .main {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            margin: 30px 0;
        }
        @media (max-width: 768px) {
            .main {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
        }
        .article-content h1 {
            font-size: 2.8rem;
            color: #2d3748;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        .article-content h2 {
            font-size: 2rem;
            color: #4a00e0;
            margin: 30px 0 15px;
            padding-bottom: 8px;
            border-bottom: 3px solid #ffcc00;
        }
        .article-content h3 {
            font-size: 1.5rem;
            color: #555;
            margin: 20px 0 10px;
        }
        .article-content p {
            margin-bottom: 20px;
            text-align: justify;
            font-size: 1.1rem;
        }
        .article-content emoji {
            font-size: 1.3rem;
            margin-right: 8px;
        }
        .highlight {
            background-color: #fffacd;
            padding: 15px;
            border-left: 5px solid #ffcc00;
            margin: 25px 0;
            font-weight: 600;
            border-radius: 0 10px 10px 0;
        }
        .image-container {
            margin: 30px 0;
            text-align: center;
        }
        .image-container img {
            border-radius: 12px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
            max-height: 500px;
            object-fit: cover;
            width: 100%;
        }
        .image-caption {
            font-style: italic;
            color: #666;
            margin-top: 10px;
            font-size: 0.95rem;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }
        .widget {
            background: white;
            padding: 25px;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .widget h3 {
            font-size: 1.5rem;
            color: #4a00e0;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .widget h3 i {
            color: #ffcc00;
        }
        .search-form input {
            width: 100%;
            padding: 14px;
            border: 2px solid #ddd;
            border-radius: 10px;
            font-size: 1rem;
            margin-bottom: 12px;
        }
        .search-form button {
            width: 100%;
            padding: 14px;
            background: linear-gradient(to right, #4a00e0, #8e2de2);
            color: white;
            border: none;
            border-radius: 10px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.3s ease;
        }
        .search-form button:hover {
            transform: translateY(-3px);
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .rating-stars {
            display: flex;
            gap: 8px;
            font-size: 1.8rem;
            color: #ddd;
            cursor: pointer;
        }
        .rating-stars .star:hover,
        .rating-stars .star.active {
            color: #ffcc00;
        }
        .rating-form input, .comment-form input,
        .comment-form textarea {
            padding: 14px;
            border: 2px solid #ddd;
            border-radius: 10px;
            font-size: 1rem;
        }
        .comment-form textarea {
            min-height: 150px;
            resize: vertical;
        }
        .rating-form button, .comment-form button {
            padding: 14px;
            background: linear-gradient(to right, #00b09b, #96c93d);
            color: white;
            border: none;
            border-radius: 10px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.3s ease;
        }
        .rating-form button:hover, .comment-form button:hover {
            transform: translateY(-3px);
        }
        .internal-links {
            background: #f1f3f4;
            padding: 30px;
            border-radius: 15px;
            margin: 40px 0 20px;
        }
        .internal-links h3 {
            font-size: 1.8rem;
            color: #2d3748;
            margin-bottom: 25px;
            text-align: center;
        }
        .web-links {
            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 3px 10px rgba(0,0,0,0.05);
            transition: transform 0.3s ease;
        }
        .web-link:hover {
            transform: translateY(-5px);
        }
        .web-link a {
            color: #4a00e0;
            font-weight: 600;
            font-size: 1.1rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .web-link a i {
            color: #ffcc00;
        }
        .footer {
            background: #2d3748;
            color: white;
            padding: 40px 0 20px;
            margin-top: 50px;
        }
        .footer-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 30px;
        }
        .footer-section {
            flex: 1;
            min-width: 250px;
        }
        .footer-section h4 {
            font-size: 1.5rem;
            margin-bottom: 20px;
            color: #ffcc00;
        }
        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .footer-links a {
            color: #cbd5e0;
        }
        .footer-links a:hover {
            color: white;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            margin-top: 30px;
            border-top: 1px solid #4a5568;
            color: #a0aec0;
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            .nav-desktop {
                display: none;
            }
            .hamburger {
                display: block;
            }
            .article-content h1 {
                font-size: 2.2rem;
            }
            .article-content h2 {
                font-size: 1.8rem;
            }
        }
        @media (max-width: 576px) {
            .article-content {
                padding: 20px;
            }
            .widget {
                padding: 20px;
            }
            .internal-links {
                padding: 20px;
            }
        }
