        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #f8f9fa;
            color: #333;
            line-height: 1.6;
            max-width: 100vw;
            overflow-x: hidden;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, #2c3e50, #4a6491);
            color: white;
            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 {
            font-size: 2.2rem;
            font-weight: 800;
            color: #ffd166;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            display: flex;
            align-items: center;
        }
        .logo i {
            margin-right: 10px;
            color: #06d6a0;
        }
        .logo-text {
            background: linear-gradient(90deg, #ffd166, #ff9e6d);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .desktop-nav a {
            color: #fff;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 8px 12px;
            border-radius: 5px;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .desktop-nav a:hover {
            background-color: rgba(255, 255, 255, 0.15);
            transform: translateY(-2px);
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background-color: #2c3e50;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 1rem;
            box-shadow: 0 5px 10px rgba(0,0,0,0.2);
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav a {
            color: white;
            text-decoration: none;
            padding: 12px 20px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .mobile-nav a:hover {
            background-color: rgba(255,255,255,0.05);
        }
        .breadcrumb {
            padding: 15px 0;
            background-color: #e9ecef;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: #4a6491;
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb span {
            color: #6c757d;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 30px;
            padding: 30px 0;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        .article-container {
            background: white;
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .article-header {
            margin-bottom: 30px;
            border-bottom: 2px solid #06d6a0;
            padding-bottom: 20px;
        }
        .article-title {
            font-size: 2.8rem;
            color: #2c3e50;
            margin-bottom: 15px;
            line-height: 1.2;
        }
        .article-meta {
            display: flex;
            gap: 20px;
            color: #6c757d;
            font-size: 0.95rem;
        }
        .article-meta i {
            margin-right: 5px;
            color: #4a6491;
        }
        .article-body {
            font-size: 1.1rem;
        }
        .article-body p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .article-body h2 {
            color: #2c3e50;
            margin: 2.5rem 0 1.5rem;
            padding-bottom: 10px;
            border-bottom: 1px dashed #ccc;
            font-size: 1.8rem;
        }
        .article-body h3 {
            color: #4a6491;
            margin: 2rem 0 1rem;
            font-size: 1.5rem;
        }
        .article-body blockquote {
            border-left: 4px solid #06d6a0;
            padding-left: 20px;
            margin: 2rem 0;
            font-style: italic;
            color: #555;
            background-color: #f8f9fa;
            padding: 20px;
            border-radius: 0 8px 8px 0;
        }
        .highlight {
            background-color: #fffacd;
            padding: 15px;
            border-radius: 8px;
            border-left: 4px solid #ffd166;
            margin: 1.5rem 0;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .feature-image {
            width: 100%;
            border-radius: 10px;
            margin: 25px 0;
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
            transition: transform 0.5s ease;
        }
        .feature-image:hover {
            transform: scale(1.01);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }
        .sidebar-widget {
            background: white;
            border-radius: 12px;
            padding: 25px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .widget-title {
            color: #2c3e50;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #ffd166;
            font-size: 1.5rem;
        }
        .search-form {
            display: flex;
            margin-top: 10px;
        }
        .search-input {
            flex: 1;
            padding: 12px 15px;
            border: 2px solid #06d6a0;
            border-radius: 8px 0 0 8px;
            font-size: 1rem;
            outline: none;
        }
        .search-btn {
            background: #06d6a0;
            color: white;
            border: none;
            padding: 0 20px;
            border-radius: 0 8px 8px 0;
            cursor: pointer;
            font-size: 1.1rem;
            transition: background 0.3s;
        }
        .search-btn:hover {
            background: #05b587;
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            font-size: 2rem;
            color: #ffd166;
            margin: 15px 0;
            cursor: pointer;
        }
        .stars i {
            transition: all 0.2s;
        }
        .stars i:hover {
            transform: scale(1.2);
        }
        .rating-form textarea,
        .comment-form textarea {
            width: 100%;
            padding: 15px;
            border: 1px solid #ddd;
            border-radius: 8px;
            margin-top: 15px;
            resize: vertical;
            min-height: 120px;
            font-size: 1rem;
        }
        .submit-btn {
            background: #4a6491;
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 8px;
            cursor: pointer;
            font-weight: 600;
            margin-top: 15px;
            width: 100%;
            transition: background 0.3s;
        }
        .submit-btn:hover {
            background: #2c3e50;
        }
        .footer-links {
            background: #2c3e50;
            padding: 40px 0;
            margin-top: 40px;
        }
        .web-links-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 15px;
        }
        .web-link {
            background: rgba(255,255,255,0.05);
            padding: 12px 20px;
            border-radius: 6px;
            transition: all 0.3s;
        }
        .web-link:hover {
            background: rgba(255,255,255,0.1);
            transform: translateX(5px);
        }
        .web-link a {
            color: #ffd166;
            text-decoration: none;
            font-size: 1rem;
        }
        .web-link a:hover {
            text-decoration: underline;
        }
        .site-footer {
            background: #1a252f;
            color: #adb5bd;
            text-align: center;
            padding: 25px 0;
            font-size: 0.95rem;
        }
        .footer-links a {
            color: #06d6a0;
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
            .mobile-menu-btn {
                display: block;
            }
            .article-title {
                font-size: 2rem;
            }
            .article-meta {
                flex-direction: column;
                gap: 10px;
            }
            .main-content {
                padding: 20px 0;
            }
            .article-container {
                padding: 20px;
            }
        }
