        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #1a0f0a;
            color: #e6d5b8;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: #d4a017;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #ffd700;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(to bottom, #2c1810, #1a0f0a);
            padding: 20px 0;
            border-bottom: 3px solid #8b4513;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: bold;
            color: #d4a017;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 2px 2px 4px #000;
        }
        .logo a {
            color: inherit;
        }
        .logo a:hover {
            text-decoration: none;
            color: #ffd700;
        }
        .nav-desktop {
            display: flex;
            gap: 25px;
        }
        .nav-desktop a {
            font-size: 1.1rem;
            font-weight: 600;
            padding: 8px 15px;
            border-radius: 5px;
        }
        .nav-desktop a:hover {
            background-color: #8b4513;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #d4a017;
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            width: 100%;
            background-color: #2c1810;
            margin-top: 15px;
            border-radius: 8px;
            overflow: hidden;
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            padding: 15px;
            border-bottom: 1px solid #4a2c1a;
            text-align: center;
        }
        .nav-mobile a:hover {
            background-color: #8b4513;
        }
        .breadcrumb {
            margin-top: 15px;
            font-size: 0.9rem;
            color: #b89a7a;
        }
        .breadcrumb a {
            color: #d4a017;
        }
        .breadcrumb span {
            margin: 0 5px;
        }
        main {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 30px;
            padding: 30px 0;
        }
        @media (max-width: 768px) {
            main {
                grid-template-columns: 1fr;
            }
        }
        article {
            background-color: #261a14;
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
        }
        aside {
            background-color: #261a14;
            padding: 25px;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
            align-self: start;
        }
        h1, h2, h3 {
            color: #d4a017;
            margin-bottom: 20px;
            line-height: 1.3;
        }
        h1 {
            font-size: 2.8rem;
            border-bottom: 3px solid #8b4513;
            padding-bottom: 15px;
        }
        h2 {
            font-size: 2.2rem;
            margin-top: 40px;
        }
        h3 {
            font-size: 1.8rem;
            margin-top: 30px;
        }
        p {
            margin-bottom: 25px;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            background-color: #3a271a;
            border-left: 5px solid #d4a017;
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }
        .cheat-table {
            width: 100%;
            border-collapse: collapse;
            margin: 30px 0;
            background-color: #2c1810;
        }
        .cheat-table th, .cheat-table td {
            border: 1px solid #8b4513;
            padding: 15px;
            text-align: left;
        }
        .cheat-table th {
            background-color: #8b4513;
            color: #fff;
        }
        .cheat-table tr:nth-child(even) {
            background-color: #3a271a;
        }
        .cheat-table tr:hover {
            background-color: #4a2c1a;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 8px;
        }
        .bold {
            font-weight: bold;
            color: #ffd700;
        }
        .image-container {
            margin: 40px auto;
            text-align: center;
            max-width: 800px;
        }
        .image-container img {
            border-radius: 10px;
            border: 3px solid #8b4513;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.7);
        }
        .image-caption {
            margin-top: 10px;
            font-style: italic;
            color: #b89a7a;
        }
        .widget {
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 1px solid #8b4513;
        }
        .widget:last-child {
            border-bottom: none;
        }
        .widget h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: #ffd700;
        }
        .search-form, .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .search-form input, .comment-form textarea, .comment-form input, .rating-form select {
            padding: 12px;
            border: 1px solid #8b4513;
            border-radius: 6px;
            background-color: #1a0f0a;
            color: #e6d5b8;
            font-size: 1rem;
        }
        .search-form button, .comment-form button, .rating-form button {
            padding: 12px;
            background-color: #8b4513;
            color: #fff;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            font-weight: bold;
            transition: background-color 0.3s ease;
        }
        .search-form button:hover, .comment-form button:hover, .rating-form button:hover {
            background-color: #a0522d;
        }
        .stars {
            display: flex;
            gap: 10px;
            justify-content: center;
            margin: 10px 0;
        }
        .star {
            font-size: 1.8rem;
            color: #555;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star.active, .star:hover {
            color: #ffd700;
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 20px;
            margin: 40px 0;
            padding: 30px;
            background-color: #2c1810;
            border-radius: 10px;
        }
        .web-link {
            padding: 15px;
            background-color: #3a271a;
            border-radius: 8px;
            text-align: center;
            transition: transform 0.3s ease, background-color 0.3s ease;
        }
        .web-link:hover {
            transform: translateY(-5px);
            background-color: #8b4513;
        }
        footer {
            background-color: #1a0f0a;
            padding: 30px 0;
            text-align: center;
            border-top: 3px solid #8b4513;
            font-size: 0.95rem;
            color: #b89a7a;
        }
        .footer-links {
            margin-bottom: 20px;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
        }
        .footer-links a {
            color: #d4a017;
        }
        @media (max-width: 992px) {
            h1 { font-size: 2.4rem; }
            h2 { font-size: 2rem; }
            h3 { font-size: 1.6rem; }
            .nav-desktop { display: none; }
            .hamburger { display: block; }
        }
        @media (max-width: 576px) {
            .container { padding: 0 15px; }
            article, aside { padding: 20px; }
            h1 { font-size: 2rem; }
            .web-links { grid-template-columns: 1fr; }
        }
        .btn {
            display: inline-block;
            padding: 12px 25px;
            background-color: #8b4513;
            color: white;
            border-radius: 6px;
            font-weight: bold;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .btn:hover {
            background-color: #a0522d;
            transform: scale(1.05);
        }
        .fade-in {
            animation: fadeIn 1s ease-in;
        }
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
