        * {
            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: #f9f7f4;
        }
        a {
            color: #2c5aa0;
            text-decoration: none;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .header {
            background: linear-gradient(135deg, #1a3a6c 0%, #2c5aa0 100%);
            color: white;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }
        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2rem;
            font-weight: 800;
            letter-spacing: 1px;
        }
        .logo a {
            color: white;
            text-decoration: none;
        }
        .logo span {
            color: #ffd166;
        }
        .nav-desktop {
            display: flex;
            gap: 2rem;
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
        }
        .nav-desktop a {
            color: white;
            font-weight: 500;
            padding: 0.5rem 0.75rem;
            border-radius: 4px;
            transition: background 0.3s;
        }
        .nav-desktop a:hover {
            background: rgba(255, 255, 255, 0.15);
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background: #1a3a6c;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            padding: 1rem;
            box-shadow: 0 5px 10px rgba(0,0,0,0.2);
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            color: white;
            padding: 0.75rem;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        .nav-mobile a:last-child {
            border-bottom: none;
        }
        .breadcrumb {
            max-width: 1200px;
            margin: 1rem auto;
            padding: 0 20px;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: #666;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        @media (max-width: 992px) {
            .container {
                grid-template-columns: 1fr;
            }
        }
        .article-main {
            background: white;
            padding: 40px;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        h1 {
            font-size: 2.5rem;
            color: #1a3a6c;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2rem;
            }
        }
        .article-meta {
            color: #666;
            font-size: 0.95rem;
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid #eee;
        }
        h2 {
            font-size: 1.8rem;
            color: #2c5aa0;
            margin: 2.5rem 0 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #ffd166;
        }
        h3 {
            font-size: 1.4rem;
            color: #333;
            margin: 2rem 0 1rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .highlight {
            background-color: #fff9e6;
            border-left: 4px solid #ffd166;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .image-container {
            margin: 2.5rem 0;
            text-align: center;
        }
        .image-container img {
            border-radius: 8px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
            margin: 0 auto;
        }
        .image-caption {
            font-style: italic;
            color: #666;
            margin-top: 0.5rem;
            font-size: 0.9rem;
        }
        .stats-box {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin: 2.5rem 0;
        }
        .stat {
            background: #f0f7ff;
            padding: 1.5rem;
            border-radius: 8px;
            text-align: center;
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: bold;
            color: #2c5aa0;
        }
        .stat-label {
            color: #666;
            margin-top: 0.5rem;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .widget {
            background: white;
            padding: 25px;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        .widget h3 {
            color: #1a3a6c;
            margin-top: 0;
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
        }
        .search-form, .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        input, textarea, select {
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 6px;
            font-family: inherit;
            font-size: 1rem;
        }
        button {
            background: linear-gradient(to right, #2c5aa0, #1a3a6c);
            color: white;
            border: none;
            padding: 12px 20px;
            border-radius: 6px;
            font-weight: 600;
            cursor: pointer;
            transition: opacity 0.3s;
        }
        button:hover {
            opacity: 0.9;
        }
        .stars {
            display: flex;
            justify-content: space-between;
            margin-bottom: 15px;
        }
        .stars input {
            display: none;
        }
        .stars label {
            font-size: 2rem;
            color: #ddd;
            cursor: pointer;
            transition: color 0.2s;
        }
        .stars label:hover,
        .stars label:hover ~ label,
        .stars input:checked ~ label {
            color: #ffd166;
        }
        .featured-puzzle {
            text-align: center;
        }
        .featured-puzzle img {
            border-radius: 8px;
            margin-bottom: 1rem;
        }
        .footer-links {
            max-width: 1200px;
            margin: 3rem auto 2rem;
            padding: 0 20px;
        }
        .web-link {
            display: inline-block;
            margin: 0.5rem 1rem 0.5rem 0;
            padding: 0.5rem 1rem;
            background: #eef4ff;
            border-radius: 50px;
            transition: all 0.3s;
        }
        .web-link:hover {
            background: #2c5aa0;
            color: white;
        }
        .web-link:hover a {
            color: white;
        }
        .footer {
            background: #1a3a6c;
            color: white;
            padding: 3rem 20px;
            text-align: center;
            margin-top: 3rem;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .copyright {
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            color: #ccc;
        }
        .text-center {
            text-align: center;
        }
        .bold {
            font-weight: 700;
            color: #1a3a6c;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
