        * {
            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.6;
            color: #333;
            background-color: #fefefe;
            max-width: 100vw;
            overflow-x: hidden;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .text-center { text-align: center; }
        .bold { font-weight: 700; }
        .highlight { background-color: #fff9c4; padding: 2px 4px; border-radius: 3px; }
        .emoji { font-size: 1.2em; }
        .site-header {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            color: #fff;
            padding: 1rem 0;
            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;
        }
        .logo a {
            color: #FFCC00;
            font-size: 1.8rem;
            font-weight: 800;
            text-decoration: none;
            letter-spacing: 1px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo-icon {
            color: #FFCC00;
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.1); }
            100% { transform: scale(1); }
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .desktop-nav a {
            color: #e6e6e6;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            padding: 0.5rem 0.75rem;
            border-radius: 4px;
            transition: all 0.3s ease;
        }
        .desktop-nav a:hover,
        .desktop-nav a:focus {
            background-color: #FFCC00;
            color: #16213e;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.5rem;
        }
        .mobile-nav {
            display: none;
            background-color: #1a1a2e;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 1rem 0;
            box-shadow: 0 5px 10px rgba(0,0,0,0.2);
        }
        .mobile-nav.active {
            display: block;
        }
        .mobile-nav ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }
        .mobile-nav a {
            display: block;
            color: #e6e6e6;
            text-decoration: none;
            padding: 0.75rem 2rem;
            font-weight: 600;
            transition: background 0.3s;
        }
        .mobile-nav a:hover {
            background-color: #2d2d4d;
        }
        .breadcrumb {
            background-color: #f1f1f1;
            padding: 0.75rem 0;
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        .breadcrumb li:not(:last-child)::after {
            content: "›";
            margin-left: 0.5rem;
            color: #666;
        }
        .breadcrumb a {
            color: #0066cc;
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        main {
            padding: 2rem 0;
            background-color: #fff;
        }
        .article-header {
            margin-bottom: 2.5rem;
            padding-bottom: 1.5rem;
            border-bottom: 2px solid #FFCC00;
        }
        .article-header h1 {
            font-size: 2.8rem;
            color: #1a1a2e;
            line-height: 1.2;
            margin-bottom: 1rem;
        }
        .article-meta {
            display: flex;
            gap: 1.5rem;
            color: #666;
            font-size: 0.95rem;
        }
        .article-meta span {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .content-section {
            margin-bottom: 3rem;
        }
        .content-section h2 {
            font-size: 2rem;
            color: #16213e;
            margin-bottom: 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px dashed #ccc;
        }
        .content-section h3 {
            font-size: 1.6rem;
            color: #1a3a5f;
            margin: 1.8rem 0 1rem 0;
        }
        .content-section p {
            margin-bottom: 1.2rem;
            font-size: 1.1rem;
            line-height: 1.7;
            text-align: justify;
        }
        .content-section ul, .content-section ol {
            margin-bottom: 1.2rem;
            padding-left: 2rem;
        }
        .content-section li {
            margin-bottom: 0.5rem;
            line-height: 1.6;
        }
        .article-image {
            margin: 2.5rem auto;
            max-width: 800px;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .article-image figcaption {
            text-align: center;
            font-style: italic;
            color: #666;
            padding: 0.75rem;
            background-color: #f9f9f9;
            font-size: 0.95rem;
        }
        .search-widget {
            background: linear-gradient(to right, #f8f9fa, #e9ecef);
            padding: 2rem;
            border-radius: 10px;
            margin: 3rem 0;
            text-align: center;
            border: 1px solid #dee2e6;
        }
        .search-widget h3 {
            margin-bottom: 1.2rem;
            color: #343a40;
        }
        .search-form {
            display: flex;
            max-width: 600px;
            margin: 0 auto;
        }
        .search-form input {
            flex: 1;
            padding: 0.85rem 1.2rem;
            border: 2px solid #FFCC00;
            border-radius: 50px 0 0 50px;
            font-size: 1rem;
            outline: none;
        }
        .search-form button {
            background-color: #FFCC00;
            color: #16213e;
            border: 2px solid #FFCC00;
            border-radius: 0 50px 50px 0;
            padding: 0.85rem 1.8rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
            font-size: 1rem;
        }
        .search-form button:hover {
            background-color: #e6b800;
            border-color: #e6b800;
        }
        .interactive-section {
            background-color: #f8f9fa;
            padding: 2.5rem;
            border-radius: 10px;
            margin: 3rem 0;
            border: 1px solid #ddd;
        }
        .interactive-section h2 {
            color: #1a1a2e;
            margin-bottom: 1.8rem;
            text-align: center;
        }
        .rating-widget, .comment-widget {
            margin-bottom: 2.5rem;
        }
        .rating-widget h3, .comment-widget h3 {
            margin-bottom: 1.2rem;
            color: #343a40;
        }
        .stars {
            display: flex;
            gap: 0.5rem;
            margin-bottom: 1rem;
            justify-content: center;
        }
        .star {
            font-size: 2rem;
            color: #ddd;
            cursor: pointer;
            transition: color 0.2s, transform 0.2s;
        }
        .star:hover,
        .star.active {
            color: #FFCC00;
            transform: scale(1.1);
        }
        .rating-form, .comment-form {
            display: grid;
            gap: 1.2rem;
            max-width: 600px;
            margin: 0 auto;
        }
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 0.85rem;
            border: 1px solid #ccc;
            border-radius: 6px;
            font-family: inherit;
            font-size: 1rem;
            transition: border 0.3s;
        }
        .form-group input:focus,
        .form-group textarea:focus {
            border-color: #FFCC00;
            outline: none;
            box-shadow: 0 0 0 3px rgba(255, 204, 0, 0.2);
        }
        .submit-btn {
            background-color: #1a1a2e;
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 6px;
            font-weight: bold;
            cursor: pointer;
            font-size: 1.05rem;
            transition: background 0.3s;
            justify-self: start;
        }
        .submit-btn:hover {
            background-color: #FFCC00;
            color: #16213e;
        }
        .footer-links {
            background-color: #2d2d4d;
            padding: 3rem 0;
            color: #e6e6e6;
        }
        .footer-links .container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 2rem;
        }
        .web-link {
            background-color: #3a3a5d;
            padding: 1.2rem;
            border-radius: 6px;
            transition: transform 0.3s, background 0.3s;
        }
        .web-link:hover {
            transform: translateY(-5px);
            background-color: #4a4a7a;
        }
        .web-link a {
            color: #FFCC00;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.05rem;
            display: block;
        }
        .web-link a:hover {
            text-decoration: underline;
        }
        .site-footer {
            background-color: #1a1a2e;
            color: #aaa;
            padding: 2rem 0;
            text-align: center;
        }
        .copyright {
            font-size: 0.95rem;
            margin-top: 1rem;
        }
        @media (max-width: 992px) {
            .article-header h1 { font-size: 2.4rem; }
            .content-section h2 { font-size: 1.8rem; }
            .content-section h3 { font-size: 1.4rem; }
        }
        @media (max-width: 768px) {
            .desktop-nav { display: none; }
            .mobile-menu-btn { display: block; }
            .header-container { padding: 0 15px; }
            .article-header h1 { font-size: 2rem; }
            .article-meta { flex-direction: column; gap: 0.5rem; }
            .search-form { flex-direction: column; }
            .search-form input { border-radius: 50px; margin-bottom: 10px; }
            .search-form button { border-radius: 50px; }
            .interactive-section { padding: 1.8rem; }
            .footer-links .container { grid-template-columns: 1fr; }
        }
        @media (max-width: 480px) {
            .article-header h1 { font-size: 1.7rem; }
            .content-section h2 { font-size: 1.5rem; }
            .content-section p { font-size: 1rem; }
            .stars .star { font-size: 1.7rem; }
        }
