        * {
            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;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: inherit;
        }
        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-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2rem;
            font-weight: 800;
            letter-spacing: 1px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        .logo a:hover {
            color: #ffdd40;
        }
        .desktop-nav ul {
            display: flex;
            gap: 25px;
        }
        .desktop-nav a {
            padding: 10px 15px;
            border-radius: 5px;
            transition: all 0.3s ease;
            font-weight: 600;
        }
        .desktop-nav a:hover {
            background-color: rgba(255, 255, 255, 0.2);
            transform: translateY(-3px);
        }
        .mobile-nav-toggle {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background-color: #2575fc;
            padding: 20px;
            box-shadow: 0 5px 10px rgba(0,0,0,0.2);
        }
        .mobile-nav.active {
            display: block;
        }
        .mobile-nav ul {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .mobile-nav a {
            padding: 10px;
            display: block;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        .mobile-nav a:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }
        .breadcrumb {
            background-color: #e9ecef;
            padding: 10px 0;
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        .breadcrumb li:not(:last-child)::after {
            content: ">";
            margin-left: 10px;
            color: #6c757d;
        }
        .breadcrumb a:hover {
            color: #2575fc;
            text-decoration: underline;
        }
        main {
            padding: 30px 0;
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            margin-top: 20px;
        }
        .article-header {
            text-align: center;
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 2px solid #f1f1f1;
        }
        .article-header h1 {
            font-size: 2.8rem;
            color: #2d3436;
            margin-bottom: 15px;
            line-height: 1.2;
        }
        .article-meta {
            color: #6c757d;
            font-size: 0.95rem;
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }
        .article-meta i {
            margin-right: 5px;
        }
        .content-section {
            padding: 20px;
        }
        .content-section h2 {
            font-size: 2rem;
            color: #6a11cb;
            margin: 25px 0 15px;
            padding-bottom: 10px;
            border-bottom: 2px dashed #6a11cb;
        }
        .content-section h3 {
            font-size: 1.5rem;
            color: #2575fc;
            margin: 20px 0 10px;
        }
        .content-section p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            background-color: #fffacd;
            padding: 20px;
            border-left: 5px solid #ffdd40;
            margin: 20px 0;
            border-radius: 0 8px 8px 0;
        }
        .highlight strong {
            color: #d63031;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .code-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 15px;
            margin: 25px 0;
        }
        .code-item {
            background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
            color: white;
            padding: 20px;
            border-radius: 10px;
            text-align: center;
            font-weight: bold;
            font-size: 1.2rem;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }
        .code-item:hover {
            transform: scale(1.05);
        }
        .featured-image {
            margin: 30px auto;
            max-width: 800px;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0,0,0,0.15);
        }
        .featured-image figcaption {
            text-align: center;
            font-style: italic;
            color: #666;
            padding: 10px;
            background-color: #f8f9fa;
        }
        .search-section {
            background-color: #f8f9fa;
            padding: 30px;
            border-radius: 10px;
            margin: 40px 0;
            text-align: center;
        }
        .search-section h2 {
            color: #2d3436;
            margin-bottom: 20px;
        }
        .search-form {
            display: flex;
            max-width: 600px;
            margin: 0 auto;
        }
        .search-form input {
            flex: 1;
            padding: 15px;
            border: 2px solid #6a11cb;
            border-radius: 8px 0 0 8px;
            font-size: 1rem;
        }
        .search-form button {
            background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
            color: white;
            border: none;
            padding: 15px 25px;
            border-radius: 0 8px 8px 0;
            cursor: pointer;
            font-weight: bold;
            transition: background 0.3s ease;
        }
        .search-form button:hover {
            background: linear-gradient(135deg, #2575fc 0%, #6a11cb 100%);
        }
        .interactive-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin: 40px 0;
        }
        @media (max-width: 768px) {
            .interactive-section {
                grid-template-columns: 1fr;
            }
        }
        .comment-form, .rating-form {
            background-color: #f1f8ff;
            padding: 25px;
            border-radius: 10px;
            border: 1px solid #d0e4ff;
        }
        .form-group {
            margin-bottom: 20px;
        }
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #2d3436;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 12px;
            border: 1px solid #ccc;
            border-radius: 5px;
            font-size: 1rem;
        }
        .form-group textarea {
            resize: vertical;
            min-height: 150px;
        }
        .stars {
            display: flex;
            gap: 10px;
            font-size: 1.8rem;
            color: #ffdd40;
            cursor: pointer;
        }
        .stars i:hover {
            transform: scale(1.2);
        }
        .submit-btn {
            background-color: #00b894;
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 5px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: background-color 0.3s ease;
            width: 100%;
        }
        .submit-btn:hover {
            background-color: #00a085;
        }
        .footer-links {
            background-color: #2d3436;
            color: white;
            padding: 40px 0;
            margin-top: 50px;
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 20px;
            margin-bottom: 30px;
        }
        .web-link {
            background-color: #3c4245;
            padding: 15px;
            border-radius: 5px;
            transition: background-color 0.3s ease;
        }
        .web-link:hover {
            background-color: #6a11cb;
        }
        .web-link a {
            display: block;
            text-align: center;
            font-weight: 600;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #444;
            color: #b2bec3;
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            .desktop-nav {
                display: none;
            }
            .mobile-nav-toggle {
                display: block;
            }
            .article-header h1 {
                font-size: 2.2rem;
            }
        }
        @media (max-width: 576px) {
            .container {
                padding: 0 15px;
            }
            .article-header h1 {
                font-size: 1.8rem;
            }
            .content-section h2 {
                font-size: 1.6rem;
            }
            .code-list {
                grid-template-columns: 1fr;
            }
        }
