        * {
            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: #f5f1e8;
            background-image: linear-gradient(to bottom, #f5f1e8 0%, #e8e1d1 100%);
        }
        a {
            color: #8b0000;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #5a0000;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background-color: #1a0f0a;
            color: #e8d8b6;
            padding: 1rem 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.5);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2rem;
            font-weight: 800;
            font-family: 'Times New Roman', serif;
            color: #c72e2e;
            text-transform: uppercase;
            letter-spacing: 1px;
            text-shadow: 2px 2px 4px #000;
        }
        .logo span {
            color: #e8d8b6;
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .desktop-nav a {
            color: #e8d8b6;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 0.5rem 1rem;
            border-radius: 4px;
        }
        .desktop-nav a:hover {
            background-color: #8b0000;
            color: #fff;
        }
        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            color: #e8d8b6;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            background-color: #2c1a0f;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 1rem;
            box-shadow: 0 4px 8px rgba(0,0,0,0.3);
        }
        .mobile-nav.active {
            display: block;
        }
        .mobile-nav ul {
            list-style: none;
        }
        .mobile-nav li {
            margin-bottom: 1rem;
        }
        .mobile-nav a {
            color: #e8d8b6;
            font-size: 1.2rem;
            display: block;
            padding: 0.5rem;
        }
        .breadcrumb {
            background-color: #2c1a0f;
            padding: 0.8rem 0;
            color: #b8a88a;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: #e8d8b6;
        }
        .breadcrumb span {
            margin: 0 5px;
        }
        .main-content {
            padding: 2rem 0;
            background-color: #fff;
            box-shadow: 0 0 20px rgba(0,0,0,0.05);
        }
        .article-header {
            margin-bottom: 2.5rem;
            border-bottom: 3px double #8b0000;
            padding-bottom: 1.5rem;
        }
        .article-header h1 {
            font-size: 2.8rem;
            color: #1a0f0a;
            margin-bottom: 1rem;
            line-height: 1.2;
        }
        .meta-info {
            display: flex;
            gap: 1.5rem;
            color: #666;
            font-size: 0.95rem;
        }
        .meta-info i {
            margin-right: 5px;
        }
        article {
            font-size: 1.1rem;
        }
        article h2 {
            font-size: 2rem;
            color: #8b0000;
            margin: 2.5rem 0 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid #ddd;
        }
        article h3 {
            font-size: 1.6rem;
            color: #5a0000;
            margin: 2rem 0 1rem;
        }
        article p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        article strong {
            color: #5a0000;
            font-weight: 700;
        }
        article em {
            font-style: italic;
            color: #444;
        }
        .featured-image {
            margin: 2rem auto;
            max-width: 800px;
            border: 8px solid #1a0f0a;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 8px 16px rgba(0,0,0,0.2);
        }
        .cheat-table {
            width: 100%;
            border-collapse: collapse;
            margin: 2rem 0;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        .cheat-table th, .cheat-table td {
            border: 1px solid #b8a88a;
            padding: 12px 15px;
            text-align: left;
        }
        .cheat-table th {
            background-color: #8b0000;
            color: #fff;
            font-weight: 700;
        }
        .cheat-table tr:nth-child(even) {
            background-color: #f9f5eb;
        }
        .cheat-table tr:hover {
            background-color: #f0e6d2;
        }
        .note-box {
            background-color: #f0e6d2;
            border-left: 5px solid #8b0000;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .note-box h4 {
            color: #5a0000;
            margin-bottom: 0.5rem;
        }
        .interactive-section {
            background-color: #f9f5eb;
            padding: 2rem;
            border-radius: 12px;
            margin: 3rem 0;
            border: 2px solid #d4b483;
        }
        .search-box, .comment-form, .rating-form {
            margin-bottom: 2.5rem;
        }
        .section-title {
            font-size: 1.8rem;
            color: #1a0f0a;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .section-title i {
            color: #8b0000;
        }
        .search-box form {
            display: flex;
            max-width: 600px;
        }
        .search-box input {
            flex-grow: 1;
            padding: 15px;
            border: 2px solid #b8a88a;
            border-radius: 8px 0 0 8px;
            font-size: 1rem;
        }
        .search-box button {
            background-color: #8b0000;
            color: white;
            border: none;
            padding: 0 25px;
            border-radius: 0 8px 8px 0;
            cursor: pointer;
            font-size: 1.1rem;
            transition: background-color 0.3s;
        }
        .search-box button:hover {
            background-color: #5a0000;
        }
        .rating-stars {
            display: flex;
            gap: 10px;
            margin-bottom: 1rem;
        }
        .rating-stars .star {
            font-size: 2rem;
            color: #ccc;
            cursor: pointer;
            transition: color 0.2s;
        }
        .rating-stars .star.active,
        .rating-stars .star:hover {
            color: #ffc107;
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: #444;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            max-width: 500px;
            padding: 12px;
            border: 2px solid #b8a88a;
            border-radius: 8px;
            font-size: 1rem;
            font-family: inherit;
        }
        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }
        .submit-btn {
            background-color: #8b0000;
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 8px;
            cursor: pointer;
            font-size: 1.1rem;
            font-weight: 600;
            transition: background-color 0.3s;
        }
        .submit-btn:hover {
            background-color: #5a0000;
        }
        .footer-links {
            background-color: #2c1a0f;
            padding: 3rem 0;
        }
        .footer-links h3 {
            color: #e8d8b6;
            margin-bottom: 1.5rem;
            font-size: 1.5rem;
        }
        .web-links-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.5rem;
        }
        .web-link {
            background-color: #3d2819;
            padding: 1.2rem;
            border-radius: 8px;
            transition: transform 0.3s, background-color 0.3s;
        }
        .web-link:hover {
            background-color: #4d321f;
            transform: translateY(-5px);
        }
        .web-link a {
            color: #d4b483;
            font-weight: 600;
            display: block;
        }
        .web-link a:hover {
            color: #ffd700;
        }
        .site-footer {
            background-color: #1a0f0a;
            color: #b8a88a;
            text-align: center;
            padding: 2rem 0;
            font-size: 0.9rem;
        }
        .site-footer p {
            margin-bottom: 0.5rem;
        }
        .footer-nav a {
            color: #d4b483;
            margin: 0 10px;
        }
        @media (max-width: 992px) {
            .header-container {
                flex-wrap: wrap;
            }
            .desktop-nav {
                display: none;
            }
            .mobile-menu-toggle {
                display: block;
            }
            .article-header h1 {
                font-size: 2.2rem;
            }
            article h2 {
                font-size: 1.8rem;
            }
        }
        @media (max-width: 768px) {
            .container {
                padding: 0 15px;
            }
            .article-header h1 {
                font-size: 1.9rem;
            }
            .meta-info {
                flex-direction: column;
                gap: 0.5rem;
            }
            .cheat-table {
                display: block;
                overflow-x: auto;
            }
            .interactive-section {
                padding: 1.5rem;
            }
            .search-box form {
                flex-direction: column;
            }
            .search-box input,
            .search-box button {
                width: 100%;
                border-radius: 8px;
                margin-bottom: 10px;
            }
            .web-links-grid {
                grid-template-columns: 1fr;
            }
        }
