        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f8f9fa;
            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 15px;
        }
        header {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            color: #fff;
            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 h1 {
            font-size: 1.8rem;
            font-weight: 700;
            background: linear-gradient(90deg, #ff7e5f, #feb47b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            transition: transform 0.3s ease;
        }
        .logo h1:hover {
            transform: scale(1.05);
        }
        .desktop-nav ul {
            display: flex;
            gap: 25px;
        }
        .desktop-nav a {
            font-weight: 500;
            padding: 8px 12px;
            border-radius: 5px;
            transition: all 0.3s ease;
        }
        .desktop-nav a:hover {
            background-color: rgba(255, 255, 255, 0.1);
            color: #ff7e5f;
        }
        .mobile-nav-toggle {
            display: none;
            font-size: 1.5rem;
            background: none;
            border: none;
            color: #fff;
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background-color: #16213e;
            padding: 15px;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav a {
            padding: 12px 15px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            transition: background 0.3s;
        }
        .mobile-nav a:hover {
            background-color: rgba(255, 255, 255, 0.05);
        }
        .breadcrumb {
            background-color: #e9ecef;
            padding: 10px 0;
            font-size: 0.9rem;
        }
        .breadcrumb ul {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '>';
            margin-left: 10px;
            color: #6c757d;
        }
        .breadcrumb a:hover {
            color: #ff7e5f;
            text-decoration: underline;
        }
        main {
            padding: 30px 0;
            background-color: #fff;
        }
        .article-header {
            text-align: center;
            margin-bottom: 40px;
            padding: 20px;
            background: linear-gradient(to right, #f8f9fa, #e9ecef);
            border-radius: 10px;
        }
        .article-header h1 {
            font-size: 2.5rem;
            color: #1a1a2e;
            margin-bottom: 10px;
            line-height: 1.3;
        }
        .article-meta {
            display: flex;
            justify-content: center;
            gap: 20px;
            color: #6c757d;
            font-size: 0.95rem;
        }
        .article-meta i {
            margin-right: 5px;
        }
        .article-content {
            max-width: 900px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .article-section {
            margin-bottom: 40px;
        }
        .article-section h2 {
            font-size: 1.8rem;
            color: #16213e;
            margin-bottom: 15px;
            padding-bottom: 8px;
            border-bottom: 3px solid #ff7e5f;
        }
        .article-section h3 {
            font-size: 1.4rem;
            color: #1a1a2e;
            margin: 25px 0 10px;
        }
        .article-section p {
            margin-bottom: 20px;
            text-align: justify;
            font-size: 1.1rem;
            line-height: 1.8;
        }
        .highlight {
            background-color: #fff9e6;
            border-left: 4px solid #ffc107;
            padding: 15px 20px;
            margin: 20px 0;
            border-radius: 0 5px 5px 0;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .featured-image {
            margin: 30px auto;
            text-align: center;
        }
        .featured-image img {
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: transform 0.5s ease;
        }
        .featured-image img:hover {
            transform: scale(1.02);
        }
        .image-caption {
            font-style: italic;
            color: #6c757d;
            margin-top: 10px;
            font-size: 0.9rem;
        }
        .search-section {
            background-color: #f1f8ff;
            padding: 30px;
            border-radius: 10px;
            margin: 40px 0;
            text-align: center;
        }
        .search-section h3 {
            color: #16213e;
            margin-bottom: 20px;
        }
        .search-form {
            display: flex;
            max-width: 600px;
            margin: 0 auto;
        }
        .search-input {
            flex: 1;
            padding: 15px;
            border: 2px solid #007bff;
            border-radius: 8px 0 0 8px;
            font-size: 1rem;
            outline: none;
        }
        .search-button {
            background-color: #007bff;
            color: white;
            border: none;
            padding: 0 25px;
            border-radius: 0 8px 8px 0;
            cursor: pointer;
            font-size: 1rem;
            transition: background 0.3s;
        }
        .search-button:hover {
            background-color: #0056b3;
        }
        .interactive-sections {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin: 50px 0;
        }
        .comment-section, .rating-section {
            background-color: #f8f9fa;
            padding: 25px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        .comment-section h3, .rating-section h3 {
            color: #1a1a2e;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .form-group {
            margin-bottom: 20px;
        }
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
        }
        .form-control {
            width: 100%;
            padding: 12px;
            border: 1px solid #ced4da;
            border-radius: 5px;
            font-size: 1rem;
            transition: border 0.3s;
        }
        .form-control:focus {
            border-color: #007bff;
            outline: none;
        }
        textarea.form-control {
            min-height: 120px;
            resize: vertical;
        }
        .submit-button {
            background-color: #28a745;
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 5px;
            cursor: pointer;
            font-size: 1rem;
            transition: background 0.3s;
        }
        .submit-button:hover {
            background-color: #218838;
        }
        .stars {
            display: flex;
            gap: 10px;
            margin: 15px 0;
        }
        .star {
            font-size: 1.8rem;
            color: #ddd;
            cursor: pointer;
            transition: color 0.3s;
        }
        .star:hover, .star.active {
            color: #ffc107;
        }
        .internal-links {
            margin: 60px 0 40px;
            padding: 30px;
            background-color: #e9ecef;
            border-radius: 10px;
        }
        .internal-links h3 {
            text-align: center;
            margin-bottom: 25px;
            color: #1a1a2e;
        }
        .links-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 15px;
        }
        .web-link {
            background-color: white;
            padding: 15px;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }
        .web-link:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
            background-color: #f8f9fa;
        }
        .web-link a {
            display: block;
            color: #007bff;
            font-weight: 500;
        }
        .web-link a:hover {
            text-decoration: underline;
            color: #0056b3;
        }
        footer {
            background-color: #1a1a2e;
            color: #fff;
            padding: 40px 0 20px;
        }
        .footer-content {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            width: 100%;
            font-size: 0.9rem;
            color: #aaa;
        }
        @media (max-width: 992px) {
            .article-header h1 {
                font-size: 2rem;
            }
            .interactive-sections {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
            .mobile-nav-toggle {
                display: block;
            }
            .header-content {
                padding: 0 10px;
            }
            .article-header h1 {
                font-size: 1.7rem;
            }
            .article-content {
                padding: 0 10px;
            }
            .search-form {
                flex-direction: column;
            }
            .search-input, .search-button {
                width: 100%;
                border-radius: 8px;
                margin-bottom: 10px;
            }
            .links-grid {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 480px) {
            .article-meta {
                flex-direction: column;
                gap: 10px;
            }
            .article-section h2 {
                font-size: 1.5rem;
            }
            .article-section h3 {
                font-size: 1.2rem;
            }
        }
