* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        body {
            line-height: 1.8;
            color: #2c2c2c;
            background-color: #f5f1e8;
            padding-bottom: 50px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: #8b4513;
            padding: 15px 0;
            color: #fff;
            border-bottom: 3px solid #d4af37;
        }
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2rem;
            font-weight: bold;
            color: #ffd700;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
            letter-spacing: 1px;
        }
        .nav-links {
            display: flex;
            gap: 25px;
        }
        .nav-links a {
            color: #fff;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s;
            padding: 5px 0;
            border-bottom: 2px solid transparent;
        }
        .nav-links a:hover {
            color: #ffd700;
            border-bottom: 2px solid #ffd700;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.8rem;
            cursor: pointer;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 80px;
                left: 0;
                right: 0;
                background-color: #8b4513;
                padding: 20px;
                gap: 15px;
                z-index: 100;
                border-bottom: 3px solid #d4af37;
            }
            .nav-links.active {
                display: flex;
            }
            .mobile-menu-btn {
                display: block;
            }
        }
        h1 {
            color: #8b4513;
            margin: 35px 0;
            font-size: 2.4rem;
            text-align: center;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
        }
        h2 {
            color: #8b4513;
            margin: 40px 0 20px;
            font-size: 1.9rem;
            border-bottom: 2px solid #d4af37;
            padding-bottom: 10px;
        }
        h3 {
            color: #5d3a1a;
            margin: 30px 0 15px;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        h3::before {
            content: "🏰";
        }
        p {
            margin-bottom: 20px;
            font-size: 1.08rem;
        }
        .highlight {
            font-weight: bold;
            color: #8b4513;
            text-decoration: underline;
            text-decoration-color: #d4af37;
            text-decoration-thickness: 2px;
            text-underline-offset: 4px;
        }
        .btn {
            display: inline-block;
            padding: 12px 25px;
            background-color: #8b4513;
            color: #fff;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            margin: 10px 10px 10px 0;
            transition: all 0.3s;
            border: 2px solid #8b4513;
        }
        .btn:hover {
            background-color: #fff;
            color: #8b4513;
            border: 2px solid #8b4513;
        }
        .image-container {
            margin: 30px 0;
            text-align: center;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 6px 12px rgba(0,0,0,0.15);
            border: 3px solid #d4af37;
        }
        .stats-box {
            background-color: #fff;
            border-radius: 8px;
            padding: 25px;
            margin: 25px 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
            border-left: 5px solid #d4af37;
        }
        .review {
            background-color: #fdf6e3;
            border-left: 4px solid #d4af37;
            padding: 20px;
            margin: 20px 0;
            border-radius: 0 8px 8px 0;
        }
        .tag {
            display: inline-block;
            background-color: #8b4513;
            color: #fff;
            padding: 6px 14px;
            border-radius: 20px;
            margin: 6px;
            text-decoration: none;
            font-size: 0.95rem;
            transition: all 0.3s;
        }
        .tag:hover {
            background-color: #d4af37;
            color: #2c2c2c;
        }
        .game-type {
            display: inline-block;
            margin: 12px 12px 12px 0;
        }
        .game-type a {
            color: #8b4513;
            text-decoration: none;
            font-weight: 600;
            border-bottom: 1px dotted #8b4513;
        }
        .game-type a:hover {
            border-bottom: 1px solid #8b4513;
        }
        footer {
            background-color: #2c2c2c;
            color: #fff;
            padding: 40px 0 20px;
            margin-top: 60px;
        }
        .footer-content {
            margin-bottom: 30px;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #444;
            font-size: 0.95rem;
            color: #ccc;
        }
        .quote {
            font-style: italic;
            color: #5d3a1a;
            border-left: 3px solid #d4af37;
            padding-left: 15px;
            margin: 25px 0;
        }
