        * { 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.7;
            color: #333;
            background-color: #f8f9fa;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 15px;
        }
        a { color: #0066cc; text-decoration: none; transition: color 0.3s; }
        a:hover { color: #d50032; }
        img { max-width: 100%; height: auto; display: block; }
        .site-header {
            background: linear-gradient(135deg, #003366 0%, #0066cc 100%);
            color: white;
            padding: 1.5rem 0;
            border-bottom: 5px solid #d50032;
            margin-bottom: 2rem;
        }
        .logo-container {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
            margin-bottom: 1rem;
        }
        .logo-icon { font-size: 2.8rem; color: #ffcc00; }
        .logo-text {
            font-size: 2.8rem;
            font-weight: 900;
            letter-spacing: 2px;
            text-transform: uppercase;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
        .logo-text a { color: white; }
        .logo-tagline {
            text-align: center;
            font-style: italic;
            opacity: 0.9;
            font-size: 1.1rem;
        }
        .main-nav {
            background-color: #1a1a1a;
            border-radius: 8px;
            margin-top: 1rem;
            position: relative;
        }
        .nav-list {
            list-style: none;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            padding: 0;
        }
        .nav-list li { flex: 1; text-align: center; min-width: 120px; }
        .nav-list a {
            display: block;
            padding: 1.2rem 1rem;
            color: #eee;
            font-weight: 600;
            border-right: 1px solid #333;
        }
        .nav-list li:last-child a { border-right: none; }
        .nav-list a:hover {
            background-color: #d50032;
            color: white;
        }
        .nav-list a i { margin-right: 8px; }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 1rem;
            position: absolute;
            right: 10px;
            top: 0;
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.9rem;
            color: #666;
        }
        .breadcrumb a { color: #666; }
        .breadcrumb a:hover { color: #d50032; }
        .breadcrumb .separator { margin: 0 8px; color: #aaa; }
        .content-container {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            margin-bottom: 3rem;
        }
        .main-article {
            background: white;
            border-radius: 12px;
            padding: 2.5rem;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
        }
        article h1 {
            font-size: 2.8rem;
            color: #003366;
            margin-bottom: 1.5rem;
            border-bottom: 3px solid #ffcc00;
            padding-bottom: 0.8rem;
        }
        article h2 {
            font-size: 2rem;
            color: #0066cc;
            margin: 2.5rem 0 1.2rem;
            padding-left: 10px;
            border-left: 5px solid #d50032;
        }
        article h3 {
            font-size: 1.6rem;
            color: #1a1a1a;
            margin: 2rem 0 1rem;
        }
        article p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .article-meta {
            display: flex;
            gap: 20px;
            color: #666;
            font-size: 0.95rem;
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid #eee;
        }
        .highlight {
            background-color: #fff9e6;
            border-left: 4px solid #ffcc00;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .stats-box {
            background: #f0f8ff;
            border: 2px dashed #0066cc;
            border-radius: 10px;
            padding: 1.5rem;
            margin: 2rem 0;
        }
        .featured-image {
            width: 100%;
            margin: 2.5rem auto;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: #666;
            padding: 0.8rem;
            background: #f9f9f9;
        }
        .emoji { font-size: 1.2em; margin-right: 5px; }
        .keyword { font-weight: 700; color: #d50032; }
        .quote {
            font-size: 1.3rem;
            font-style: italic;
            color: #555;
            text-align: center;
            padding: 2rem;
            border-top: 2px solid #ffcc00;
            border-bottom: 2px solid #ffcc00;
            margin: 3rem 0;
            background: #fefefe;
        }
        .sidebar {
            background: white;
            border-radius: 12px;
            padding: 2rem;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            align-self: start;
        }
        .sidebar-widget {
            margin-bottom: 2.5rem;
        }
        .sidebar h3 {
            color: #003366;
            border-bottom: 2px solid #ffcc00;
            padding-bottom: 0.7rem;
            margin-bottom: 1.5rem;
            font-size: 1.5rem;
        }
        .search-box form {
            display: flex;
        }
        .search-box input {
            flex: 1;
            padding: 0.9rem;
            border: 2px solid #ccc;
            border-radius: 6px 0 0 6px;
            font-size: 1rem;
        }
        .search-box button {
            background: #d50032;
            color: white;
            border: none;
            padding: 0 1.5rem;
            border-radius: 0 6px 6px 0;
            cursor: pointer;
            font-size: 1.2rem;
            transition: background 0.3s;
        }
        .search-box button:hover { background: #b00028; }
        .rating-widget .stars {
            font-size: 1.8rem;
            color: #ffcc00;
            margin-bottom: 1rem;
        }
        .rating-widget .stars i { cursor: pointer; margin-right: 5px; }
        .rating-widget .stars i:hover { transform: scale(1.2); }
        .rating-form input, .rating-form textarea, .comment-form input, .comment-form textarea {
            width: 100%;
            padding: 0.8rem;
            margin-bottom: 1rem;
            border: 1px solid #ddd;
            border-radius: 6px;
            font-family: inherit;
        }
        .rating-form button, .comment-form button {
            background: #0066cc;
            color: white;
            border: none;
            padding: 0.9rem 1.8rem;
            border-radius: 6px;
            cursor: pointer;
            font-weight: 600;
            transition: background 0.3s;
        }
        .rating-form button:hover, .comment-form button:hover { background: #0052a3; }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.5rem;
            background: #1a1a1a;
            padding: 2.5rem;
            border-radius: 12px 12px 0 0;
            margin-top: 4rem;
        }
        .web-link {
            background: #2a2a2a;
            padding: 1.2rem;
            border-radius: 8px;
            transition: transform 0.3s, background 0.3s;
        }
        .web-link:hover {
            background: #333;
            transform: translateY(-5px);
        }
        .web-link a {
            color: #ffcc00;
            font-weight: 600;
            display: block;
        }
        .web-link a:hover { color: white; }
        .site-footer {
            background: #003366;
            color: #ccc;
            text-align: center;
            padding: 2.5rem 1rem;
            border-radius: 0 0 12px 12px;
            margin-bottom: 2rem;
        }
        .copyright {
            margin-top: 1.5rem;
            font-size: 0.9rem;
            color: #aaa;
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 1.5rem;
        }
        @media (max-width: 992px) {
            .content-container { grid-template-columns: 1fr; }
            .sidebar { order: -1; }
            .nav-list { flex-direction: column; display: none; }
            .nav-list.active { display: flex; }
            .nav-list li { min-width: auto; }
            .nav-list a { border-right: none; border-bottom: 1px solid #333; }
            .hamburger { display: block; }
            article h1 { font-size: 2.3rem; }
        }
        @media (max-width: 768px) {
            .logo-text { font-size: 2.2rem; }
            .footer-links { grid-template-columns: 1fr; }
            .main-article, .sidebar { padding: 1.8rem; }
        }
